The Cicada Vaccine Forecasting Engine and Guide
0.1.0 - ci-build

The Cicada Vaccine Forecasting Engine and Guide - Local Development build (v0.1.0) built by the FHIR (HL7® FHIR® Standard) Build Tools. See the Directory of published versions

: MapVaccineCodes - XML Representation

Draft as of 2026-02-11

Raw xml | Download


<StructureMap xmlns="http://hl7.org/fhir">
  <id value="MapVaccineCodes"/>
  <text>
    <status value="generated"/>
    <div xmlns="http://www.w3.org/1999/xhtml"><pre>/// url = &quot;http://fhirfli.dev/fhir/ig/cicada/StructureMap/map-vaccine-codes&quot;
/// name = &quot;MapVaccineCodes&quot;
/// title = &quot;null&quot;
/// status = &quot;draft&quot;

// Define the usage of FHIR resource types with specific aliases

uses &quot;http://hl7.org/fhir/StructureDefinition/Observation&quot; alias sourceObservation as source
uses &quot;http://hl7.org/fhir/StructureDefinition/Condition&quot; alias sourceCondition as source
uses &quot;http://hl7.org/fhir/StructureDefinition/Procedure&quot; alias sourceProcedure as source
uses &quot;http://hl7.org/fhir/StructureDefinition/Immunization&quot; alias sourceImmunization as source
uses &quot;http://hl7.org/fhir/StructureDefinition/Medication&quot; alias sourceMedication as source
uses &quot;http://hl7.org/fhir/StructureDefinition/MedicationStatement&quot; alias sourceMedicationStatement as source
uses &quot;http://hl7.org/fhir/StructureDefinition/MedicationRequest&quot; alias sourceMedicationRequest as source
uses &quot;http://hl7.org/fhir/StructureDefinition/MedicationAdministration&quot; alias sourceMedicationAdministration as source
uses &quot;http://hl7.org/fhir/StructureDefinition/MedicationDispense&quot; alias sourceMedicationDispense as source
uses &quot;http://hl7.org/fhir/StructureDefinition/Condition&quot; alias targetCondition as target

group MapToVaccineConditionObservation(source src : any, target tgt : targetCondition) {
  src as sourceObservation where (src is Observation) -&gt; tgt then MapFromObservation(src, tgt) &quot;SourceObservationToTarget&quot;;
  src as sourceCondition where (src is Condition) -&gt; tgt then MapFromCondition(src, tgt) &quot;SourceConditionToTarget&quot;;
  src as sourceProcedure where (src is Procedure) -&gt; tgt then MapFromProcedure(src, tgt) &quot;SourceProcedureToTarget&quot;;
  src as sourceImmunization where (src is Immunization) -&gt; tgt then MapFromImmunization(src, tgt) &quot;SourceImmunizationToTarget&quot;;
  src as sourceMedication where (src is Medication) -&gt; tgt then MapFromMedication(src, tgt) &quot;SourceMedicationToTarget&quot;;
  src as sourceMedicationStatement where (src is MedicationStatement) -&gt; tgt then MapFromMedicationStatement(src, tgt) &quot;SourceMedStatementToTarget&quot;;
  src as sourceMedicationRequest where (src is MedicationRequest) -&gt; tgt then MapFromMedicationRequest(src, tgt) &quot;SourceMedRequestToTarget&quot;;
  src as sourceMedicationAdministration where (src is MedicationAdministration) -&gt; tgt then MapFromMedicationAdministration(src, tgt) &quot;SourceMedAdminToTarget&quot;;
  src as sourceMedicationDispense where (src is MedicationDispense) -&gt; tgt then MapFromMedicationDispense(src, tgt) &quot;SourceMedDispenseToTarget&quot;;
}

group MapFromObservation(source src : sourceObservation, target tgt : targetCondition) {
  src -&gt; tgt.status = 'active' &quot;SetObservationStatus&quot;;
  src.code as code -&gt; code.coding as coding then ApplyCommonMappings(coding, tgt) &quot;ApplyObsMappings&quot;;
  src -&gt; tgt.onsetDateTime = src.effectiveDateTime &quot;SetObsOnsetDateTime&quot;;
  src -&gt; tgt.onsetPeriod = src.effectivePeriod &quot;SetObsOnsetPeriod&quot;;
  src -&gt; tgt.onsetDateTime = src.effectiveInstant &quot;SetObsOnsetInstant&quot;;
}

group MapFromCondition(source src : sourceCondition, target tgt : targetCondition) {
  src -&gt; tgt.status = 'active' &quot;SetConditionStatus&quot;;
  src.code as code -&gt; code.coding as coding then ApplyCommonMappings(coding, tgt) &quot;ApplyCondMappings&quot;;
  src -&gt; tgt.onsetDateTime = src.onsetDateTime &quot;SetCondOnsetDateTime&quot;;
  src -&gt; tgt.onsetAge = src.onsetAge &quot;SetCondOnsetAge&quot;;
  src -&gt; tgt.onsetPeriod = src.onsetPeriod &quot;SetCondOnsetPeriod&quot;;
  src -&gt; tgt.onsetRange = src.onsetRange &quot;SetCondOnsetRange&quot;;
  src -&gt; tgt.onsetString = src.onsetString &quot;SetCondOnsetString&quot;;
  src -&gt; tgt.abatementDateTime = src.abatementDateTime &quot;SetCondAbatementDateTime&quot;;
  src -&gt; tgt.abatementAge = src.abatementAge &quot;SetCondAbatementAge&quot;;
  src -&gt; tgt.abatementPeriod = src.abatementPeriod &quot;SetCondAbatementPeriod&quot;;
  src -&gt; tgt.abatementRange = src.abatementRange &quot;SetCondAbatementRange&quot;;
  src -&gt; tgt.abatementString = src.abatementString &quot;SetCondAbatementString&quot;;
}

group MapFromProcedure(source src : sourceProcedure, target tgt : targetCondition) {
  src -&gt; tgt.status = 'active' &quot;SetProcedureStatus&quot;;
  src.code as code -&gt; code.coding as coding then ApplyCommonMappings(coding, tgt) &quot;ApplyProcedureMappings&quot;;
  src -&gt; tgt.onsetDateTime = src.performedDateTime &quot;SetProcedureOnsetDateTime&quot;;
  src -&gt; tgt.onsetAge = src.performedAge &quot;SetProcedureOnsetAge&quot;;
  src -&gt; tgt.onsetPeriod = src.performedPeriod &quot;SetProcedureOnsetPeriod&quot;;
  src -&gt; tgt.onsetRange = src.performedRange &quot;SetProcedureOnsetRange&quot;;
  src -&gt; tgt.onsetString = src.performedString &quot;SetProcedureOnsetString&quot;;
}

group MapFromImmunization(source src : sourceImmunization, target tgt : targetCondition) {
  src -&gt; tgt.status = 'active' &quot;SetImmunizationStatus&quot;;
  src.vaccineCode as code -&gt; code.coding as coding then ApplyCommonMappings(coding, tgt) &quot;ApplyImmunizationMappings&quot;;
  src -&gt; tgt.onsetDateTime = src.occurrenceDateTime &quot;SetImmunizationOnsetDateTime&quot;;
  src -&gt; tgt.onsetString = src.occurrenceString &quot;SetImmunizationOnsetString&quot;;
}

group MapFromMedication(source src : sourceMedication, target tgt : targetCondition) {
  src -&gt; tgt.status = 'active' &quot;SetMedicationStatus&quot;;
  src.code as code -&gt; code.coding as coding then ApplyCommonMappings(coding, tgt) &quot;ApplyMedicationMappings&quot;;
}

// TODO(Dokotela): what about medicationReference?
group MapFromMedicationStatement(source src : sourceMedicationStatement, target tgt : targetCondition) {
  src -&gt; tgt.status = 'active' &quot;SetMedStatementStatus&quot;;
  src.medicationCodeableConcept as code -&gt; code.coding as coding then ApplyCommonMappings(coding, tgt) &quot;ApplyMedStatementMappings&quot;;
}

group MapFromMedicationRequest(source src : sourceMedicationRequest, target tgt : targetCondition) {
  src -&gt; tgt.status = 'active' &quot;SetMedRequestStatus&quot;;
  src.medicationCodeableConcept as code -&gt; code.coding as coding then ApplyCommonMappings(coding, tgt) &quot;ApplyMedRequestMappings&quot;;
  src -&gt; tgt.onsetDateTime = src.authoredOn &quot;SetMedRequestOnsetDateTime&quot;;
}

group MapFromMedicationAdministration(source src : sourceMedicationAdministration, target tgt : targetCondition) {
  src -&gt; tgt.status = 'active' &quot;SetMedAdminStatus&quot;;
  src.medicationCodeableConcept as code -&gt; code.coding as coding then ApplyCommonMappings(coding, tgt) &quot;ApplyMedAdminMappings&quot;;
  src -&gt; tgt.onsetDateTime = src.effectiveDateTime &quot;SetMedAdminOnsetDateTime&quot;;
  src -&gt; tgt.onsetPeriod = src.effectivePeriod &quot;SetMedAdminOnsetPeriod&quot;;
}

group MapFromMedicationDispense(source src : sourceMedicationDispense, target tgt : targetCondition) {
  src -&gt; tgt.status = 'active' &quot;SetMedDispenseStatus&quot;;
  src.medicationCodeableConcept as code -&gt; code.coding as coding then ApplyCommonMappings(coding, tgt) &quot;ApplyMedDispenseMappings&quot;;
  src -&gt; tgt.onsetDateTime = src.whenHandedOver &quot;SetMedDispenseOnsetDateTime&quot;;
}

group ApplyCommonMappings(source src : Coding, target tgt : targetCondition) {
  src.system as systemValue where systemValue = 'http://snomed.info/sct' -&gt; tgt.code = create('CodeableConcept') as newCC then {
    src -&gt; newCC.coding = create('Coding') as newCoding then {
      src.code as codeValue where codeValue = '370388006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '003',  newCoding.display = 'Patient Immunocompromised' &quot;SetSNOMEDCode370388006&quot;;
      src.code as codeValue where codeValue = '234336002' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '004',  newCoding.display = 'Hemopoietic stem cell transplant [procedure]' &quot;SetSNOMEDCode234336002&quot;;
      src.code as codeValue where codeValue = '50711007' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '005',  newCoding.display = 'Viral hepatitis type C [disorder]' &quot;SetSNOMEDCode50711007&quot;;
      src.code as codeValue where codeValue = '77386006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '007',  newCoding.display = 'Patient currently pregnant [finding]' &quot;SetSNOMEDCode77386006&quot;;
      src.code as codeValue where codeValue = '102874004' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '007',  newCoding.display = 'Possible pregnancy [finding]' &quot;SetSNOMEDCode102874004&quot;;
      src.code as codeValue where codeValue = '255409004' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '007',  newCoding.display = 'Pregnant woman [person]' &quot;SetSNOMEDCode255409004&quot;;
      src.code as codeValue where codeValue = '413712001' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '009',  newCoding.display = 'Breastfeeding [mother] [observable entity]' &quot;SetSNOMEDCode413712001&quot;;
      src.code as codeValue where codeValue = '230744007' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '010',  newCoding.display = 'Cerebrospinal fluid leak [disorder]' &quot;SetSNOMEDCode230744007&quot;;
      src.code as codeValue where codeValue = '449840001' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '011',  newCoding.display = 'Cochlear prosthesis in situ [finding]' &quot;SetSNOMEDCode449840001&quot;;
      src.code as codeValue where codeValue = '43252007' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '011',  newCoding.display = 'Cochlear prosthesis, device [physical object]' &quot;SetSNOMEDCode43252007&quot;;
      src.code as codeValue where codeValue = '359612003' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '011',  newCoding.display = 'Implantation of cochlear prosthetic device [procedure]' &quot;SetSNOMEDCode359612003&quot;;
      src.code as codeValue where codeValue = '31323000' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '013',  newCoding.display = 'Severe combined immunodeficiency disease [disorder]' &quot;SetSNOMEDCode31323000&quot;;
      src.code as codeValue where codeValue = '73211009' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '014',  newCoding.display = 'Diabetes mellitus [disorder]' &quot;SetSNOMEDCode73211009&quot;;
      src.code as codeValue where codeValue = '328383001' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '015',  newCoding.display = 'Chronic liver disease [disorder]' &quot;SetSNOMEDCode328383001&quot;;
      src.code as codeValue where codeValue = '19943007' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '015',  newCoding.display = 'Cirrhosis of liver [disorder]' &quot;SetSNOMEDCode19943007&quot;;
      src.code as codeValue where codeValue = '128238001' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '016',  newCoding.display = 'Chronic heart disease [disorder]' &quot;SetSNOMEDCode128238001&quot;;
      src.code as codeValue where codeValue = '42343007' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '016',  newCoding.display = 'Congestive heart failure [disorder]' &quot;SetSNOMEDCode42343007&quot;;
      src.code as codeValue where codeValue = '57809008' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '016',  newCoding.display = 'Myocardial disease [disorder]' &quot;SetSNOMEDCode57809008&quot;;
      src.code as codeValue where codeValue = '12770006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '016',  newCoding.display = 'Cyanotic congenital heart disease [disorder]' &quot;SetSNOMEDCode12770006&quot;;
      src.code as codeValue where codeValue = '413839001' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '017',  newCoding.display = 'Chronic lung disease [disorder]' &quot;SetSNOMEDCode413839001&quot;;
      src.code as codeValue where codeValue = '13645005' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '017',  newCoding.display = 'Chronic obstructive lung disease [disorder]' &quot;SetSNOMEDCode13645005&quot;;
      src.code as codeValue where codeValue = '87433001' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '017',  newCoding.display = 'Pulmonary emphysema [disorder]' &quot;SetSNOMEDCode87433001&quot;;
      src.code as codeValue where codeValue = '278971009' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '018',  newCoding.display = 'Hepatitis A Immune [Finding]' &quot;SetSNOMEDCode278971009&quot;;
      src.code as codeValue where codeValue = '271511000' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '019',  newCoding.display = 'Hepatitis B Immune [Finding]' &quot;SetSNOMEDCode271511000&quot;;
      src.code as codeValue where codeValue = '371111005' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '020',  newCoding.display = 'Measles Immune [finding]' &quot;SetSNOMEDCode371111005&quot;;
      src.code as codeValue where codeValue = '371112003' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '021',  newCoding.display = 'Mumps Immune [finding]' &quot;SetSNOMEDCode371112003&quot;;
      src.code as codeValue where codeValue = '278968001' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '022',  newCoding.display = 'Rubella Immune [finding]' &quot;SetSNOMEDCode278968001&quot;;
      src.code as codeValue where codeValue = '371113008' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '023',  newCoding.display = 'Varicella Immune' &quot;SetSNOMEDCode371113008&quot;;
      src.code as codeValue where codeValue = '38907003' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '024',  newCoding.display = 'Varicella [Disorder]' &quot;SetSNOMEDCode38907003&quot;;
      src.code as codeValue where codeValue = '4740000' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '025',  newCoding.display = 'Herpes Zoster [Disorder]' &quot;SetSNOMEDCode4740000&quot;;
      src.code as codeValue where codeValue = '86406008' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '026',  newCoding.display = 'Human immunodeficiency virus infection [disorder]' &quot;SetSNOMEDCode86406008&quot;;
      src.code as codeValue where codeValue = '427314002' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '026',  newCoding.display = 'Antiviral therapy [procedure]' &quot;SetSNOMEDCode427314002&quot;;
      src.code as codeValue where codeValue = '390798007' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '027',  newCoding.display = 'Asthma finding [finding]' &quot;SetSNOMEDCode390798007&quot;;
      src.code as codeValue where codeValue = '195967001' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '027',  newCoding.display = 'Asthma [disorder]' &quot;SetSNOMEDCode195967001&quot;;
      src.code as codeValue where codeValue = '35327006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '028',  newCoding.display = 'Intussusception [morphologic abnormality]' &quot;SetSNOMEDCode35327006&quot;;
      src.code as codeValue where codeValue = '49723003' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '028',  newCoding.display = 'Intussusception of intestine [disorder]' &quot;SetSNOMEDCode49723003&quot;;
      src.code as codeValue where codeValue = '69776003' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '029',  newCoding.display = 'Acute gastroenteritis [disorder]' &quot;SetSNOMEDCode69776003&quot;;
      src.code as codeValue where codeValue = '56717001' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '031',  newCoding.display = 'Tuberculosis [disorder]' &quot;SetSNOMEDCode56717001&quot;;
      src.code as codeValue where codeValue = '372763006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '033',  newCoding.display = 'Amantadine [substance]' &quot;SetSNOMEDCode372763006&quot;;
      src.code as codeValue where codeValue = '51361008' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '033',  newCoding.display = 'Amantadine [product]' &quot;SetSNOMEDCode51361008&quot;;
      src.code as codeValue where codeValue = '372532009' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '033',  newCoding.display = 'Rimantadine [substance]' &quot;SetSNOMEDCode372532009&quot;;
      src.code as codeValue where codeValue = '108712009' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '033',  newCoding.display = 'Rimantadine [product]' &quot;SetSNOMEDCode108712009&quot;;
      src.code as codeValue where codeValue = '387010007' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '033',  newCoding.display = 'Zanamivir [substance]' &quot;SetSNOMEDCode387010007&quot;;
      src.code as codeValue where codeValue = '116100000' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '033',  newCoding.display = 'Zanamivir [product]' &quot;SetSNOMEDCode116100000&quot;;
      src.code as codeValue where codeValue = '412261005' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '033',  newCoding.display = 'Oseltamivir [substance]' &quot;SetSNOMEDCode412261005&quot;;
      src.code as codeValue where codeValue = '386142008' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '033',  newCoding.display = 'Oseltamivir [product]' &quot;SetSNOMEDCode386142008&quot;;
      src.code as codeValue where codeValue = '405742008' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '034',  newCoding.display = 'Aspirin therapy finding [finding]' &quot;SetSNOMEDCode405742008&quot;;
      src.code as codeValue where codeValue = '76102007' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '036',  newCoding.display = 'Male homosexual [finding]' &quot;SetSNOMEDCode76102007&quot;;
      src.code as codeValue where codeValue = '225531006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '036',  newCoding.display = 'Homosexual behavior [finding]' &quot;SetSNOMEDCode225531006&quot;;
      src.code as codeValue where codeValue = '225516002' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '037',  newCoding.display = 'Multiple sexual contacts [finding]' &quot;SetSNOMEDCode225516002&quot;;
      src.code as codeValue where codeValue = '228460004' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '037',  newCoding.display = 'Multiple current sexual partners [finding]' &quot;SetSNOMEDCode228460004&quot;;
      src.code as codeValue where codeValue = '228466005' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '037',  newCoding.display = 'Commitment to sexual relationship [observable entity]' &quot;SetSNOMEDCode228466005&quot;;
      src.code as codeValue where codeValue = '225517006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '038',  newCoding.display = 'Sexual partners [observable entity]' &quot;SetSNOMEDCode225517006&quot;;
      src.code as codeValue where codeValue = '11723008' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '038',  newCoding.display = 'Contact with [contextual qualifier] [qualifier value]' &quot;SetSNOMEDCode11723008&quot;;
      src.code as codeValue where codeValue = '165806002' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '038',  newCoding.display = 'Hepatitis B surface antigen positive [finding]' &quot;SetSNOMEDCode165806002&quot;;
      src.code as codeValue where codeValue = '305489005' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '039',  newCoding.display = 'Under care of genitourinary medicine physician [finding]' &quot;SetSNOMEDCode305489005&quot;;
      src.code as codeValue where codeValue = '305679000' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '039',  newCoding.display = 'Seen by genitourinary medicine physician [finding]' &quot;SetSNOMEDCode305679000&quot;;
      src.code as codeValue where codeValue = '8098009' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '039',  newCoding.display = 'Sexually transmitted infectious disease [disorder]' &quot;SetSNOMEDCode8098009&quot;;
      src.code as codeValue where codeValue = '307052004' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '040',  newCoding.display = 'Illicit drug use [finding]' &quot;SetSNOMEDCode307052004&quot;;
      src.code as codeValue where codeValue = '228366006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '040',  newCoding.display = 'Finding relating to drug misuse behavior [finding]' &quot;SetSNOMEDCode228366006&quot;;
      src.code as codeValue where codeValue = '226034001' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '041',  newCoding.display = 'Injecting drug user [finding]' &quot;SetSNOMEDCode226034001&quot;;
      src.code as codeValue where codeValue = '228388006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '041',  newCoding.display = 'Intravenous drug user  [finding]' &quot;SetSNOMEDCode228388006&quot;;
      src.code as codeValue where codeValue = '145101000119102' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '041',  newCoding.display = 'Intravenous cocaine abuse [disorder]' &quot;SetSNOMEDCode145101000119102&quot;;
      src.code as codeValue where codeValue = '403746009' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '041',  newCoding.display = 'Skin lesion due to intravenous drug abuse [disorder]' &quot;SetSNOMEDCode403746009&quot;;
      src.code as codeValue where codeValue = '860699005' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '041',  newCoding.display = 'Deep vein thrombosis of lower extremity due to intravenous drug use [disorder]' &quot;SetSNOMEDCode860699005&quot;;
      src.code as codeValue where codeValue = '77176002' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '042',  newCoding.display = 'Smoker [finding]' &quot;SetSNOMEDCode77176002&quot;;
      src.code as codeValue where codeValue = '228281002' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '043',  newCoding.display = 'Problem drinker [finding]' &quot;SetSNOMEDCode228281002&quot;;
      src.code as codeValue where codeValue = '7200002' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '043',  newCoding.display = 'Alcoholism [disorder]' &quot;SetSNOMEDCode7200002&quot;;
      src.code as codeValue where codeValue = '159138004' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '050',  newCoding.display = 'Microbiologist [occupation]' &quot;SetSNOMEDCode159138004&quot;;
      src.code as codeValue where codeValue = '14698002' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '050',  newCoding.display = 'Medical microbiologist [occupation]' &quot;SetSNOMEDCode14698002&quot;;
      src.code as codeValue where codeValue = '24932003' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '050',  newCoding.display = 'Exposure to [contextual qualifier] [qualifier value]' &quot;SetSNOMEDCode24932003&quot;;
      src.code as codeValue where codeValue = '17872004' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '050',  newCoding.display = 'Neisseria meningitidis [organism]' &quot;SetSNOMEDCode17872004&quot;;
      src.code as codeValue where codeValue = '159138004' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '051',  newCoding.display = 'Microbiologist [occupation]' &quot;SetSNOMEDCode159138004&quot;;
      src.code as codeValue where codeValue = '14698002' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '051',  newCoding.display = 'Medical microbiologist [occupation]' &quot;SetSNOMEDCode14698002&quot;;
      src.code as codeValue where codeValue = '159282002' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '051',  newCoding.display = 'Laboratory technician [occupation]' &quot;SetSNOMEDCode159282002&quot;;
      src.code as codeValue where codeValue = '24932003' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '051',  newCoding.display = 'Exposure to [contextual qualifier] [qualifier value]' &quot;SetSNOMEDCode24932003&quot;;
      src.code as codeValue where codeValue = '5595000' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '051',  newCoding.display = 'Salmonella Typhi [organism]' &quot;SetSNOMEDCode5595000&quot;;
      src.code as codeValue where codeValue = '159282002' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '052',  newCoding.display = 'Laboratory technician [occupation]' &quot;SetSNOMEDCode159282002&quot;;
      src.code as codeValue where codeValue = '24932003' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '052',  newCoding.display = 'Exposure to [contextual qualifier] [qualifier value]' &quot;SetSNOMEDCode24932003&quot;;
      src.code as codeValue where codeValue = '26630006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '052',  newCoding.display = 'Yellow fever virus [organism]' &quot;SetSNOMEDCode26630006&quot;;
      src.code as codeValue where codeValue = '159282002' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '053',  newCoding.display = 'Laboratory technician [occupation]' &quot;SetSNOMEDCode159282002&quot;;
      src.code as codeValue where codeValue = '24932003' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '053',  newCoding.display = 'Exposure to [contextual qualifier] [qualifier value]' &quot;SetSNOMEDCode24932003&quot;;
      src.code as codeValue where codeValue = '59881000' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '053',  newCoding.display = 'Rabies virus [organism]' &quot;SetSNOMEDCode59881000&quot;;
      src.code as codeValue where codeValue = '159282002' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '054',  newCoding.display = 'Laboratory technician [occupation]' &quot;SetSNOMEDCode159282002&quot;;
      src.code as codeValue where codeValue = '24932003' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '054',  newCoding.display = 'Exposure to [contextual qualifier] [qualifier value]' &quot;SetSNOMEDCode24932003&quot;;
      src.code as codeValue where codeValue = '44172002' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '054',  newCoding.display = 'Human poliovirus [organism]' &quot;SetSNOMEDCode44172002&quot;;
      src.code as codeValue where codeValue = '223366009' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '055',  newCoding.display = 'Healthcare professional [occupation]' &quot;SetSNOMEDCode223366009&quot;;
      src.code as codeValue where codeValue = '223366009' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '056',  newCoding.display = 'Healthcare professional [occupation]' &quot;SetSNOMEDCode223366009&quot;;
      src.code as codeValue where codeValue = '24932003' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '056',  newCoding.display = 'Exposure to [contextual qualifier] [qualifier value]' &quot;SetSNOMEDCode24932003&quot;;
      src.code as codeValue where codeValue = '44172002' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '056',  newCoding.display = 'Human poliovirus [organism]' &quot;SetSNOMEDCode44172002&quot;;
      src.code as codeValue where codeValue = '26369006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '057',  newCoding.display = 'Public health nurse [occupation]' &quot;SetSNOMEDCode26369006&quot;;
      src.code as codeValue where codeValue = '68867008' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '057',  newCoding.display = 'Public health dentist [occupation]' &quot;SetSNOMEDCode68867008&quot;;
      src.code as codeValue where codeValue = '307969004' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '057',  newCoding.display = 'Public health officer [occupation]' &quot;SetSNOMEDCode307969004&quot;;
      src.code as codeValue where codeValue = '56466003' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '057',  newCoding.display = 'Public health physician [occupation]' &quot;SetSNOMEDCode56466003&quot;;
      src.code as codeValue where codeValue = '56079002' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '057',  newCoding.display = 'Public health veterinarian [occupation]' &quot;SetSNOMEDCode56079002&quot;;
      src.code as codeValue where codeValue = '60008001' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '057',  newCoding.display = 'Public health nutritionist [occupation]' &quot;SetSNOMEDCode60008001&quot;;
      src.code as codeValue where codeValue = '24932003' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '057',  newCoding.display = 'Exposure to [contextual qualifier] [qualifier value]' &quot;SetSNOMEDCode24932003&quot;;
      src.code as codeValue where codeValue = '87612001' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '057',  newCoding.display = 'Blood [substance]' &quot;SetSNOMEDCode87612001&quot;;
      src.code as codeValue where codeValue = '32457005' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '057',  newCoding.display = 'Body fluid [substance]' &quot;SetSNOMEDCode32457005&quot;;
      src.code as codeValue where codeValue = '223366009' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '059',  newCoding.display = 'Healthcare professional [occupation]' &quot;SetSNOMEDCode223366009&quot;;
      src.code as codeValue where codeValue = '158942005' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '059',  newCoding.display = 'Residential child care worker [occupation]' &quot;SetSNOMEDCode158942005&quot;;
      src.code as codeValue where codeValue = '158939004' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '059',  newCoding.display = 'Child care officer [occupation]' &quot;SetSNOMEDCode158939004&quot;;
      src.code as codeValue where codeValue = '73851001' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '059',  newCoding.display = 'Plumber [general] [occupation]' &quot;SetSNOMEDCode73851001&quot;;
      src.code as codeValue where codeValue = '160157004' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '059',  newCoding.display = 'Sewerman [occupation]' &quot;SetSNOMEDCode160157004&quot;;
      src.code as codeValue where codeValue = '266006009' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '059',  newCoding.display = 'Food/drink processor [occupation]' &quot;SetSNOMEDCode266006009&quot;;
      src.code as codeValue where codeValue = '274272004' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '059',  newCoding.display = 'Catering services occupation [occupation]' &quot;SetSNOMEDCode274272004&quot;;
      src.code as codeValue where codeValue = '160133004' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '059',  newCoding.display = 'Packer - food/garden produce [occupation]' &quot;SetSNOMEDCode160133004&quot;;
      src.code as codeValue where codeValue = '265940000' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '060',  newCoding.display = 'Animal health occupation [occupation]' &quot;SetSNOMEDCode265940000&quot;;
      src.code as codeValue where codeValue = '159091009' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '061',  newCoding.display = 'Trainer - performing animals [occupation]' &quot;SetSNOMEDCode159091009&quot;;
      src.code as codeValue where codeValue = '24932003' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '062',  newCoding.display = 'Exposure to [contextual qualifier] [qualifier value]' &quot;SetSNOMEDCode24932003&quot;;
      src.code as codeValue where codeValue = '59881000' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '062',  newCoding.display = 'Rabies virus [organism]' &quot;SetSNOMEDCode59881000&quot;;
      src.code as codeValue where codeValue = '65853000' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '063',  newCoding.display = 'Student [occupation]' &quot;SetSNOMEDCode65853000&quot;;
      src.code as codeValue where codeValue = '257561002' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '063',  newCoding.display = 'Further education establishment [environment]' &quot;SetSNOMEDCode257561002&quot;;
      src.code as codeValue where codeValue = '90688005' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '066',  newCoding.display = 'Chronic renal failure syndrome [disorder]' &quot;SetSNOMEDCode90688005&quot;;
      src.code as codeValue where codeValue = '20078004' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '068',  newCoding.display = 'Substance abuse treatment center [environment]' &quot;SetSNOMEDCode20078004&quot;;
      src.code as codeValue where codeValue = '257656006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '069',  newCoding.display = 'Penal institution [environment]' &quot;SetSNOMEDCode257656006&quot;;
      src.code as codeValue where codeValue = '410519009' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '070',  newCoding.display = 'At risk context [qualifier value]' &quot;SetSNOMEDCode410519009&quot;;
      src.code as codeValue where codeValue = '443684005' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '070',  newCoding.display = 'Disease outbreak [event]' &quot;SetSNOMEDCode443684005&quot;;
      src.code as codeValue where codeValue = '11723008' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '071',  newCoding.display = 'Contact with [contextual qualifier] [qualifier value]' &quot;SetSNOMEDCode11723008&quot;;
      src.code as codeValue where codeValue = '165806002' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '071',  newCoding.display = 'Hepatitis B surface antigen positive [finding]' &quot;SetSNOMEDCode165806002&quot;;
      src.code as codeValue where codeValue = '170484009' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '072',  newCoding.display = 'Typhoid carrier [finding]' &quot;SetSNOMEDCode170484009&quot;;
      src.code as codeValue where codeValue = '12271241000119109' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '075',  newCoding.display = 'Transgender identify [finding]' &quot;SetSNOMEDCode12271241000119109&quot;;
      src.code as codeValue where codeValue = '84757009' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '076',  newCoding.display = 'Epilepsy [disorder]' &quot;SetSNOMEDCode84757009&quot;;
      src.code as codeValue where codeValue = '192711008' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '079',  newCoding.display = 'Post diphtheria vaccination encephalitis [disorder]' &quot;SetSNOMEDCode192711008&quot;;
      src.code as codeValue where codeValue = '192710009' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '079',  newCoding.display = 'Post tetanus vaccination encephalitis [disorder]' &quot;SetSNOMEDCode192710009&quot;;
      src.code as codeValue where codeValue = '192712001' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '079',  newCoding.display = 'Post pertussis vaccination encephalitis [disorder]' &quot;SetSNOMEDCode192712001&quot;;
      src.code as codeValue where codeValue = '293104008' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '080',  newCoding.display = 'Vaccines adverse reaction [disorder]' &quot;SetSNOMEDCode293104008&quot;;
      src.code as codeValue where codeValue = '293117006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '081',  newCoding.display = 'Poliomyelitis vaccine adverse reaction [disorder]' &quot;SetSNOMEDCode293117006&quot;;
      src.code as codeValue where codeValue = '451301000124103' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '082',  newCoding.display = 'Adverse reaction caused by Japanese encephalitis virus vaccine [disorder]' &quot;SetSNOMEDCode451301000124103&quot;;
      src.code as codeValue where codeValue = '429301000124101' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '083',  newCoding.display = 'Adverse reaction to rotavirus vaccine [disorder]' &quot;SetSNOMEDCode429301000124101&quot;;
      src.code as codeValue where codeValue = '293122006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '084',  newCoding.display = 'Typhoid vaccine adverse reaction [disorder]' &quot;SetSNOMEDCode293122006&quot;;
      src.code as codeValue where codeValue = '420113004' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '085',  newCoding.display = 'Influenza virus vaccine adverse reaction [disorder]' &quot;SetSNOMEDCode420113004&quot;;
      src.code as codeValue where codeValue = '293115003' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '086',  newCoding.display = 'Pertussis vaccine adverse reaction [disorder]' &quot;SetSNOMEDCode293115003&quot;;
      src.code as codeValue where codeValue = '219085007' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '087',  newCoding.display = 'Adverse reaction to diphtheria vaccine [disorder]' &quot;SetSNOMEDCode219085007&quot;;
      src.code as codeValue where codeValue = '219084006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '088',  newCoding.display = 'Adverse reaction to tetanus vaccine [disorder]' &quot;SetSNOMEDCode219084006&quot;;
      src.code as codeValue where codeValue = '451331000124106' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '089',  newCoding.display = 'Adverse reaction caused by varicella virus live vaccine [disorder]' &quot;SetSNOMEDCode451331000124106&quot;;
      src.code as codeValue where codeValue = '429311000124103' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '090',  newCoding.display = 'Adverse reaction to human papillomavirus vaccine [disorder]' &quot;SetSNOMEDCode429311000124103&quot;;
      src.code as codeValue where codeValue = '219096004' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '091',  newCoding.display = 'Adverse reaction to measles vaccine [disorder]' &quot;SetSNOMEDCode219096004&quot;;
      src.code as codeValue where codeValue = '293114004' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '092',  newCoding.display = 'Mumps vaccine adverse reaction [disorder]' &quot;SetSNOMEDCode293114004&quot;;
      src.code as codeValue where codeValue = '293119009' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '093',  newCoding.display = 'Rubella vaccine adverse reaction [disorder]' &quot;SetSNOMEDCode293119009&quot;;
      src.code as codeValue where codeValue = '293116002' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '094',  newCoding.display = 'Pneumococcal vaccine adverse reaction [disorder]' &quot;SetSNOMEDCode293116002&quot;;
      src.code as codeValue where codeValue = '2219088009' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '095',  newCoding.display = 'Adverse reaction to meningococcal vaccine [disorder]' &quot;SetSNOMEDCode2219088009&quot;;
      src.code as codeValue where codeValue = '451111000124103' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '095',  newCoding.display = 'Adverse reaction caused by meningococcal conjugate vaccine [disorder]' &quot;SetSNOMEDCode451111000124103&quot;;
      src.code as codeValue where codeValue = '293126009' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '096',  newCoding.display = 'Hepatitis A vaccine adverse reaction [disorder]' &quot;SetSNOMEDCode293126009&quot;;
      src.code as codeValue where codeValue = '293110008' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '097',  newCoding.display = 'Hepatitis B vaccine adverse reaction [disorder]' &quot;SetSNOMEDCode293110008&quot;;
      src.code as codeValue where codeValue = '293127000' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '098',  newCoding.display = 'Haemophilus influenzae Type B vaccine adverse reaction [disorder]' &quot;SetSNOMEDCode293127000&quot;;
      src.code as codeValue where codeValue = '219095000' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '099',  newCoding.display = 'Adverse reaction to yellow fever vaccine [disorder]' &quot;SetSNOMEDCode219095000&quot;;
      src.code as codeValue where codeValue = '451291000124104' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '100',  newCoding.display = 'Adverse reaction caused by zoster vaccine [disorder]' &quot;SetSNOMEDCode451291000124104&quot;;
      src.code as codeValue where codeValue = '213020009' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '101',  newCoding.display = 'Egg protein allergy [disorder]' &quot;SetSNOMEDCode213020009&quot;;
      src.code as codeValue where codeValue = '91930004' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '101',  newCoding.display = 'Allergy to eggs [disorder]' &quot;SetSNOMEDCode91930004&quot;;
      src.code as codeValue where codeValue = '293309006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '102',  newCoding.display = 'Gelatin adverse reaction [disorder]' &quot;SetSNOMEDCode293309006&quot;;
      src.code as codeValue where codeValue = '294847001' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '102',  newCoding.display = 'Gelatin allergy [disorder]' &quot;SetSNOMEDCode294847001&quot;;
      src.code as codeValue where codeValue = '300916003' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '104',  newCoding.display = 'Latex allergy [disorder]' &quot;SetSNOMEDCode300916003&quot;;
      src.code as codeValue where codeValue = '441593005' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '104',  newCoding.display = 'Anaphylaxis due to latex [disorder]' &quot;SetSNOMEDCode441593005&quot;;
      src.code as codeValue where codeValue = '419522004' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '106',  newCoding.display = 'Gentamycin sensitivity [disorder]' &quot;SetSNOMEDCode419522004&quot;;
      src.code as codeValue where codeValue = '420094007' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '106',  newCoding.display = 'Gentamicin adverse reaction [disorder]' &quot;SetSNOMEDCode420094007&quot;;
      src.code as codeValue where codeValue = '294469003' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '106',  newCoding.display = 'Gentamicin allergy [disorder]' &quot;SetSNOMEDCode294469003&quot;;
      src.code as codeValue where codeValue = '294468006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '107',  newCoding.display = 'Neomycin allergy [disorder]' &quot;SetSNOMEDCode294468006&quot;;
      src.code as codeValue where codeValue = '292927007' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '107',  newCoding.display = 'Neomycin adverse reaction [disorder]' &quot;SetSNOMEDCode292927007&quot;;
      src.code as codeValue where codeValue = '294466005' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '108',  newCoding.display = 'Streptomycin allergy [disorder]' &quot;SetSNOMEDCode294466005&quot;;
      src.code as codeValue where codeValue = '292925004' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '108',  newCoding.display = 'Streptomycin adverse reaction [disorder]' &quot;SetSNOMEDCode292925004&quot;;
      src.code as codeValue where codeValue = '294530006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '109',  newCoding.display = 'Polymyxin B allergy [disorder]' &quot;SetSNOMEDCode294530006&quot;;
      src.code as codeValue where codeValue = '292992006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '109',  newCoding.display = 'Polymyxin B adverse reaction [disorder]' &quot;SetSNOMEDCode292992006&quot;;
      src.code as codeValue where codeValue = '703936006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '110',  newCoding.display = 'Allergy to yeast [disorder]' &quot;SetSNOMEDCode703936006&quot;;
      src.code as codeValue where codeValue = '293118001' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '113',  newCoding.display = 'Rabies vaccine adverse reaction [disorder]' &quot;SetSNOMEDCode293118001&quot;;
      src.code as codeValue where codeValue = '46177005' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '114',  newCoding.display = 'End stage renal disease [disorder]' &quot;SetSNOMEDCode46177005&quot;;
      src.code as codeValue where codeValue = '64520006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '115',  newCoding.display = 'Protamine sulfate [substance]' &quot;SetSNOMEDCode64520006&quot;;
      src.code as codeValue where codeValue = '294278007' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '115',  newCoding.display = 'Protamine allergy [disorder]' &quot;SetSNOMEDCode294278007&quot;;
      src.code as codeValue where codeValue = '451281000124102' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '116',  newCoding.display = 'Adverse reaction caused by meningococcal group B vaccine [disorder]' &quot;SetSNOMEDCode451281000124102&quot;;
      src.code as codeValue where codeValue = '219082005' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '119',  newCoding.display = 'Adverse reaction caused by cholera vaccine [disorder]' &quot;SetSNOMEDCode219082005&quot;;
      src.code as codeValue where codeValue = '32911000' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '121',  newCoding.display = 'Homeless [finding]' &quot;SetSNOMEDCode32911000&quot;;
      src.code as codeValue where codeValue = '116859006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '132',  newCoding.display = 'Transfusion of blood product [procedure]' &quot;SetSNOMEDCode116859006&quot;;
      src.code as codeValue where codeValue = '116859006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '133',  newCoding.display = 'Transfusion of blood product [procedure]' &quot;SetSNOMEDCode116859006&quot;;
      src.code as codeValue where codeValue = '116859006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '134',  newCoding.display = 'Transfusion of blood product [procedure]' &quot;SetSNOMEDCode116859006&quot;;
      src.code as codeValue where codeValue = '13569004' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '135',  newCoding.display = 'Transfusion of plasma [procedure]' &quot;SetSNOMEDCode13569004&quot;;
      src.code as codeValue where codeValue = '12719002' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '135',  newCoding.display = 'Platelet transfusion [procedure]' &quot;SetSNOMEDCode12719002&quot;;
      src.code as codeValue where codeValue = '65880007' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '145',  newCoding.display = 'X-linked agammaglobulinemia [disorder]' &quot;SetSNOMEDCode65880007&quot;;
      src.code as codeValue where codeValue = '23238000' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '145',  newCoding.display = 'Common variable agammaglobulinemia [disorder]' &quot;SetSNOMEDCode23238000&quot;;
      src.code as codeValue where codeValue = '190979003' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '146',  newCoding.display = 'Selective immunoglobulin A deficiency [disorder]' &quot;SetSNOMEDCode190979003&quot;;
      src.code as codeValue where codeValue = '123785006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '146',  newCoding.display = 'Immunoglobulin G subclass deficiency [finding]' &quot;SetSNOMEDCode123785006&quot;;
      src.code as codeValue where codeValue = '31323000' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '147',  newCoding.display = 'Severe combined immunodeficiency disease [disorder]' &quot;SetSNOMEDCode31323000&quot;;
      src.code as codeValue where codeValue = '77128003' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '147',  newCoding.display = 'DiGeorge sequence [disorder]' &quot;SetSNOMEDCode77128003&quot;;
      src.code as codeValue where codeValue = '77128003' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '148',  newCoding.display = 'DiGeorge sequence [disorder]' &quot;SetSNOMEDCode77128003&quot;;
      src.code as codeValue where codeValue = '36070007' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '148',  newCoding.display = 'Wiskott-Aldrich syndrome [disorder]' &quot;SetSNOMEDCode36070007&quot;;
      src.code as codeValue where codeValue = '68504005' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '148',  newCoding.display = 'Ataxia-telangiectasia syndrome [disorder]' &quot;SetSNOMEDCode68504005&quot;;
      src.code as codeValue where codeValue = '24743004' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '150',  newCoding.display = 'Complement deficiency disease [disorder]' &quot;SetSNOMEDCode24743004&quot;;
      src.code as codeValue where codeValue = '24743004' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '151',  newCoding.display = 'Complement deficiency disease [disorder]' &quot;SetSNOMEDCode24743004&quot;;
      src.code as codeValue where codeValue = '81166004' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '151',  newCoding.display = 'Properdin deficiency disease [disorder]' &quot;SetSNOMEDCode81166004&quot;;
      src.code as codeValue where codeValue = '234605000' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '151',  newCoding.display = 'Factor B deficiency [disorder]' &quot;SetSNOMEDCode234605000&quot;;
      src.code as codeValue where codeValue = '387759001' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '152',  newCoding.display = 'Chronic granulomatous disease [disorder]' &quot;SetSNOMEDCode387759001&quot;;
      src.code as codeValue where codeValue = '77358003' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '153',  newCoding.display = 'Congenital leukocyte adherence deficiency [disorder]' &quot;SetSNOMEDCode77358003&quot;;
      src.code as codeValue where codeValue = '234433009' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '153',  newCoding.display = 'Myeloperoxidase deficiency [disorder]' &quot;SetSNOMEDCode234433009&quot;;
      src.code as codeValue where codeValue = '62479008' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '154',  newCoding.display = 'Acquired immune deficiency syndrome [disorder]' &quot;SetSNOMEDCode62479008&quot;;
      src.code as codeValue where codeValue = '62479008' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '155',  newCoding.display = 'Acquired immune deficiency syndrome [disorder]' &quot;SetSNOMEDCode62479008&quot;;
      src.code as codeValue where codeValue = '77465005' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '157',  newCoding.display = 'Transplantation [procedure]' &quot;SetSNOMEDCode77465005&quot;;
      src.code as codeValue where codeValue = '313039003' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '157',  newCoding.display = 'Solid organ transplant [procedure]' &quot;SetSNOMEDCode313039003&quot;;
      src.code as codeValue where codeValue = '86553008' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '158',  newCoding.display = 'Immunosuppressive therapy [procedure]' &quot;SetSNOMEDCode86553008&quot;;
      src.code as codeValue where codeValue = '53438000' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '159',  newCoding.display = 'Radiation therapy procedure or service [procedure]' &quot;SetSNOMEDCode53438000&quot;;
      src.code as codeValue where codeValue = '707147002' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '160',  newCoding.display = 'Asplenia [disorder]' &quot;SetSNOMEDCode707147002&quot;;
      src.code as codeValue where codeValue = '709044004' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '161',  newCoding.display = 'Chronic kidney disease [disorder]' &quot;SetSNOMEDCode709044004&quot;;
      src.code as codeValue where codeValue = '52254009' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '167',  newCoding.display = 'Nephrotic syndrome [disorder]' &quot;SetSNOMEDCode52254009&quot;;
      src.code as codeValue where codeValue = '367336001' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '168',  newCoding.display = 'Chemotherapy [procedure]' &quot;SetSNOMEDCode367336001&quot;;
      src.code as codeValue where codeValue = '213017001' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '169',  newCoding.display = 'Sexual abuse [event]' &quot;SetSNOMEDCode213017001&quot;;
      src.code as codeValue where codeValue = '422608009' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '169',  newCoding.display = 'Sexual assault [finding' &quot;SetSNOMEDCode422608009&quot;;
      src.code as codeValue where codeValue = '248110007' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '169',  newCoding.display = 'Sexual assault [event]' &quot;SetSNOMEDCode248110007&quot;;
      src.code as codeValue where codeValue = '248986005' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '170',  newCoding.display = 'Estimated date of conception [observable entity]' &quot;SetSNOMEDCode248986005&quot;;
      src.code as codeValue where codeValue = '451291000124104' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '172',  newCoding.display = 'Adverse reaction caused by zoster vaccine [disorder]' &quot;SetSNOMEDCode451291000124104&quot;;
      src.code as codeValue where codeValue = '93143009' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '178',  newCoding.display = 'Leukemia, disease [disorder]' &quot;SetSNOMEDCode93143009&quot;;
      src.code as codeValue where codeValue = '399600009' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '179',  newCoding.display = 'Lymphoma [finding]' &quot;SetSNOMEDCode399600009&quot;;
      src.code as codeValue where codeValue = '118599009' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '180',  newCoding.display = 'Hodgkin's disease [disorder]' &quot;SetSNOMEDCode118599009&quot;;
      src.code as codeValue where codeValue = '109989006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '181',  newCoding.display = 'Multiple myeloma [disorder]' &quot;SetSNOMEDCode109989006&quot;;
      src.code as codeValue where codeValue = '86406008' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '186',  newCoding.display = 'Human immunodeficiency virus infection [disorder]' &quot;SetSNOMEDCode86406008&quot;;
      src.code as codeValue where codeValue = '1156961008' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '191',  newCoding.display = 'Chimeric antigen receptor T-cell immunotherapy [procedure]' &quot;SetSNOMEDCode1156961008&quot;;
      src.code as codeValue where codeValue = '363346000' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '198',  newCoding.display = 'Malignant neoplastic disease [disorder]' &quot;SetSNOMEDCode363346000&quot;;
      src.code as codeValue where codeValue = '233703007' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '199',  newCoding.display = 'Interstitial lung disease [disorder]' &quot;SetSNOMEDCode233703007&quot;;
      src.code as codeValue where codeValue = '190905008' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '200',  newCoding.display = 'cystic fibrosis [disorder]' &quot;SetSNOMEDCode190905008&quot;;
      src.code as codeValue where codeValue = '70995007' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '201',  newCoding.display = 'Pulmonary hypertension [disorder]' &quot;SetSNOMEDCode70995007&quot;;
      src.code as codeValue where codeValue = '52448006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '202',  newCoding.display = 'Dimensia [disorder]' &quot;SetSNOMEDCode52448006&quot;;
      src.code as codeValue where codeValue = '41040004' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '203',  newCoding.display = 'Complete trisomy 21 syndrome [disorder]' &quot;SetSNOMEDCode41040004&quot;;
      src.code as codeValue where codeValue = '40108008' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '205',  newCoding.display = 'Thalassemia [disorder]' &quot;SetSNOMEDCode40108008&quot;;
      src.code as codeValue where codeValue = '62914000' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '206',  newCoding.display = 'Cerebrovascular disease [disorder]' &quot;SetSNOMEDCode62914000&quot;;
      src.code as codeValue where codeValue = '13645005' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '214',  newCoding.display = 'Chronic obstructive lung disease [disorder]' &quot;SetSNOMEDCode13645005&quot;;
      src.code as codeValue where codeValue = '87433001' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '215',  newCoding.display = 'Pulmonary emphysema [disorder]' &quot;SetSNOMEDCode87433001&quot;;
      src.code as codeValue where codeValue = '413490006' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '245',  newCoding.display = 'American Indian or Alaska Native [racial group]' &quot;SetSNOMEDCode413490006&quot;;
    } &quot;HandleIndividualSNOMEDCoding&quot;;
  } &quot;ApplySNOMEDMappings&quot;;
  src.system as systemValue where systemValue = 'http://hl7.org/fhir/sid/cvx' -&gt; tgt.code = create('CodeableConcept') as newCC then {
    src -&gt; newCC.coding = create('Coding') as newCoding then {
      src.code as codeValue where codeValue = '02' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '081',  newCoding.display = 'OPV' &quot;SetCVXCode02&quot;;
      src.code as codeValue where codeValue = '10' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '081',  newCoding.display = 'IPV' &quot;SetCVXCode10&quot;;
      src.code as codeValue where codeValue = '89' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '081',  newCoding.display = 'Polio, unspecified formulation' &quot;SetCVXCode89&quot;;
      src.code as codeValue where codeValue = '110' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '081',  newCoding.display = 'DTaP-HepB-IPV' &quot;SetCVXCode110&quot;;
      src.code as codeValue where codeValue = '120' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '081',  newCoding.display = 'DTaP-Hib-IPV' &quot;SetCVXCode120&quot;;
      src.code as codeValue where codeValue = '130' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '081',  newCoding.display = 'DTaP-IPV' &quot;SetCVXCode130&quot;;
      src.code as codeValue where codeValue = '132' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '081',  newCoding.display = 'DTaP-IPV-Hib-HepB, Historical' &quot;SetCVXCode132&quot;;
      src.code as codeValue where codeValue = '146' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '081',  newCoding.display = 'DTaP-IPV-Hib-HepB' &quot;SetCVXCode146&quot;;
      src.code as codeValue where codeValue = '39' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '082',  newCoding.display = 'Japanese Encephalitis, MB' &quot;SetCVXCode39&quot;;
      src.code as codeValue where codeValue = '134' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '082',  newCoding.display = 'Japanese Encephalitis, VC' &quot;SetCVXCode134&quot;;
      src.code as codeValue where codeValue = '129' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '082',  newCoding.display = 'Japanese Encephalitis, unspecified' &quot;SetCVXCode129&quot;;
      src.code as codeValue where codeValue = '116' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '083',  newCoding.display = 'Rotavirus, pentavalent' &quot;SetCVXCode116&quot;;
      src.code as codeValue where codeValue = '122' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '083',  newCoding.display = 'Rotavirus, unspecified formulation' &quot;SetCVXCode122&quot;;
      src.code as codeValue where codeValue = '74' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '083',  newCoding.display = 'Rotavirus, tetravalent' &quot;SetCVXCode74&quot;;
      src.code as codeValue where codeValue = '119' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '083',  newCoding.display = 'Rotavirus, monovalent' &quot;SetCVXCode119&quot;;
      src.code as codeValue where codeValue = '101' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '084',  newCoding.display = 'Typhoid capsular polysaccharide' &quot;SetCVXCode101&quot;;
      src.code as codeValue where codeValue = '25' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '084',  newCoding.display = 'Typhoid oral, live, attenuated' &quot;SetCVXCode25&quot;;
      src.code as codeValue where codeValue = '41' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '084',  newCoding.display = 'Typhoid, parenteral' &quot;SetCVXCode41&quot;;
      src.code as codeValue where codeValue = '53' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '084',  newCoding.display = 'Typhoid, parenteral, AKD [U.S. military]' &quot;SetCVXCode53&quot;;
      src.code as codeValue where codeValue = '91' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '084',  newCoding.display = 'Typhoid, unspecified formulation' &quot;SetCVXCode91&quot;;
      src.code as codeValue where codeValue = '15' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '085',  newCoding.display = 'Influenza, split incl. purified surface antigen' &quot;SetCVXCode15&quot;;
      src.code as codeValue where codeValue = '16' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '085',  newCoding.display = 'Influenza, whole' &quot;SetCVXCode16&quot;;
      src.code as codeValue where codeValue = '88' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '085',  newCoding.display = 'Influenza, Unspecified' &quot;SetCVXCode88&quot;;
      src.code as codeValue where codeValue = '111' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '085',  newCoding.display = 'Influenza, live, intranasal' &quot;SetCVXCode111&quot;;
      src.code as codeValue where codeValue = '135' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '085',  newCoding.display = 'Influenza, high dose seasonal' &quot;SetCVXCode135&quot;;
      src.code as codeValue where codeValue = '140' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '085',  newCoding.display = 'Influenza, injectable preservative free' &quot;SetCVXCode140&quot;;
      src.code as codeValue where codeValue = '141' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '085',  newCoding.display = 'Influenza, injectable' &quot;SetCVXCode141&quot;;
      src.code as codeValue where codeValue = '144' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '085',  newCoding.display = 'Influenza, intradermal, preservative free' &quot;SetCVXCode144&quot;;
      src.code as codeValue where codeValue = '149' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '085',  newCoding.display = 'influenza, live, intranasal, quadrivalent' &quot;SetCVXCode149&quot;;
      src.code as codeValue where codeValue = '150' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '085',  newCoding.display = 'influenza, injectable, quadrivalent, preservative free' &quot;SetCVXCode150&quot;;
      src.code as codeValue where codeValue = '151' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '085',  newCoding.display = 'influenza nasal, unspecified formulation' &quot;SetCVXCode151&quot;;
      src.code as codeValue where codeValue = '153' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '085',  newCoding.display = 'Influenza, injectable, MDCK, preservative free' &quot;SetCVXCode153&quot;;
      src.code as codeValue where codeValue = '155' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '085',  newCoding.display = 'influenza, recombinant, injectable, preservative free' &quot;SetCVXCode155&quot;;
      src.code as codeValue where codeValue = '158' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '085',  newCoding.display = 'Influenza, injectable, quadrivalent' &quot;SetCVXCode158&quot;;
      src.code as codeValue where codeValue = '161' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '085',  newCoding.display = 'Influenza, injectable, quadrivalent, preservative free, peds' &quot;SetCVXCode161&quot;;
      src.code as codeValue where codeValue = '166' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '085',  newCoding.display = 'Influenza, intradermal, quadrivalent, preservative free' &quot;SetCVXCode166&quot;;
      src.code as codeValue where codeValue = '01' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '086',  newCoding.display = 'DTP' &quot;SetCVXCode01&quot;;
      src.code as codeValue where codeValue = '20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '086',  newCoding.display = 'DTaP' &quot;SetCVXCode20&quot;;
      src.code as codeValue where codeValue = '22' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '086',  newCoding.display = 'DTP-Hib' &quot;SetCVXCode22&quot;;
      src.code as codeValue where codeValue = '50' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '086',  newCoding.display = 'DTaP-Hib' &quot;SetCVXCode50&quot;;
      src.code as codeValue where codeValue = '102' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '086',  newCoding.display = 'DTP-Hib-HepB' &quot;SetCVXCode102&quot;;
      src.code as codeValue where codeValue = '106' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '086',  newCoding.display = 'DTaP, 5 pertussis antigens' &quot;SetCVXCode106&quot;;
      src.code as codeValue where codeValue = '107' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '086',  newCoding.display = 'DTaP, Unspecified Formulation' &quot;SetCVXCode107&quot;;
      src.code as codeValue where codeValue = '110' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '086',  newCoding.display = 'DTaP-HepB-IPV' &quot;SetCVXCode110&quot;;
      src.code as codeValue where codeValue = '115' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '086',  newCoding.display = 'Tdap' &quot;SetCVXCode115&quot;;
      src.code as codeValue where codeValue = '120' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '086',  newCoding.display = 'DTaP-Hib-IPV' &quot;SetCVXCode120&quot;;
      src.code as codeValue where codeValue = '130' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '086',  newCoding.display = 'DTaP-IPV' &quot;SetCVXCode130&quot;;
      src.code as codeValue where codeValue = '132' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '086',  newCoding.display = 'DTaP-IPV-Hib-HepB,historical' &quot;SetCVXCode132&quot;;
      src.code as codeValue where codeValue = '146' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '086',  newCoding.display = 'DTaP-IPV-Hib-HepB' &quot;SetCVXCode146&quot;;
      src.code as codeValue where codeValue = '01' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '087',  newCoding.display = 'DTP' &quot;SetCVXCode01&quot;;
      src.code as codeValue where codeValue = '09' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '087',  newCoding.display = 'Td - Adult Adsorbed' &quot;SetCVXCode09&quot;;
      src.code as codeValue where codeValue = '20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '087',  newCoding.display = 'DTaP' &quot;SetCVXCode20&quot;;
      src.code as codeValue where codeValue = '22' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '087',  newCoding.display = 'DTP-Hib' &quot;SetCVXCode22&quot;;
      src.code as codeValue where codeValue = '28' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '087',  newCoding.display = 'DT - Pediatric' &quot;SetCVXCode28&quot;;
      src.code as codeValue where codeValue = '50' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '087',  newCoding.display = 'DTaP-Hib' &quot;SetCVXCode50&quot;;
      src.code as codeValue where codeValue = '102' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '087',  newCoding.display = 'DTP-Hib-HepB' &quot;SetCVXCode102&quot;;
      src.code as codeValue where codeValue = '106' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '087',  newCoding.display = 'DTaP, 5 pertussis antigens' &quot;SetCVXCode106&quot;;
      src.code as codeValue where codeValue = '107' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '087',  newCoding.display = 'DTaP, Unspecified Formulation' &quot;SetCVXCode107&quot;;
      src.code as codeValue where codeValue = '110' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '087',  newCoding.display = 'DTaP-HepB-IPV' &quot;SetCVXCode110&quot;;
      src.code as codeValue where codeValue = '113' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '087',  newCoding.display = 'Td p-free' &quot;SetCVXCode113&quot;;
      src.code as codeValue where codeValue = '115' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '087',  newCoding.display = 'Tdap' &quot;SetCVXCode115&quot;;
      src.code as codeValue where codeValue = '120' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '087',  newCoding.display = 'DTaP-Hib-IPV' &quot;SetCVXCode120&quot;;
      src.code as codeValue where codeValue = '130' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '087',  newCoding.display = 'DTaP-IPV' &quot;SetCVXCode130&quot;;
      src.code as codeValue where codeValue = '132' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '087',  newCoding.display = 'DTaP-IPV-Hib-HepB,historical' &quot;SetCVXCode132&quot;;
      src.code as codeValue where codeValue = '138' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '087',  newCoding.display = 'Td - Adult' &quot;SetCVXCode138&quot;;
      src.code as codeValue where codeValue = '139' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '087',  newCoding.display = 'Td - Adult Unspecified Formulation' &quot;SetCVXCode139&quot;;
      src.code as codeValue where codeValue = '146' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '087',  newCoding.display = 'DTaP-IPV-Hib-HepB' &quot;SetCVXCode146&quot;;
      src.code as codeValue where codeValue = '01' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '088',  newCoding.display = 'DTP' &quot;SetCVXCode01&quot;;
      src.code as codeValue where codeValue = '09' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '088',  newCoding.display = 'Td - Adult Adsorbed' &quot;SetCVXCode09&quot;;
      src.code as codeValue where codeValue = '20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '088',  newCoding.display = 'DTaP' &quot;SetCVXCode20&quot;;
      src.code as codeValue where codeValue = '22' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '088',  newCoding.display = 'DTP-Hib' &quot;SetCVXCode22&quot;;
      src.code as codeValue where codeValue = '28' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '088',  newCoding.display = 'DT - Pediatric' &quot;SetCVXCode28&quot;;
      src.code as codeValue where codeValue = '35' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '088',  newCoding.display = 'TT' &quot;SetCVXCode35&quot;;
      src.code as codeValue where codeValue = '50' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '088',  newCoding.display = 'DTaP-Hib' &quot;SetCVXCode50&quot;;
      src.code as codeValue where codeValue = '102' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '088',  newCoding.display = 'DTP-Hib-HepB' &quot;SetCVXCode102&quot;;
      src.code as codeValue where codeValue = '106' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '088',  newCoding.display = 'DTaP, 5 pertussis antigens' &quot;SetCVXCode106&quot;;
      src.code as codeValue where codeValue = '107' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '088',  newCoding.display = 'DTaP, Unspecified Formulation' &quot;SetCVXCode107&quot;;
      src.code as codeValue where codeValue = '110' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '088',  newCoding.display = 'DTaP-HepB-IPV' &quot;SetCVXCode110&quot;;
      src.code as codeValue where codeValue = '113' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '088',  newCoding.display = 'Td p-free' &quot;SetCVXCode113&quot;;
      src.code as codeValue where codeValue = '115' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '088',  newCoding.display = 'Tdap' &quot;SetCVXCode115&quot;;
      src.code as codeValue where codeValue = '120' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '088',  newCoding.display = 'DTaP-Hib-IPV' &quot;SetCVXCode120&quot;;
      src.code as codeValue where codeValue = '130' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '088',  newCoding.display = 'DTaP-IPV' &quot;SetCVXCode130&quot;;
      src.code as codeValue where codeValue = '132' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '088',  newCoding.display = 'DTaP-IPV-Hib-HepB,historical' &quot;SetCVXCode132&quot;;
      src.code as codeValue where codeValue = '138' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '088',  newCoding.display = 'Td - Adult' &quot;SetCVXCode138&quot;;
      src.code as codeValue where codeValue = '139' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '088',  newCoding.display = 'Td - Adult Unspecified Formulation' &quot;SetCVXCode139&quot;;
      src.code as codeValue where codeValue = '146' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '088',  newCoding.display = 'DTaP-IPV-Hib-HepB' &quot;SetCVXCode146&quot;;
      src.code as codeValue where codeValue = '21' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '089',  newCoding.display = 'Varicella' &quot;SetCVXCode21&quot;;
      src.code as codeValue where codeValue = '94' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '089',  newCoding.display = 'MMRV' &quot;SetCVXCode94&quot;;
      src.code as codeValue where codeValue = '121' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '089',  newCoding.display = 'Zoster' &quot;SetCVXCode121&quot;;
      src.code as codeValue where codeValue = '62' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '090',  newCoding.display = '4vHPV' &quot;SetCVXCode62&quot;;
      src.code as codeValue where codeValue = '118' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '090',  newCoding.display = '2vHPV' &quot;SetCVXCode118&quot;;
      src.code as codeValue where codeValue = '137' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '090',  newCoding.display = 'HPV Unspecified' &quot;SetCVXCode137&quot;;
      src.code as codeValue where codeValue = '165' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '090',  newCoding.display = '9vHPV' &quot;SetCVXCode165&quot;;
      src.code as codeValue where codeValue = '03' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '091',  newCoding.display = 'MMR' &quot;SetCVXCode03&quot;;
      src.code as codeValue where codeValue = '04' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '091',  newCoding.display = 'Measles/Rubella' &quot;SetCVXCode04&quot;;
      src.code as codeValue where codeValue = '05' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '091',  newCoding.display = 'Measles' &quot;SetCVXCode05&quot;;
      src.code as codeValue where codeValue = '94' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '091',  newCoding.display = 'MMRV' &quot;SetCVXCode94&quot;;
      src.code as codeValue where codeValue = '03' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '092',  newCoding.display = 'MMR' &quot;SetCVXCode03&quot;;
      src.code as codeValue where codeValue = '07' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '092',  newCoding.display = 'Mumps' &quot;SetCVXCode07&quot;;
      src.code as codeValue where codeValue = '38' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '092',  newCoding.display = 'Rubella/Mumps' &quot;SetCVXCode38&quot;;
      src.code as codeValue where codeValue = '94' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '092',  newCoding.display = 'MMRV' &quot;SetCVXCode94&quot;;
      src.code as codeValue where codeValue = '03' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '093',  newCoding.display = 'MMR' &quot;SetCVXCode03&quot;;
      src.code as codeValue where codeValue = '04' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '093',  newCoding.display = 'Measles/Rubella' &quot;SetCVXCode04&quot;;
      src.code as codeValue where codeValue = '06' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '093',  newCoding.display = 'Rubella' &quot;SetCVXCode06&quot;;
      src.code as codeValue where codeValue = '38' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '093',  newCoding.display = 'Rubella/Mumps' &quot;SetCVXCode38&quot;;
      src.code as codeValue where codeValue = '94' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '093',  newCoding.display = 'MMRV' &quot;SetCVXCode94&quot;;
      src.code as codeValue where codeValue = '133' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '094',  newCoding.display = 'PCV13' &quot;SetCVXCode133&quot;;
      src.code as codeValue where codeValue = '100' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '094',  newCoding.display = 'PCV7' &quot;SetCVXCode100&quot;;
      src.code as codeValue where codeValue = '33' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '094',  newCoding.display = 'PPSV23' &quot;SetCVXCode33&quot;;
      src.code as codeValue where codeValue = '109' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '094',  newCoding.display = 'Pneumococcal, unspecified formulation' &quot;SetCVXCode109&quot;;
      src.code as codeValue where codeValue = '152' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '094',  newCoding.display = 'Pneumococcal Conjugate, unspecified formulation' &quot;SetCVXCode152&quot;;
      src.code as codeValue where codeValue = '32' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '095',  newCoding.display = 'Meningococcal, MPSV4' &quot;SetCVXCode32&quot;;
      src.code as codeValue where codeValue = '108' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '095',  newCoding.display = 'Meningococcal ACWY, unspecified' &quot;SetCVXCode108&quot;;
      src.code as codeValue where codeValue = '114' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '095',  newCoding.display = 'Meningococcal, MCV4P' &quot;SetCVXCode114&quot;;
      src.code as codeValue where codeValue = '136' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '095',  newCoding.display = 'Meningococcal, MCV4O' &quot;SetCVXCode136&quot;;
      src.code as codeValue where codeValue = '147' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '095',  newCoding.display = 'MCV4, unspecified' &quot;SetCVXCode147&quot;;
      src.code as codeValue where codeValue = '148' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '095',  newCoding.display = 'Meningococcal C/Y-HIB PRP' &quot;SetCVXCode148&quot;;
      src.code as codeValue where codeValue = '167' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '095',  newCoding.display = 'Meningococcal, unknown serogroups' &quot;SetCVXCode167&quot;;
      src.code as codeValue where codeValue = '52' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '096',  newCoding.display = 'Hep A, adult' &quot;SetCVXCode52&quot;;
      src.code as codeValue where codeValue = '83' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '096',  newCoding.display = 'Hep A, ped/adol, 2 dose' &quot;SetCVXCode83&quot;;
      src.code as codeValue where codeValue = '84' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '096',  newCoding.display = 'Hep A, ped/adol, 3 dose' &quot;SetCVXCode84&quot;;
      src.code as codeValue where codeValue = '85' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '096',  newCoding.display = 'Hep A, Unspecified' &quot;SetCVXCode85&quot;;
      src.code as codeValue where codeValue = '104' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '096',  newCoding.display = 'HepA-HepB' &quot;SetCVXCode104&quot;;
      src.code as codeValue where codeValue = '08' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '097',  newCoding.display = 'Hep B, Adol/peds' &quot;SetCVXCode08&quot;;
      src.code as codeValue where codeValue = '42' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '097',  newCoding.display = 'Hep B, Adol/high risk infant' &quot;SetCVXCode42&quot;;
      src.code as codeValue where codeValue = '43' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '097',  newCoding.display = 'Hep B, Adult' &quot;SetCVXCode43&quot;;
      src.code as codeValue where codeValue = '44' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '097',  newCoding.display = 'Hep B, Dialysis' &quot;SetCVXCode44&quot;;
      src.code as codeValue where codeValue = '45' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '097',  newCoding.display = 'Hep B, Unspecified Formulation' &quot;SetCVXCode45&quot;;
      src.code as codeValue where codeValue = '51' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '097',  newCoding.display = 'Hib-HepB' &quot;SetCVXCode51&quot;;
      src.code as codeValue where codeValue = '102' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '097',  newCoding.display = 'DTaP-Hib-HepB' &quot;SetCVXCode102&quot;;
      src.code as codeValue where codeValue = '104' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '097',  newCoding.display = 'HepA-HepB' &quot;SetCVXCode104&quot;;
      src.code as codeValue where codeValue = '110' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '097',  newCoding.display = 'DTaP-HepB-IPV' &quot;SetCVXCode110&quot;;
      src.code as codeValue where codeValue = '132' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '097',  newCoding.display = 'DTaP-IPV-Hib-HepB, historical' &quot;SetCVXCode132&quot;;
      src.code as codeValue where codeValue = '146' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '097',  newCoding.display = 'DTaP-IPV-Hib-HepB' &quot;SetCVXCode146&quot;;
      src.code as codeValue where codeValue = '17' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '098',  newCoding.display = 'Hib unspecified formulation' &quot;SetCVXCode17&quot;;
      src.code as codeValue where codeValue = '22' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '098',  newCoding.display = 'DTP-Hib' &quot;SetCVXCode22&quot;;
      src.code as codeValue where codeValue = '46' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '098',  newCoding.display = 'PRP-D' &quot;SetCVXCode46&quot;;
      src.code as codeValue where codeValue = '47' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '098',  newCoding.display = 'HbOC' &quot;SetCVXCode47&quot;;
      src.code as codeValue where codeValue = '48' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '098',  newCoding.display = 'PRP-T' &quot;SetCVXCode48&quot;;
      src.code as codeValue where codeValue = '49' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '098',  newCoding.display = 'PRP-OMP' &quot;SetCVXCode49&quot;;
      src.code as codeValue where codeValue = '50' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '098',  newCoding.display = 'DTaP/Hib' &quot;SetCVXCode50&quot;;
      src.code as codeValue where codeValue = '51' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '098',  newCoding.display = 'Hib-HepB' &quot;SetCVXCode51&quot;;
      src.code as codeValue where codeValue = '102' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '098',  newCoding.display = 'DTP-Hib-HepB' &quot;SetCVXCode102&quot;;
      src.code as codeValue where codeValue = '120' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '098',  newCoding.display = 'DTaP-IPV/Hib' &quot;SetCVXCode120&quot;;
      src.code as codeValue where codeValue = '132' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '098',  newCoding.display = 'DTaP-IPV-Hib-HepB,historical' &quot;SetCVXCode132&quot;;
      src.code as codeValue where codeValue = '146' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '098',  newCoding.display = 'DTaP-IPV-Hib-HepB' &quot;SetCVXCode146&quot;;
      src.code as codeValue where codeValue = '148' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '098',  newCoding.display = 'Hib-MenCY-TT' &quot;SetCVXCode148&quot;;
      src.code as codeValue where codeValue = '25' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '099',  newCoding.display = 'Yellow Fever' &quot;SetCVXCode25&quot;;
      src.code as codeValue where codeValue = '121' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '100',  newCoding.display = 'Zoster live' &quot;SetCVXCode121&quot;;
      src.code as codeValue where codeValue = '18' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '113',  newCoding.display = 'Rabies, intramuscular injection' &quot;SetCVXCode18&quot;;
      src.code as codeValue where codeValue = '40' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '113',  newCoding.display = 'Rabies, intradermal injection' &quot;SetCVXCode40&quot;;
      src.code as codeValue where codeValue = '90' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '113',  newCoding.display = 'Rabies, unspecified formulation' &quot;SetCVXCode90&quot;;
      src.code as codeValue where codeValue = '162' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '116',  newCoding.display = 'Meningococcal B, recombinant' &quot;SetCVXCode162&quot;;
      src.code as codeValue where codeValue = '163' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '116',  newCoding.display = 'Meningococcal B, OMV' &quot;SetCVXCode163&quot;;
      src.code as codeValue where codeValue = '164' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '116',  newCoding.display = 'Meningococcal B, unspecified' &quot;SetCVXCode164&quot;;
      src.code as codeValue where codeValue = '26' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '119',  newCoding.display = 'cholera, unspecified formulation' &quot;SetCVXCode26&quot;;
      src.code as codeValue where codeValue = '172' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '119',  newCoding.display = 'cholera, WC-rBS' &quot;SetCVXCode172&quot;;
      src.code as codeValue where codeValue = '173' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '119',  newCoding.display = 'cholera, BivWC' &quot;SetCVXCode173&quot;;
      src.code as codeValue where codeValue = '174' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '119',  newCoding.display = 'cholera, live attenuated' &quot;SetCVXCode174&quot;;
      src.code as codeValue where codeValue = '208' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '122',  newCoding.display = 'COVID-19, mRNA, LNP-S, PF, 30 mcg/0.3 mL dose' &quot;SetCVXCode208&quot;;
      src.code as codeValue where codeValue = '13' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '125',  newCoding.display = 'Tetanus immune globulin' &quot;SetCVXCode13&quot;;
      src.code as codeValue where codeValue = '154' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '126',  newCoding.display = 'Hepatitis A immune globulin' &quot;SetCVXCode154&quot;;
      src.code as codeValue where codeValue = '30' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '127',  newCoding.display = 'Hepatitis B immune globulin' &quot;SetCVXCode30&quot;;
      src.code as codeValue where codeValue = '34' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '128',  newCoding.display = 'Rabies immune globulin' &quot;SetCVXCode34&quot;;
      src.code as codeValue where codeValue = '36' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '129',  newCoding.display = 'Varicella zoster immune globulin' &quot;SetCVXCode36&quot;;
      src.code as codeValue where codeValue = '187' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '172',  newCoding.display = 'Zoster subunit' &quot;SetCVXCode187&quot;;
      src.code as codeValue where codeValue = 'non-US' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '252',  newCoding.display = 'Tick-borne encephalitis vaccine' &quot;SetCVXCodenonUS&quot;;
      src.code as codeValue where codeValue = '222' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '252',  newCoding.display = 'Tick-borne encephalitis, unspecified' &quot;SetCVXCode222&quot;;
      src.code as codeValue where codeValue = '223' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '252',  newCoding.display = 'Tick-borne encephalitis, inactivated, PF, 0.25mL' &quot;SetCVXCode223&quot;;
      src.code as codeValue where codeValue = '224' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '252',  newCoding.display = 'Tick-borne encephalitis, inactivated, PF, 0.5mL' &quot;SetCVXCode224&quot;;
    } &quot;HandleIndividualCVXCoding&quot;;
  } &quot;ApplyCVXMappings&quot;;
  src.system as systemValue where systemValue = 'http://phinvads.cdc.gov' -&gt; tgt.code = create('CodeableConcept') as newCC then {
    src -&gt; newCC.coding = create('Coding') as newCoding then {
      src.code as codeValue where codeValue = 'VXC27' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '003',  newCoding.display = 'Immunodeficiency due to any cause' &quot;SetCDCPHINVSCodeVXC27&quot;;
      src.code as codeValue where codeValue = 'VXC21' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '028',  newCoding.display = 'Previous history of intussusception' &quot;SetCDCPHINVSCodeVXC21&quot;;
      src.code as codeValue where codeValue = 'VXC22' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '079',  newCoding.display = 'Encephalopathy within 7 days of previous dose of DTP or DTaP' &quot;SetCDCPHINVSCodeVXC22&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '080',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '081',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '082',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '083',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '084',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '085',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '086',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '087',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '088',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '089',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '090',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '091',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '092',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '093',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '094',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '095',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '096',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '097',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '098',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '099',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '100',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC18' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '110',  newCoding.display = 'Allergy to baker's yeast [anaphylactic]' &quot;SetCDCPHINVSCodeVXC18&quot;;
      src.code as codeValue where codeValue = 'VXC17' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '111',  newCoding.display = 'Allergy [anaphylactic] to 2-phenoxyethanol' &quot;SetCDCPHINVSCodeVXC17&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '113',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '116',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '119',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '122',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '172',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
      src.code as codeValue where codeValue = 'VXC20' -&gt;  newCoding.system = 'http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes',  newCoding.code = '252',  newCoding.display = 'Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]' &quot;SetCDCPHINVSCodeVXC20&quot;;
    } &quot;HandleIndividualCDCPHINVSCoding&quot;;
  } &quot;ApplyCDCPHINVSMappings&quot;;
}

</pre></div>
  </text>
  <url
       value="http://fhirfli.dev/fhir/ig/cicada/StructureMap/map-vaccine-codes"/>
  <version value="0.1.0"/>
  <name value="MapVaccineCodes"/>
  <status value="draft"/>
  <date value="2026-02-11T14:37:07-05:00"/>
  <publisher value="FHIR-FLI"/>
  <contact>
    <name value="FHIR-FLI"/>
    <telecom>
      <system value="url"/>
      <value value="http://fhirfli.dev"/>
    </telecom>
  </contact>
  <description
               value="Define the usage of FHIR resource types with specific aliases"/>
  <structure>
    <url value="http://hl7.org/fhir/StructureDefinition/Observation"/>
    <mode value="source"/>
    <alias value="sourceObservation"/>
  </structure>
  <structure>
    <url value="http://hl7.org/fhir/StructureDefinition/Condition"/>
    <mode value="source"/>
    <alias value="sourceCondition"/>
  </structure>
  <structure>
    <url value="http://hl7.org/fhir/StructureDefinition/Procedure"/>
    <mode value="source"/>
    <alias value="sourceProcedure"/>
  </structure>
  <structure>
    <url value="http://hl7.org/fhir/StructureDefinition/Immunization"/>
    <mode value="source"/>
    <alias value="sourceImmunization"/>
  </structure>
  <structure>
    <url value="http://hl7.org/fhir/StructureDefinition/Medication"/>
    <mode value="source"/>
    <alias value="sourceMedication"/>
  </structure>
  <structure>
    <url value="http://hl7.org/fhir/StructureDefinition/MedicationStatement"/>
    <mode value="source"/>
    <alias value="sourceMedicationStatement"/>
  </structure>
  <structure>
    <url value="http://hl7.org/fhir/StructureDefinition/MedicationRequest"/>
    <mode value="source"/>
    <alias value="sourceMedicationRequest"/>
  </structure>
  <structure>
    <url
         value="http://hl7.org/fhir/StructureDefinition/MedicationAdministration"/>
    <mode value="source"/>
    <alias value="sourceMedicationAdministration"/>
  </structure>
  <structure>
    <url value="http://hl7.org/fhir/StructureDefinition/MedicationDispense"/>
    <mode value="source"/>
    <alias value="sourceMedicationDispense"/>
  </structure>
  <structure>
    <url value="http://hl7.org/fhir/StructureDefinition/Condition"/>
    <mode value="target"/>
    <alias value="targetCondition"/>
  </structure>
  <group>
    <name value="MapToVaccineConditionObservation"/>
    <typeMode value="none"/>
    <input>
      <name value="src"/>
      <type value="any"/>
      <mode value="source"/>
    </input>
    <input>
      <name value="tgt"/>
      <type value="targetCondition"/>
      <mode value="target"/>
    </input>
    <rule>
      <name value="SourceObservationToTarget"/>
      <source>
        <context value="src"/>
        <variable value="sourceObservation"/>
        <condition value="(src is Observation)"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
      </target>
      <dependent>
        <name value="MapFromObservation"/>
        <variable value="src"/>
        <variable value="tgt"/>
      </dependent>
    </rule>
    <rule>
      <name value="SourceConditionToTarget"/>
      <source>
        <context value="src"/>
        <variable value="sourceCondition"/>
        <condition value="(src is Condition)"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
      </target>
      <dependent>
        <name value="MapFromCondition"/>
        <variable value="src"/>
        <variable value="tgt"/>
      </dependent>
    </rule>
    <rule>
      <name value="SourceProcedureToTarget"/>
      <source>
        <context value="src"/>
        <variable value="sourceProcedure"/>
        <condition value="(src is Procedure)"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
      </target>
      <dependent>
        <name value="MapFromProcedure"/>
        <variable value="src"/>
        <variable value="tgt"/>
      </dependent>
    </rule>
    <rule>
      <name value="SourceImmunizationToTarget"/>
      <source>
        <context value="src"/>
        <variable value="sourceImmunization"/>
        <condition value="(src is Immunization)"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
      </target>
      <dependent>
        <name value="MapFromImmunization"/>
        <variable value="src"/>
        <variable value="tgt"/>
      </dependent>
    </rule>
    <rule>
      <name value="SourceMedicationToTarget"/>
      <source>
        <context value="src"/>
        <variable value="sourceMedication"/>
        <condition value="(src is Medication)"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
      </target>
      <dependent>
        <name value="MapFromMedication"/>
        <variable value="src"/>
        <variable value="tgt"/>
      </dependent>
    </rule>
    <rule>
      <name value="SourceMedStatementToTarget"/>
      <source>
        <context value="src"/>
        <variable value="sourceMedicationStatement"/>
        <condition value="(src is MedicationStatement)"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
      </target>
      <dependent>
        <name value="MapFromMedicationStatement"/>
        <variable value="src"/>
        <variable value="tgt"/>
      </dependent>
    </rule>
    <rule>
      <name value="SourceMedRequestToTarget"/>
      <source>
        <context value="src"/>
        <variable value="sourceMedicationRequest"/>
        <condition value="(src is MedicationRequest)"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
      </target>
      <dependent>
        <name value="MapFromMedicationRequest"/>
        <variable value="src"/>
        <variable value="tgt"/>
      </dependent>
    </rule>
    <rule>
      <name value="SourceMedAdminToTarget"/>
      <source>
        <context value="src"/>
        <variable value="sourceMedicationAdministration"/>
        <condition value="(src is MedicationAdministration)"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
      </target>
      <dependent>
        <name value="MapFromMedicationAdministration"/>
        <variable value="src"/>
        <variable value="tgt"/>
      </dependent>
    </rule>
    <rule>
      <name value="SourceMedDispenseToTarget"/>
      <source>
        <context value="src"/>
        <variable value="sourceMedicationDispense"/>
        <condition value="(src is MedicationDispense)"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
      </target>
      <dependent>
        <name value="MapFromMedicationDispense"/>
        <variable value="src"/>
        <variable value="tgt"/>
      </dependent>
    </rule>
  </group>
  <group>
    <name value="MapFromObservation"/>
    <typeMode value="none"/>
    <input>
      <name value="src"/>
      <type value="sourceObservation"/>
      <mode value="source"/>
    </input>
    <input>
      <name value="tgt"/>
      <type value="targetCondition"/>
      <mode value="target"/>
    </input>
    <rule>
      <name value="SetObservationStatus"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="status"/>
        <transform value="copy"/>
        <parameter>
          <valueString value="active"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="ApplyObsMappings"/>
      <source>
        <context value="src"/>
        <element value="code"/>
        <variable value="code"/>
      </source>
      <target>
        <context value="code"/>
        <contextType value="variable"/>
        <element value="coding"/>
        <variable value="coding"/>
      </target>
      <dependent>
        <name value="ApplyCommonMappings"/>
        <variable value="coding"/>
        <variable value="tgt"/>
      </dependent>
    </rule>
    <rule>
      <name value="SetObsOnsetDateTime"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="onsetDateTime"/>
        <transform value="copy"/>
        <parameter>
          <valueId value="src.effectiveDateTime"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="SetObsOnsetPeriod"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="onsetPeriod"/>
        <transform value="copy"/>
        <parameter>
          <valueId value="src.effectivePeriod"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="SetObsOnsetInstant"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="onsetDateTime"/>
        <transform value="copy"/>
        <parameter>
          <valueId value="src.effectiveInstant"/>
        </parameter>
      </target>
    </rule>
  </group>
  <group>
    <name value="MapFromCondition"/>
    <typeMode value="none"/>
    <input>
      <name value="src"/>
      <type value="sourceCondition"/>
      <mode value="source"/>
    </input>
    <input>
      <name value="tgt"/>
      <type value="targetCondition"/>
      <mode value="target"/>
    </input>
    <rule>
      <name value="SetConditionStatus"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="status"/>
        <transform value="copy"/>
        <parameter>
          <valueString value="active"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="ApplyCondMappings"/>
      <source>
        <context value="src"/>
        <element value="code"/>
        <variable value="code"/>
      </source>
      <target>
        <context value="code"/>
        <contextType value="variable"/>
        <element value="coding"/>
        <variable value="coding"/>
      </target>
      <dependent>
        <name value="ApplyCommonMappings"/>
        <variable value="coding"/>
        <variable value="tgt"/>
      </dependent>
    </rule>
    <rule>
      <name value="SetCondOnsetDateTime"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="onsetDateTime"/>
        <transform value="copy"/>
        <parameter>
          <valueId value="src.onsetDateTime"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="SetCondOnsetAge"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="onsetAge"/>
        <transform value="copy"/>
        <parameter>
          <valueId value="src.onsetAge"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="SetCondOnsetPeriod"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="onsetPeriod"/>
        <transform value="copy"/>
        <parameter>
          <valueId value="src.onsetPeriod"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="SetCondOnsetRange"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="onsetRange"/>
        <transform value="copy"/>
        <parameter>
          <valueId value="src.onsetRange"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="SetCondOnsetString"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="onsetString"/>
        <transform value="copy"/>
        <parameter>
          <valueId value="src.onsetString"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="SetCondAbatementDateTime"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="abatementDateTime"/>
        <transform value="copy"/>
        <parameter>
          <valueId value="src.abatementDateTime"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="SetCondAbatementAge"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="abatementAge"/>
        <transform value="copy"/>
        <parameter>
          <valueId value="src.abatementAge"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="SetCondAbatementPeriod"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="abatementPeriod"/>
        <transform value="copy"/>
        <parameter>
          <valueId value="src.abatementPeriod"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="SetCondAbatementRange"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="abatementRange"/>
        <transform value="copy"/>
        <parameter>
          <valueId value="src.abatementRange"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="SetCondAbatementString"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="abatementString"/>
        <transform value="copy"/>
        <parameter>
          <valueId value="src.abatementString"/>
        </parameter>
      </target>
    </rule>
  </group>
  <group>
    <name value="MapFromProcedure"/>
    <typeMode value="none"/>
    <input>
      <name value="src"/>
      <type value="sourceProcedure"/>
      <mode value="source"/>
    </input>
    <input>
      <name value="tgt"/>
      <type value="targetCondition"/>
      <mode value="target"/>
    </input>
    <rule>
      <name value="SetProcedureStatus"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="status"/>
        <transform value="copy"/>
        <parameter>
          <valueString value="active"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="ApplyProcedureMappings"/>
      <source>
        <context value="src"/>
        <element value="code"/>
        <variable value="code"/>
      </source>
      <target>
        <context value="code"/>
        <contextType value="variable"/>
        <element value="coding"/>
        <variable value="coding"/>
      </target>
      <dependent>
        <name value="ApplyCommonMappings"/>
        <variable value="coding"/>
        <variable value="tgt"/>
      </dependent>
    </rule>
    <rule>
      <name value="SetProcedureOnsetDateTime"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="onsetDateTime"/>
        <transform value="copy"/>
        <parameter>
          <valueId value="src.performedDateTime"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="SetProcedureOnsetAge"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="onsetAge"/>
        <transform value="copy"/>
        <parameter>
          <valueId value="src.performedAge"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="SetProcedureOnsetPeriod"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="onsetPeriod"/>
        <transform value="copy"/>
        <parameter>
          <valueId value="src.performedPeriod"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="SetProcedureOnsetRange"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="onsetRange"/>
        <transform value="copy"/>
        <parameter>
          <valueId value="src.performedRange"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="SetProcedureOnsetString"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="onsetString"/>
        <transform value="copy"/>
        <parameter>
          <valueId value="src.performedString"/>
        </parameter>
      </target>
    </rule>
  </group>
  <group>
    <name value="MapFromImmunization"/>
    <typeMode value="none"/>
    <input>
      <name value="src"/>
      <type value="sourceImmunization"/>
      <mode value="source"/>
    </input>
    <input>
      <name value="tgt"/>
      <type value="targetCondition"/>
      <mode value="target"/>
    </input>
    <rule>
      <name value="SetImmunizationStatus"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="status"/>
        <transform value="copy"/>
        <parameter>
          <valueString value="active"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="ApplyImmunizationMappings"/>
      <source>
        <context value="src"/>
        <element value="vaccineCode"/>
        <variable value="code"/>
      </source>
      <target>
        <context value="code"/>
        <contextType value="variable"/>
        <element value="coding"/>
        <variable value="coding"/>
      </target>
      <dependent>
        <name value="ApplyCommonMappings"/>
        <variable value="coding"/>
        <variable value="tgt"/>
      </dependent>
    </rule>
    <rule>
      <name value="SetImmunizationOnsetDateTime"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="onsetDateTime"/>
        <transform value="copy"/>
        <parameter>
          <valueId value="src.occurrenceDateTime"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="SetImmunizationOnsetString"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="onsetString"/>
        <transform value="copy"/>
        <parameter>
          <valueId value="src.occurrenceString"/>
        </parameter>
      </target>
    </rule>
  </group>
  <group>
    <name value="MapFromMedication"/>
    <typeMode value="none"/>
    <input>
      <name value="src"/>
      <type value="sourceMedication"/>
      <mode value="source"/>
    </input>
    <input>
      <name value="tgt"/>
      <type value="targetCondition"/>
      <mode value="target"/>
    </input>
    <rule>
      <name value="SetMedicationStatus"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="status"/>
        <transform value="copy"/>
        <parameter>
          <valueString value="active"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="ApplyMedicationMappings"/>
      <source>
        <context value="src"/>
        <element value="code"/>
        <variable value="code"/>
      </source>
      <target>
        <context value="code"/>
        <contextType value="variable"/>
        <element value="coding"/>
        <variable value="coding"/>
      </target>
      <dependent>
        <name value="ApplyCommonMappings"/>
        <variable value="coding"/>
        <variable value="tgt"/>
      </dependent>
    </rule>
  </group>
  <group>
    <name value="MapFromMedicationStatement"/>
    <typeMode value="none"/>
    <documentation value="TODO(Dokotela): what about medicationReference?"/>
    <input>
      <name value="src"/>
      <type value="sourceMedicationStatement"/>
      <mode value="source"/>
    </input>
    <input>
      <name value="tgt"/>
      <type value="targetCondition"/>
      <mode value="target"/>
    </input>
    <rule>
      <name value="SetMedStatementStatus"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="status"/>
        <transform value="copy"/>
        <parameter>
          <valueString value="active"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="ApplyMedStatementMappings"/>
      <source>
        <context value="src"/>
        <element value="medicationCodeableConcept"/>
        <variable value="code"/>
      </source>
      <target>
        <context value="code"/>
        <contextType value="variable"/>
        <element value="coding"/>
        <variable value="coding"/>
      </target>
      <dependent>
        <name value="ApplyCommonMappings"/>
        <variable value="coding"/>
        <variable value="tgt"/>
      </dependent>
    </rule>
  </group>
  <group>
    <name value="MapFromMedicationRequest"/>
    <typeMode value="none"/>
    <input>
      <name value="src"/>
      <type value="sourceMedicationRequest"/>
      <mode value="source"/>
    </input>
    <input>
      <name value="tgt"/>
      <type value="targetCondition"/>
      <mode value="target"/>
    </input>
    <rule>
      <name value="SetMedRequestStatus"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="status"/>
        <transform value="copy"/>
        <parameter>
          <valueString value="active"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="ApplyMedRequestMappings"/>
      <source>
        <context value="src"/>
        <element value="medicationCodeableConcept"/>
        <variable value="code"/>
      </source>
      <target>
        <context value="code"/>
        <contextType value="variable"/>
        <element value="coding"/>
        <variable value="coding"/>
      </target>
      <dependent>
        <name value="ApplyCommonMappings"/>
        <variable value="coding"/>
        <variable value="tgt"/>
      </dependent>
    </rule>
    <rule>
      <name value="SetMedRequestOnsetDateTime"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="onsetDateTime"/>
        <transform value="copy"/>
        <parameter>
          <valueId value="src.authoredOn"/>
        </parameter>
      </target>
    </rule>
  </group>
  <group>
    <name value="MapFromMedicationAdministration"/>
    <typeMode value="none"/>
    <input>
      <name value="src"/>
      <type value="sourceMedicationAdministration"/>
      <mode value="source"/>
    </input>
    <input>
      <name value="tgt"/>
      <type value="targetCondition"/>
      <mode value="target"/>
    </input>
    <rule>
      <name value="SetMedAdminStatus"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="status"/>
        <transform value="copy"/>
        <parameter>
          <valueString value="active"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="ApplyMedAdminMappings"/>
      <source>
        <context value="src"/>
        <element value="medicationCodeableConcept"/>
        <variable value="code"/>
      </source>
      <target>
        <context value="code"/>
        <contextType value="variable"/>
        <element value="coding"/>
        <variable value="coding"/>
      </target>
      <dependent>
        <name value="ApplyCommonMappings"/>
        <variable value="coding"/>
        <variable value="tgt"/>
      </dependent>
    </rule>
    <rule>
      <name value="SetMedAdminOnsetDateTime"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="onsetDateTime"/>
        <transform value="copy"/>
        <parameter>
          <valueId value="src.effectiveDateTime"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="SetMedAdminOnsetPeriod"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="onsetPeriod"/>
        <transform value="copy"/>
        <parameter>
          <valueId value="src.effectivePeriod"/>
        </parameter>
      </target>
    </rule>
  </group>
  <group>
    <name value="MapFromMedicationDispense"/>
    <typeMode value="none"/>
    <input>
      <name value="src"/>
      <type value="sourceMedicationDispense"/>
      <mode value="source"/>
    </input>
    <input>
      <name value="tgt"/>
      <type value="targetCondition"/>
      <mode value="target"/>
    </input>
    <rule>
      <name value="SetMedDispenseStatus"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="status"/>
        <transform value="copy"/>
        <parameter>
          <valueString value="active"/>
        </parameter>
      </target>
    </rule>
    <rule>
      <name value="ApplyMedDispenseMappings"/>
      <source>
        <context value="src"/>
        <element value="medicationCodeableConcept"/>
        <variable value="code"/>
      </source>
      <target>
        <context value="code"/>
        <contextType value="variable"/>
        <element value="coding"/>
        <variable value="coding"/>
      </target>
      <dependent>
        <name value="ApplyCommonMappings"/>
        <variable value="coding"/>
        <variable value="tgt"/>
      </dependent>
    </rule>
    <rule>
      <name value="SetMedDispenseOnsetDateTime"/>
      <source>
        <context value="src"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="onsetDateTime"/>
        <transform value="copy"/>
        <parameter>
          <valueId value="src.whenHandedOver"/>
        </parameter>
      </target>
    </rule>
  </group>
  <group>
    <name value="ApplyCommonMappings"/>
    <typeMode value="none"/>
    <input>
      <name value="src"/>
      <type value="Coding"/>
      <mode value="source"/>
    </input>
    <input>
      <name value="tgt"/>
      <type value="targetCondition"/>
      <mode value="target"/>
    </input>
    <rule>
      <name value="ApplySNOMEDMappings"/>
      <source>
        <context value="src"/>
        <element value="system"/>
        <variable value="systemValue"/>
        <condition value="systemValue = 'http://snomed.info/sct'"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="code"/>
        <variable value="newCC"/>
        <transform value="create"/>
        <parameter>
          <valueString value="CodeableConcept"/>
        </parameter>
      </target>
      <rule>
        <name value="HandleIndividualSNOMEDCoding"/>
        <source>
          <context value="src"/>
        </source>
        <target>
          <context value="newCC"/>
          <contextType value="variable"/>
          <element value="coding"/>
          <variable value="newCoding"/>
          <transform value="create"/>
          <parameter>
            <valueString value="Coding"/>
          </parameter>
        </target>
        <rule>
          <name value="SetSNOMEDCode370388006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '370388006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="003"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Patient Immunocompromised"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode234336002"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '234336002'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="004"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Hemopoietic stem cell transplant [procedure]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode50711007"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '50711007'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="005"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Viral hepatitis type C [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode77386006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '77386006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="007"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Patient currently pregnant [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode102874004"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '102874004'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="007"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Possible pregnancy [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode255409004"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '255409004'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="007"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Pregnant woman [person]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode413712001"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '413712001'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="009"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Breastfeeding [mother] [observable entity]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode230744007"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '230744007'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="010"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Cerebrospinal fluid leak [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode449840001"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '449840001'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="011"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Cochlear prosthesis in situ [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode43252007"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '43252007'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="011"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Cochlear prosthesis, device [physical object]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode359612003"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '359612003'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="011"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Implantation of cochlear prosthetic device [procedure]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode31323000"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '31323000'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="013"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Severe combined immunodeficiency disease [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode73211009"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '73211009'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="014"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Diabetes mellitus [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode328383001"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '328383001'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="015"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Chronic liver disease [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode19943007"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '19943007'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="015"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Cirrhosis of liver [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode128238001"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '128238001'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="016"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Chronic heart disease [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode42343007"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '42343007'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="016"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Congestive heart failure [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode57809008"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '57809008'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="016"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Myocardial disease [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode12770006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '12770006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="016"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Cyanotic congenital heart disease [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode413839001"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '413839001'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="017"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Chronic lung disease [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode13645005"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '13645005'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="017"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Chronic obstructive lung disease [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode87433001"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '87433001'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="017"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Pulmonary emphysema [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode278971009"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '278971009'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="018"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Hepatitis A Immune [Finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode271511000"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '271511000'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="019"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Hepatitis B Immune [Finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode371111005"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '371111005'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="020"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Measles Immune [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode371112003"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '371112003'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="021"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Mumps Immune [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode278968001"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '278968001'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="022"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Rubella Immune [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode371113008"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '371113008'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="023"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Varicella Immune"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode38907003"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '38907003'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="024"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Varicella [Disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode4740000"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '4740000'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="025"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Herpes Zoster [Disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode86406008"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '86406008'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="026"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Human immunodeficiency virus infection [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode427314002"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '427314002'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="026"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Antiviral therapy [procedure]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode390798007"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '390798007'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="027"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Asthma finding [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode195967001"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '195967001'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="027"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Asthma [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode35327006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '35327006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="028"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Intussusception [morphologic abnormality]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode49723003"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '49723003'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="028"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Intussusception of intestine [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode69776003"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '69776003'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="029"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Acute gastroenteritis [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode56717001"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '56717001'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="031"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Tuberculosis [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode372763006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '372763006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="033"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Amantadine [substance]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode51361008"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '51361008'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="033"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Amantadine [product]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode372532009"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '372532009'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="033"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Rimantadine [substance]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode108712009"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '108712009'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="033"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Rimantadine [product]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode387010007"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '387010007'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="033"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Zanamivir [substance]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode116100000"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '116100000'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="033"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Zanamivir [product]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode412261005"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '412261005'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="033"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Oseltamivir [substance]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode386142008"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '386142008'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="033"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Oseltamivir [product]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode405742008"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '405742008'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="034"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Aspirin therapy finding [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode76102007"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '76102007'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="036"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Male homosexual [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode225531006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '225531006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="036"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Homosexual behavior [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode225516002"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '225516002'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="037"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Multiple sexual contacts [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode228460004"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '228460004'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="037"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Multiple current sexual partners [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode228466005"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '228466005'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="037"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Commitment to sexual relationship [observable entity]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode225517006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '225517006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="038"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Sexual partners [observable entity]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode11723008"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '11723008'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="038"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Contact with [contextual qualifier] [qualifier value]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode165806002"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '165806002'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="038"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Hepatitis B surface antigen positive [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode305489005"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '305489005'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="039"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Under care of genitourinary medicine physician [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode305679000"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '305679000'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="039"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Seen by genitourinary medicine physician [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode8098009"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '8098009'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="039"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Sexually transmitted infectious disease [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode307052004"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '307052004'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="040"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Illicit drug use [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode228366006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '228366006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="040"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Finding relating to drug misuse behavior [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode226034001"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '226034001'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="041"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Injecting drug user [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode228388006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '228388006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="041"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Intravenous drug user  [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode145101000119102"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '145101000119102'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="041"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Intravenous cocaine abuse [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode403746009"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '403746009'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="041"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Skin lesion due to intravenous drug abuse [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode860699005"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '860699005'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="041"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Deep vein thrombosis of lower extremity due to intravenous drug use [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode77176002"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '77176002'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="042"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Smoker [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode228281002"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '228281002'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="043"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Problem drinker [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode7200002"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '7200002'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="043"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Alcoholism [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode159138004"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '159138004'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="050"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Microbiologist [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode14698002"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '14698002'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="050"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Medical microbiologist [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode24932003"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '24932003'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="050"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Exposure to [contextual qualifier] [qualifier value]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode17872004"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '17872004'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="050"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Neisseria meningitidis [organism]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode159138004"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '159138004'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="051"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Microbiologist [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode14698002"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '14698002'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="051"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Medical microbiologist [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode159282002"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '159282002'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="051"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Laboratory technician [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode24932003"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '24932003'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="051"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Exposure to [contextual qualifier] [qualifier value]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode5595000"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '5595000'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="051"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Salmonella Typhi [organism]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode159282002"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '159282002'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="052"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Laboratory technician [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode24932003"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '24932003'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="052"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Exposure to [contextual qualifier] [qualifier value]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode26630006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '26630006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="052"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Yellow fever virus [organism]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode159282002"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '159282002'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="053"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Laboratory technician [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode24932003"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '24932003'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="053"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Exposure to [contextual qualifier] [qualifier value]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode59881000"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '59881000'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="053"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Rabies virus [organism]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode159282002"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '159282002'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="054"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Laboratory technician [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode24932003"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '24932003'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="054"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Exposure to [contextual qualifier] [qualifier value]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode44172002"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '44172002'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="054"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Human poliovirus [organism]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode223366009"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '223366009'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="055"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Healthcare professional [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode223366009"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '223366009'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="056"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Healthcare professional [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode24932003"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '24932003'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="056"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Exposure to [contextual qualifier] [qualifier value]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode44172002"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '44172002'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="056"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Human poliovirus [organism]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode26369006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '26369006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="057"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Public health nurse [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode68867008"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '68867008'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="057"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Public health dentist [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode307969004"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '307969004'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="057"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Public health officer [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode56466003"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '56466003'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="057"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Public health physician [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode56079002"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '56079002'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="057"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Public health veterinarian [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode60008001"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '60008001'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="057"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Public health nutritionist [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode24932003"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '24932003'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="057"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Exposure to [contextual qualifier] [qualifier value]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode87612001"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '87612001'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="057"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Blood [substance]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode32457005"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '32457005'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="057"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Body fluid [substance]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode223366009"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '223366009'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="059"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Healthcare professional [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode158942005"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '158942005'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="059"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Residential child care worker [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode158939004"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '158939004'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="059"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Child care officer [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode73851001"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '73851001'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="059"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Plumber [general] [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode160157004"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '160157004'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="059"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Sewerman [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode266006009"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '266006009'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="059"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Food/drink processor [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode274272004"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '274272004'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="059"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Catering services occupation [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode160133004"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '160133004'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="059"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Packer - food/garden produce [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode265940000"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '265940000'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="060"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Animal health occupation [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode159091009"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '159091009'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="061"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Trainer - performing animals [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode24932003"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '24932003'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="062"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Exposure to [contextual qualifier] [qualifier value]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode59881000"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '59881000'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="062"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Rabies virus [organism]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode65853000"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '65853000'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="063"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Student [occupation]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode257561002"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '257561002'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="063"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Further education establishment [environment]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode90688005"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '90688005'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="066"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Chronic renal failure syndrome [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode20078004"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '20078004'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="068"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Substance abuse treatment center [environment]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode257656006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '257656006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="069"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Penal institution [environment]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode410519009"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '410519009'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="070"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="At risk context [qualifier value]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode443684005"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '443684005'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="070"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Disease outbreak [event]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode11723008"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '11723008'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="071"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Contact with [contextual qualifier] [qualifier value]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode165806002"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '165806002'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="071"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Hepatitis B surface antigen positive [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode170484009"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '170484009'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="072"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Typhoid carrier [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode12271241000119109"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '12271241000119109'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="075"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Transgender identify [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode84757009"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '84757009'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="076"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Epilepsy [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode192711008"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '192711008'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="079"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Post diphtheria vaccination encephalitis [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode192710009"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '192710009'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="079"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Post tetanus vaccination encephalitis [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode192712001"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '192712001'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="079"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Post pertussis vaccination encephalitis [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode293104008"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '293104008'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="080"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Vaccines adverse reaction [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode293117006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '293117006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="081"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Poliomyelitis vaccine adverse reaction [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode451301000124103"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '451301000124103'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="082"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Adverse reaction caused by Japanese encephalitis virus vaccine [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode429301000124101"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '429301000124101'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="083"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Adverse reaction to rotavirus vaccine [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode293122006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '293122006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="084"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Typhoid vaccine adverse reaction [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode420113004"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '420113004'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="085"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Influenza virus vaccine adverse reaction [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode293115003"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '293115003'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="086"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Pertussis vaccine adverse reaction [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode219085007"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '219085007'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="087"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Adverse reaction to diphtheria vaccine [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode219084006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '219084006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="088"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Adverse reaction to tetanus vaccine [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode451331000124106"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '451331000124106'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="089"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Adverse reaction caused by varicella virus live vaccine [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode429311000124103"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '429311000124103'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="090"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Adverse reaction to human papillomavirus vaccine [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode219096004"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '219096004'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="091"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Adverse reaction to measles vaccine [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode293114004"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '293114004'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="092"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Mumps vaccine adverse reaction [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode293119009"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '293119009'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="093"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Rubella vaccine adverse reaction [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode293116002"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '293116002'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="094"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Pneumococcal vaccine adverse reaction [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode2219088009"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '2219088009'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="095"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Adverse reaction to meningococcal vaccine [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode451111000124103"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '451111000124103'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="095"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Adverse reaction caused by meningococcal conjugate vaccine [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode293126009"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '293126009'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="096"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Hepatitis A vaccine adverse reaction [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode293110008"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '293110008'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="097"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Hepatitis B vaccine adverse reaction [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode293127000"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '293127000'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="098"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Haemophilus influenzae Type B vaccine adverse reaction [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode219095000"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '219095000'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="099"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Adverse reaction to yellow fever vaccine [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode451291000124104"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '451291000124104'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="100"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Adverse reaction caused by zoster vaccine [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode213020009"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '213020009'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="101"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Egg protein allergy [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode91930004"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '91930004'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="101"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Allergy to eggs [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode293309006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '293309006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="102"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Gelatin adverse reaction [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode294847001"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '294847001'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="102"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Gelatin allergy [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode300916003"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '300916003'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="104"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Latex allergy [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode441593005"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '441593005'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="104"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Anaphylaxis due to latex [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode419522004"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '419522004'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="106"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Gentamycin sensitivity [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode420094007"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '420094007'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="106"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Gentamicin adverse reaction [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode294469003"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '294469003'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="106"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Gentamicin allergy [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode294468006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '294468006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="107"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Neomycin allergy [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode292927007"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '292927007'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="107"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Neomycin adverse reaction [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode294466005"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '294466005'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="108"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Streptomycin allergy [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode292925004"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '292925004'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="108"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Streptomycin adverse reaction [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode294530006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '294530006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="109"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Polymyxin B allergy [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode292992006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '292992006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="109"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Polymyxin B adverse reaction [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode703936006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '703936006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="110"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Allergy to yeast [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode293118001"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '293118001'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="113"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Rabies vaccine adverse reaction [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode46177005"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '46177005'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="114"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="End stage renal disease [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode64520006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '64520006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="115"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Protamine sulfate [substance]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode294278007"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '294278007'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="115"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Protamine allergy [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode451281000124102"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '451281000124102'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="116"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Adverse reaction caused by meningococcal group B vaccine [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode219082005"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '219082005'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="119"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Adverse reaction caused by cholera vaccine [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode32911000"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '32911000'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="121"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Homeless [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode116859006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '116859006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="132"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Transfusion of blood product [procedure]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode116859006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '116859006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="133"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Transfusion of blood product [procedure]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode116859006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '116859006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="134"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Transfusion of blood product [procedure]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode13569004"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '13569004'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="135"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Transfusion of plasma [procedure]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode12719002"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '12719002'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="135"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Platelet transfusion [procedure]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode65880007"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '65880007'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="145"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="X-linked agammaglobulinemia [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode23238000"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '23238000'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="145"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Common variable agammaglobulinemia [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode190979003"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '190979003'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="146"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Selective immunoglobulin A deficiency [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode123785006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '123785006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="146"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Immunoglobulin G subclass deficiency [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode31323000"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '31323000'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="147"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Severe combined immunodeficiency disease [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode77128003"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '77128003'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="147"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DiGeorge sequence [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode77128003"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '77128003'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="148"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DiGeorge sequence [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode36070007"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '36070007'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="148"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Wiskott-Aldrich syndrome [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode68504005"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '68504005'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="148"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Ataxia-telangiectasia syndrome [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode24743004"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '24743004'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="150"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Complement deficiency disease [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode24743004"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '24743004'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="151"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Complement deficiency disease [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode81166004"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '81166004'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="151"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Properdin deficiency disease [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode234605000"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '234605000'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="151"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Factor B deficiency [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode387759001"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '387759001'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="152"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Chronic granulomatous disease [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode77358003"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '77358003'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="153"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Congenital leukocyte adherence deficiency [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode234433009"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '234433009'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="153"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Myeloperoxidase deficiency [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode62479008"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '62479008'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="154"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Acquired immune deficiency syndrome [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode62479008"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '62479008'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="155"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Acquired immune deficiency syndrome [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode77465005"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '77465005'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="157"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Transplantation [procedure]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode313039003"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '313039003'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="157"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Solid organ transplant [procedure]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode86553008"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '86553008'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="158"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Immunosuppressive therapy [procedure]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode53438000"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '53438000'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="159"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Radiation therapy procedure or service [procedure]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode707147002"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '707147002'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="160"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Asplenia [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode709044004"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '709044004'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="161"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Chronic kidney disease [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode52254009"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '52254009'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="167"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Nephrotic syndrome [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode367336001"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '367336001'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="168"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Chemotherapy [procedure]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode213017001"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '213017001'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="169"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Sexual abuse [event]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode422608009"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '422608009'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="169"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Sexual assault [finding"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode248110007"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '248110007'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="169"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Sexual assault [event]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode248986005"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '248986005'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="170"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Estimated date of conception [observable entity]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode451291000124104"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '451291000124104'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="172"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Adverse reaction caused by zoster vaccine [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode93143009"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '93143009'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="178"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Leukemia, disease [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode399600009"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '399600009'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="179"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Lymphoma [finding]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode118599009"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '118599009'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="180"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Hodgkin's disease [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode109989006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '109989006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="181"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Multiple myeloma [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode86406008"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '86406008'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="186"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Human immunodeficiency virus infection [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode1156961008"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '1156961008'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="191"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Chimeric antigen receptor T-cell immunotherapy [procedure]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode363346000"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '363346000'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="198"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Malignant neoplastic disease [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode233703007"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '233703007'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="199"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Interstitial lung disease [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode190905008"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '190905008'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="200"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="cystic fibrosis [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode70995007"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '70995007'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="201"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Pulmonary hypertension [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode52448006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '52448006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="202"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Dimensia [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode41040004"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '41040004'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="203"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Complete trisomy 21 syndrome [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode40108008"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '40108008'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="205"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Thalassemia [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode62914000"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '62914000'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="206"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Cerebrovascular disease [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode13645005"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '13645005'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="214"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Chronic obstructive lung disease [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode87433001"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '87433001'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="215"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Pulmonary emphysema [disorder]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetSNOMEDCode413490006"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '413490006'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="245"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="American Indian or Alaska Native [racial group]"/>
            </parameter>
          </target>
        </rule>
      </rule>
    </rule>
    <rule>
      <name value="ApplyCVXMappings"/>
      <source>
        <context value="src"/>
        <element value="system"/>
        <variable value="systemValue"/>
        <condition value="systemValue = 'http://hl7.org/fhir/sid/cvx'"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="code"/>
        <variable value="newCC"/>
        <transform value="create"/>
        <parameter>
          <valueString value="CodeableConcept"/>
        </parameter>
      </target>
      <rule>
        <name value="HandleIndividualCVXCoding"/>
        <source>
          <context value="src"/>
        </source>
        <target>
          <context value="newCC"/>
          <contextType value="variable"/>
          <element value="coding"/>
          <variable value="newCoding"/>
          <transform value="create"/>
          <parameter>
            <valueString value="Coding"/>
          </parameter>
        </target>
        <rule>
          <name value="SetCVXCode02"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '02'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="081"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="OPV"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode10"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '10'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="081"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="IPV"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode89"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '89'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="081"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Polio, unspecified formulation"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode110"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '110'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="081"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-HepB-IPV"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode120"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '120'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="081"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-Hib-IPV"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode130"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '130'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="081"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-IPV"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode132"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '132'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="081"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-IPV-Hib-HepB, Historical"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode146"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '146'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="081"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-IPV-Hib-HepB"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode39"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '39'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="082"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Japanese Encephalitis, MB"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode134"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '134'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="082"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Japanese Encephalitis, VC"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode129"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '129'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="082"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Japanese Encephalitis, unspecified"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode116"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '116'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="083"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Rotavirus, pentavalent"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode122"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '122'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="083"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Rotavirus, unspecified formulation"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode74"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '74'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="083"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Rotavirus, tetravalent"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode119"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '119'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="083"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Rotavirus, monovalent"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode101"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '101'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="084"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Typhoid capsular polysaccharide"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode25"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '25'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="084"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Typhoid oral, live, attenuated"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode41"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '41'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="084"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Typhoid, parenteral"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode53"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '53'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="084"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Typhoid, parenteral, AKD [U.S. military]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode91"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '91'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="084"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Typhoid, unspecified formulation"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode15"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '15'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="085"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Influenza, split incl. purified surface antigen"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode16"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '16'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="085"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Influenza, whole"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode88"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '88'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="085"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Influenza, Unspecified"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode111"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '111'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="085"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Influenza, live, intranasal"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode135"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '135'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="085"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Influenza, high dose seasonal"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode140"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '140'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="085"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Influenza, injectable preservative free"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode141"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '141'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="085"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Influenza, injectable"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode144"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '144'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="085"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Influenza, intradermal, preservative free"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode149"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '149'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="085"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="influenza, live, intranasal, quadrivalent"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode150"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '150'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="085"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="influenza, injectable, quadrivalent, preservative free"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode151"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '151'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="085"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="influenza nasal, unspecified formulation"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode153"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '153'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="085"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Influenza, injectable, MDCK, preservative free"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode155"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '155'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="085"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="influenza, recombinant, injectable, preservative free"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode158"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '158'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="085"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Influenza, injectable, quadrivalent"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode161"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '161'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="085"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Influenza, injectable, quadrivalent, preservative free, peds"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode166"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '166'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="085"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Influenza, intradermal, quadrivalent, preservative free"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode01"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '01'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="086"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTP"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="086"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode22"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '22'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="086"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTP-Hib"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode50"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '50'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="086"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-Hib"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode102"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '102'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="086"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTP-Hib-HepB"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode106"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '106'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="086"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP, 5 pertussis antigens"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode107"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '107'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="086"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP, Unspecified Formulation"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode110"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '110'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="086"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-HepB-IPV"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode115"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '115'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="086"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Tdap"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode120"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '120'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="086"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-Hib-IPV"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode130"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '130'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="086"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-IPV"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode132"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '132'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="086"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-IPV-Hib-HepB,historical"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode146"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '146'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="086"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-IPV-Hib-HepB"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode01"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '01'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="087"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTP"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode09"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '09'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="087"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Td - Adult Adsorbed"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="087"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode22"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '22'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="087"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTP-Hib"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode28"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '28'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="087"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DT - Pediatric"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode50"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '50'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="087"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-Hib"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode102"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '102'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="087"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTP-Hib-HepB"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode106"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '106'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="087"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP, 5 pertussis antigens"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode107"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '107'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="087"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP, Unspecified Formulation"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode110"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '110'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="087"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-HepB-IPV"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode113"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '113'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="087"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Td p-free"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode115"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '115'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="087"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Tdap"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode120"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '120'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="087"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-Hib-IPV"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode130"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '130'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="087"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-IPV"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode132"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '132'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="087"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-IPV-Hib-HepB,historical"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode138"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '138'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="087"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Td - Adult"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode139"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '139'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="087"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Td - Adult Unspecified Formulation"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode146"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '146'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="087"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-IPV-Hib-HepB"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode01"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '01'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="088"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTP"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode09"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '09'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="088"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Td - Adult Adsorbed"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="088"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode22"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '22'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="088"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTP-Hib"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode28"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '28'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="088"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DT - Pediatric"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode35"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '35'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="088"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="TT"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode50"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '50'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="088"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-Hib"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode102"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '102'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="088"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTP-Hib-HepB"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode106"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '106'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="088"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP, 5 pertussis antigens"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode107"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '107'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="088"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP, Unspecified Formulation"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode110"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '110'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="088"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-HepB-IPV"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode113"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '113'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="088"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Td p-free"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode115"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '115'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="088"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Tdap"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode120"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '120'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="088"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-Hib-IPV"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode130"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '130'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="088"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-IPV"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode132"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '132'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="088"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-IPV-Hib-HepB,historical"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode138"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '138'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="088"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Td - Adult"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode139"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '139'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="088"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Td - Adult Unspecified Formulation"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode146"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '146'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="088"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-IPV-Hib-HepB"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode21"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '21'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="089"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Varicella"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode94"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '94'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="089"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="MMRV"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode121"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '121'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="089"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Zoster"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode62"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '62'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="090"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="4vHPV"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode118"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '118'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="090"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="2vHPV"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode137"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '137'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="090"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="HPV Unspecified"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode165"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '165'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="090"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="9vHPV"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode03"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '03'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="091"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="MMR"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode04"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '04'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="091"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Measles/Rubella"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode05"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '05'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="091"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Measles"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode94"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '94'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="091"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="MMRV"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode03"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '03'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="092"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="MMR"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode07"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '07'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="092"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Mumps"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode38"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '38'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="092"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Rubella/Mumps"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode94"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '94'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="092"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="MMRV"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode03"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '03'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="093"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="MMR"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode04"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '04'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="093"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Measles/Rubella"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode06"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '06'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="093"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Rubella"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode38"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '38'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="093"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Rubella/Mumps"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode94"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '94'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="093"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="MMRV"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode133"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '133'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="094"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="PCV13"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode100"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '100'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="094"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="PCV7"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode33"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '33'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="094"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="PPSV23"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode109"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '109'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="094"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Pneumococcal, unspecified formulation"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode152"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '152'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="094"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Pneumococcal Conjugate, unspecified formulation"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode32"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '32'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="095"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Meningococcal, MPSV4"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode108"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '108'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="095"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Meningococcal ACWY, unspecified"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode114"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '114'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="095"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Meningococcal, MCV4P"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode136"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '136'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="095"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Meningococcal, MCV4O"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode147"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '147'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="095"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="MCV4, unspecified"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode148"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '148'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="095"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Meningococcal C/Y-HIB PRP"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode167"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '167'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="095"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Meningococcal, unknown serogroups"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode52"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '52'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="096"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Hep A, adult"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode83"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '83'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="096"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Hep A, ped/adol, 2 dose"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode84"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '84'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="096"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Hep A, ped/adol, 3 dose"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode85"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '85'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="096"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Hep A, Unspecified"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode104"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '104'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="096"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="HepA-HepB"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode08"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '08'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="097"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Hep B, Adol/peds"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode42"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '42'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="097"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Hep B, Adol/high risk infant"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode43"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '43'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="097"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Hep B, Adult"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode44"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '44'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="097"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Hep B, Dialysis"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode45"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '45'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="097"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Hep B, Unspecified Formulation"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode51"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '51'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="097"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Hib-HepB"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode102"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '102'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="097"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-Hib-HepB"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode104"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '104'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="097"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="HepA-HepB"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode110"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '110'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="097"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-HepB-IPV"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode132"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '132'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="097"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-IPV-Hib-HepB, historical"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode146"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '146'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="097"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-IPV-Hib-HepB"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode17"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '17'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="098"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Hib unspecified formulation"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode22"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '22'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="098"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTP-Hib"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode46"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '46'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="098"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="PRP-D"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode47"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '47'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="098"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="HbOC"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode48"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '48'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="098"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="PRP-T"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode49"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '49'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="098"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="PRP-OMP"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode50"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '50'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="098"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP/Hib"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode51"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '51'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="098"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Hib-HepB"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode102"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '102'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="098"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTP-Hib-HepB"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode120"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '120'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="098"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-IPV/Hib"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode132"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '132'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="098"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-IPV-Hib-HepB,historical"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode146"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '146'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="098"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="DTaP-IPV-Hib-HepB"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode148"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '148'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="098"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Hib-MenCY-TT"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode25"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '25'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="099"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Yellow Fever"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode121"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '121'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="100"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Zoster live"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode18"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '18'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="113"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Rabies, intramuscular injection"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode40"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '40'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="113"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Rabies, intradermal injection"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode90"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '90'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="113"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Rabies, unspecified formulation"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode162"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '162'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="116"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Meningococcal B, recombinant"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode163"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '163'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="116"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Meningococcal B, OMV"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode164"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '164'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="116"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Meningococcal B, unspecified"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode26"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '26'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="119"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="cholera, unspecified formulation"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode172"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '172'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="119"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="cholera, WC-rBS"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode173"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '173'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="119"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="cholera, BivWC"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode174"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '174'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="119"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="cholera, live attenuated"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode208"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '208'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="122"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="COVID-19, mRNA, LNP-S, PF, 30 mcg/0.3 mL dose"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode13"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '13'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="125"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Tetanus immune globulin"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode154"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '154'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="126"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Hepatitis A immune globulin"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode30"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '30'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="127"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Hepatitis B immune globulin"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode34"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '34'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="128"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Rabies immune globulin"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode36"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '36'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="129"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Varicella zoster immune globulin"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode187"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '187'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="172"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Zoster subunit"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCodenonUS"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'non-US'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="252"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Tick-borne encephalitis vaccine"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode222"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '222'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="252"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Tick-borne encephalitis, unspecified"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode223"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '223'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="252"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Tick-borne encephalitis, inactivated, PF, 0.25mL"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCVXCode224"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = '224'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="252"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Tick-borne encephalitis, inactivated, PF, 0.5mL"/>
            </parameter>
          </target>
        </rule>
      </rule>
    </rule>
    <rule>
      <name value="ApplyCDCPHINVSMappings"/>
      <source>
        <context value="src"/>
        <element value="system"/>
        <variable value="systemValue"/>
        <condition value="systemValue = 'http://phinvads.cdc.gov'"/>
      </source>
      <target>
        <context value="tgt"/>
        <contextType value="variable"/>
        <element value="code"/>
        <variable value="newCC"/>
        <transform value="create"/>
        <parameter>
          <valueString value="CodeableConcept"/>
        </parameter>
      </target>
      <rule>
        <name value="HandleIndividualCDCPHINVSCoding"/>
        <source>
          <context value="src"/>
        </source>
        <target>
          <context value="newCC"/>
          <contextType value="variable"/>
          <element value="coding"/>
          <variable value="newCoding"/>
          <transform value="create"/>
          <parameter>
            <valueString value="Coding"/>
          </parameter>
        </target>
        <rule>
          <name value="SetCDCPHINVSCodeVXC27"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC27'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="003"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Immunodeficiency due to any cause"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC21"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC21'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="028"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Previous history of intussusception"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC22"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC22'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="079"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Encephalopathy within 7 days of previous dose of DTP or DTaP"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="080"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="081"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="082"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="083"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="084"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="085"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="086"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="087"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="088"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="089"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="090"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="091"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="092"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="093"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="094"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="095"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="096"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="097"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="098"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="099"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="100"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC18"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC18'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="110"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="Allergy to baker's yeast [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC17"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC17'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="111"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy [anaphylactic] to 2-phenoxyethanol"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="113"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="116"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="119"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="122"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="172"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
        <rule>
          <name value="SetCDCPHINVSCodeVXC20"/>
          <source>
            <context value="src"/>
            <element value="code"/>
            <variable value="codeValue"/>
            <condition value="codeValue = 'VXC20'"/>
          </source>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="system"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="http://fhirfli.dev/fhir/ig/cicada/CodeSystem/vaccine-observation-codes"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="code"/>
            <transform value="copy"/>
            <parameter>
              <valueString value="252"/>
            </parameter>
          </target>
          <target>
            <context value="newCoding"/>
            <contextType value="variable"/>
            <element value="display"/>
            <transform value="copy"/>
            <parameter>
              <valueString
                           value="Allergy to previous dose of this vaccine or to any of its unlisted vaccine components [anaphylactic]"/>
            </parameter>
          </target>
        </rule>
      </rule>
    </rule>
  </group>
</StructureMap>