diff --git a/hapi-fhir-jpaserver-cql/src/test/java/ca/uhn/fhir/cql/r4/CqlMeasureEvaluationR4ImmunizationTest.java b/hapi-fhir-jpaserver-cql/src/test/java/ca/uhn/fhir/cql/r4/CqlMeasureEvaluationR4ImmunizationTest.java index 6bface1b4b5..cb3f900e386 100644 --- a/hapi-fhir-jpaserver-cql/src/test/java/ca/uhn/fhir/cql/r4/CqlMeasureEvaluationR4ImmunizationTest.java +++ b/hapi-fhir-jpaserver-cql/src/test/java/ca/uhn/fhir/cql/r4/CqlMeasureEvaluationR4ImmunizationTest.java @@ -2,234 +2,64 @@ package ca.uhn.fhir.cql.r4; import ca.uhn.fhir.cql.BaseCqlR4Test; import ca.uhn.fhir.cql.r4.provider.MeasureOperationsProvider; -import ca.uhn.fhir.util.BundleUtil; -import org.apache.commons.collections.map.HashedMap; -import org.hl7.fhir.instance.model.api.IBaseResource; -import org.hl7.fhir.r4.model.Base64BinaryType; -import org.hl7.fhir.r4.model.Bundle; -import org.hl7.fhir.r4.model.DateTimeType; import org.hl7.fhir.r4.model.IdType; -import org.hl7.fhir.r4.model.Library; -import org.hl7.fhir.r4.model.Measure; import org.hl7.fhir.r4.model.MeasureReport; import org.junit.jupiter.api.Test; -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import java.io.IOException; -import java.nio.charset.StandardCharsets; -import java.util.Base64; -import java.util.Date; -import java.util.List; -import java.util.Map; import static org.junit.jupiter.api.Assertions.assertEquals; /** - * This testing class and the used resources are work in progress and will likely be subject to change. + * This class tests the functionality of $evaluate-measure for the ImmunizationStatus use case + * A full documentation of this use case as well as more information on the test data that is used can be found here: + * https://gitlab.com/smilecdr-open-source/immunization-cql-poc/-/blob/main/documentation/Immunization-CQL-Guide.md */ public class CqlMeasureEvaluationR4ImmunizationTest extends BaseCqlR4Test { - Logger ourLog = LoggerFactory.getLogger(CqlMeasureEvaluationR4ImmunizationTest.class); - @Autowired - MeasureOperationsProvider myMeasureOperationsProvider; + @Autowired + MeasureOperationsProvider myMeasureOperationsProvider; - private static final String MY_TESTBUNDLE_MMR_SIMPLE = "r4/immunization/testdata-bundles/Testbundle_3Patients_1MMRVaccinated_1PVaccinated_1NoVaccination.json"; - private static final String MY_TESTBUNDLE_MMR_INCL_PRACTITIONER = "r4/immunization/testdata-bundles/Testbundle_Patients_By_Practitioner.json"; + private static final String MY_FHIR_COMMON = "r4/immunization/Fhir_Common.json"; + private static final String MY_FHIR_HELPERS = "r4/immunization/Fhir_Helper.json"; + private static final String MY_TEST_DATA = "r4/immunization/Patients_Encounters_Immunizations_Practitioners.json"; + private static final String MY_IMMUNIZATION_CQL_RESOURCES = "r4/immunization/Measure_Library_Ontario_ImmunizationStatus.json"; + private static final String MY_VALUE_SETS = "r4/immunization/Terminology_ValueSets.json"; - - //overall testing function including bundle manipulation and evaluation and assertion - protected void testMeasureScoresByBundleAndCQLLocation(String theBundleLocation, String theCQLMeasureLocation, String thePractitionerRef, Map theExpectedScores) throws IOException { - - //load provided bundle and replace placeholder CQL content of Library with CQL content of provided file location - Bundle bundle = loadBundleFromFileLocationAndManipulate(theBundleLocation, theCQLMeasureLocation); - //we require at least one MeasureReport in the bundle - List measureReports = findMeasureReportsOrThrowException(bundle); - - //evaluate each measure report of the provided bundle - for (MeasureReport report : measureReports) { - double expectedScore = theExpectedScores.get(report.getIdentifierFirstRep().getValue()); - evaluateSingleReport(report, thePractitionerRef, expectedScore); - } - } - - //overall testing function including bundle manipulation and evaluation and assertion - protected void testMeasureScoresByBundleAndCQLLocation(String theBundleLocation, String theCQLMeasureLocation, String thePractitionerRef, double theExpectedScore) throws IOException { - //load provided bundle and replace placeholder CQL content of Library with CQL content of provided file location - Bundle bundle = loadBundleFromFileLocationAndManipulate(theBundleLocation, theCQLMeasureLocation); - //we require at least one MeasureReport in the bundle - List measureReports = findMeasureReportsOrThrowException(bundle); - - //evaluate each measure report of the provided bundle - for (MeasureReport report : measureReports) { - evaluateSingleReport(report, thePractitionerRef, theExpectedScore); - } + //compare 2 double values to assert no difference between expected and actual measure score + protected void assertMeasureScore(MeasureReport theReport, double theExpectedScore) { + //find the predefined expected score by looking up the report identifier + double epsilon = 0.000001d; + double actualScore = theReport.getGroupFirstRep().getMeasureScore().getValue().doubleValue(); + assertEquals(theExpectedScore, actualScore, epsilon); } - protected void evaluateSingleReport (MeasureReport theReport, String thePractitionerRef, double theExpectedScore) { - MeasureReport actualEvaluatedReport = this.evaluateMeasure(theReport, thePractitionerRef); - ourLog.info("Score of evaluation: {}", actualEvaluatedReport.getGroupFirstRep().getMeasureScore().getValue()); - assertMeasureScore(actualEvaluatedReport, theExpectedScore); - } - //double compare to assert no difference between expected and actual measure score - protected void assertMeasureScore(MeasureReport theReport, double theExpectedScore) { - //find the predefined expected score by looking up the report identifier - double epsilon = 0.000001d; - double actualScore = theReport.getGroupFirstRep().getMeasureScore().getValue().doubleValue(); - assertEquals(theExpectedScore, actualScore, epsilon); - } + //evaluates a Measure to produce one certain MeasureReport + protected MeasureReport evaluateMeasureByMeasure(String theMeasureId, String thePractitionerRef, String thePatientRef) { - //evaluates a Measure to produce one certain MeasureReport - protected MeasureReport evaluateMeasure(MeasureReport theMeasureReport, String thePractitionerRef) { - String measureId = this.getMeasureId(theMeasureReport); - String patientId = null; - //only when the type of the MeasureReport is set to 'individual', there is a patient required as a subject (i.e. not for a 'summary' report) - if (theMeasureReport.getSubject().getReference() != null) { - patientId = this.getPatientId(theMeasureReport); - } - String periodStart = this.getPeriodStart(theMeasureReport); - String periodEnd = this.getPeriodEnd(theMeasureReport); - String measureReportIdentifier = theMeasureReport.getIdentifierFirstRep().getValue(); - String measureReportType = theMeasureReport.getTypeElement().getValueAsString(); - - //only when the type of the MeasureReport is set to 'individual', there is a patient required as a subject (i.e. not for a 'summary' report) - if (patientId == null) { - ourLog.info("Evaluating Measure '{}' for MeasureReport '{}' of type '{}': [{} - {}]", measureId, measureReportIdentifier, measureReportType, periodStart, periodEnd); - } else { - ourLog.info("Evaluating Measure '{}' for MeasureReport '{}' of type '{}' for Patient '{}' [{} - {}]", measureId, measureReportIdentifier, measureReportType, patientId, periodStart, periodEnd); - } - - return this.myMeasureOperationsProvider.evaluateMeasure(new IdType("Measure", measureId), - periodStart, periodEnd, null, - - "subject", patientId, - - null, thePractitionerRef, null, null, null, null, myRequestDetails); - } - - //helper function to manipulate a test bundle - //loads a bundle from theBundleLocation: requirement: containing 1 exact FHIR Measure - //finds the relevant measure, determines the related Library and replaces the CQL content of that Library with a separate CQL file - //the CQL file defined by theCQLLocation contains regular CQL text and is automatically transformed into base64 content and automatically replaces the Library content - //this process keeps manual testing simple, as the only place to change the CQL logic is by adding a new CQL file (containing no test resources and no other content) and writing a unit test with that CQL file path - protected Bundle loadBundleFromFileLocationAndManipulate(String theBundleLocation, String theCQLLocation) throws IOException { - Bundle bundle = parseBundle(theBundleLocation); - //manipulate Bundle - Measure measure = findExactlyOneMeasuresOrThrowException(bundle); - Library libraryToManipulate = findLibraryById(bundle, measure.getLibrary().get(0).getValue()); - replaceCQLOfLibrary(libraryToManipulate, theCQLLocation); - loadBundle(bundle, myRequestDetails); - return bundle; - } - - //requirement: test bundle must contain exactly one Measure resource - protected Measure findExactlyOneMeasuresOrThrowException(Bundle theBundle) { - List measures = BundleUtil.toListOfResourcesOfType(myFhirContext, theBundle, Measure.class); - if (measures == null || measures.isEmpty()) { - throw new IllegalArgumentException(String.format("No measures found for Bundle %s", theBundle.getId())); - } else if (measures.size() > 1) { - throw new IllegalArgumentException(String.format("Too many measures found for Bundle %s. Only one measure is allowed for this automated testing setup.", theBundle.getId())); - } - return measures.get(0); - } - - //requirement: test bundle must contain at least one MeasureReport resource - protected List findMeasureReportsOrThrowException(Bundle theBundle) { - List reports = BundleUtil.toListOfResourcesOfType(myFhirContext, theBundle, MeasureReport.class); - if (reports == null || reports.isEmpty()) { - throw new IllegalArgumentException(String.format("No measure reports found for Bundle %s", theBundle.getId())); - } - return reports; - } - - //returns a Library resource of a bundle by a given ID - protected Library findLibraryById(Bundle theBundle, String theLibraryId) { - List libraries = BundleUtil.toListOfResourcesOfType(myFhirContext, theBundle, Library.class); - return libraries.stream().filter(lib -> lib.getId().equals(theLibraryId)).findFirst().orElse(null); - } - - //the provided Library resource only contains a placeholder CQL - //this function replaces this placeholder CQL with the content of a specified file - protected Library replaceCQLOfLibrary(Library theLibrary, String theCQLFileLocation) throws IOException { - String decodedCQLString = stringFromResource(theCQLFileLocation); - - //replace cql in library - String encodedCQLString = Base64.getEncoder().encodeToString(decodedCQLString.getBytes(StandardCharsets.UTF_8)); - Base64BinaryType encodedCQLBinary = new Base64BinaryType(); - encodedCQLBinary.setValueAsString(encodedCQLString); - theLibrary.getContentFirstRep().setDataElement(encodedCQLBinary); - return theLibrary; - } - - // TODO: In R4 the Subject will not necessarily be a Patient. - public String getPatientId(MeasureReport measureReport) { - String[] subjectRefParts = measureReport.getSubject().getReference().split("/"); - String patientId = subjectRefParts[subjectRefParts.length - 1]; - return patientId; - } - - public String getMeasureId(MeasureReport measureReport) { - String[] measureRefParts = measureReport.getMeasure().split("/"); - String measureId = measureRefParts[measureRefParts.length - 1]; - return measureId; - } - - public String getPeriodStart(MeasureReport measureReport) { - Date periodStart = measureReport.getPeriod().getStart(); - if (periodStart != null) { - return toDateString(periodStart); - } - return null; - } - - public String getPeriodEnd(MeasureReport measureReport) { - Date periodEnd = measureReport.getPeriod().getEnd(); - if (periodEnd != null) { - return toDateString(periodEnd); - } - return null; - } - - public String toDateString(Date date) { - return new DateTimeType(date).getValueAsString(); - } - - - @Test - public void test_Immunization_MMR_Individual_Vaccinated() throws IOException { - Map expectedScoresByIdentifier = new HashedMap(); - - //expected result: individual should be in numerator because Patient is MMR vaccinated - expectedScoresByIdentifier.put("measureReportIndividualVaccinatedPatient", 1.0); - //expected result: individual should not be in numerator because Patient is not MMR vaccinated (only Pertussis) - expectedScoresByIdentifier.put("measureReportIndividualNotMMRVaccinatedPatient", 0.0); - //expected result: individual should not be in numerator because Patient is not at all vaccinated (no associated Immmunization resource) - expectedScoresByIdentifier.put("measureReportIndividualNotAtAllVaccinatedPatient", 0.0); - //expected result: summary confirms that 1 out of all 3 patients are MMR immunized - expectedScoresByIdentifier.put("measureReportSummary", 1.0 / 3.0); - - //note: all those CQL files specified as the second parameter produce the exact same outcome with the given test resources provided by the first parameter. - //TODO: tests are dependent and will fail if the order is incorrect. --> clean up tests - this.testMeasureScoresByBundleAndCQLLocation(MY_TESTBUNDLE_MMR_SIMPLE, "r4/immunization/cqls/3-Vaccine-Codes-Defined-By-ValueSet-MMR-Vaccine-Codes.cql", null, expectedScoresByIdentifier); - this.testMeasureScoresByBundleAndCQLLocation(MY_TESTBUNDLE_MMR_SIMPLE, "r4/immunization/cqls/1-Explicit-Vaccine-Codes-From-Any-System.cql", null, expectedScoresByIdentifier); - this.testMeasureScoresByBundleAndCQLLocation(MY_TESTBUNDLE_MMR_SIMPLE, "r4/immunization/cqls/2-Explicit-Vaccine-Codes-And-Systems.cql", null, expectedScoresByIdentifier); - } - - - @Test - public void test_Immunization_ByPractitioner_MMR_Summary() throws IOException { - //half of dreric' s patients (total of 2) are vaccinated, so 1/2 is vaccinated. - this.testMeasureScoresByBundleAndCQLLocation(MY_TESTBUNDLE_MMR_INCL_PRACTITIONER, "r4/immunization/cqls/3-Vaccine-Codes-Defined-By-ValueSet-MMR-Vaccine-Codes.cql", "Practitioner/dreric", 1.0/2.0); - //of drfrank's patients (total of 1), none are vaccinated - this.testMeasureScoresByBundleAndCQLLocation(MY_TESTBUNDLE_MMR_INCL_PRACTITIONER, "r4/immunization/cqls/3-Vaccine-Codes-Defined-By-ValueSet-MMR-Vaccine-Codes.cql", "Practitioner/drfrank", 0.0/1.0); + return this.myMeasureOperationsProvider.evaluateMeasure(new IdType("Measure", theMeasureId), null, null, null, "subject", thePatientRef, null, thePractitionerRef, null, null, null, null, myRequestDetails); } @Test - public void test_Immunization_ByAge() throws IOException { - //be aware that this test will fail eventually, because this patient will at some point become one years old (today - birthdate > 1 year) - //this patient is not yet immunized, because too young. so it won't be counted as a denominator patient and therefore the measure score is corrected to have a higher percentage - //of dreric' s patients, all are vaccinated, because the second patient who is not vaccinated yet doesn't meet the age criteria (denominator), so 1/1 is vaccinated. - this.testMeasureScoresByBundleAndCQLLocation(MY_TESTBUNDLE_MMR_INCL_PRACTITIONER, "r4/immunization/cqls/4-Patients-ByAge.cql", "Practitioner/dreric", 1.0/1.0); - } + public void test_Immunization_Ontario_Schedule() throws IOException { + //given + loadBundle(MY_FHIR_COMMON); + loadBundle(MY_FHIR_HELPERS); + loadBundle(MY_TEST_DATA); + loadBundle(MY_VALUE_SETS); + loadBundle(MY_IMMUNIZATION_CQL_RESOURCES); + + //when + MeasureReport reportBasic = evaluateMeasureByMeasure("ImmunizationStatus", null, null); + MeasureReport reportByPractitioner = evaluateMeasureByMeasure("ImmunizationStatus", "Practitioner/ImmunizationStatus-practitioner-3", null); + MeasureReport reportIndividualImmunized = evaluateMeasureByMeasure("ImmunizationStatus", null, "ImmunizationStatus-1-year-patient-1"); + MeasureReport reportIndividualNotImmunized = evaluateMeasureByMeasure("ImmunizationStatus", null, "ImmunizationStatus-1-year-patient-2"); + + //then + assertMeasureScore(reportBasic, 0.25); + assertMeasureScore(reportByPractitioner, 0.285714); + assertMeasureScore(reportIndividualImmunized, 1.0); + assertMeasureScore(reportIndividualNotImmunized, 0.0); + } } diff --git a/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/Fhir_Common.json b/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/Fhir_Common.json new file mode 100644 index 00000000000..a58a492876e --- /dev/null +++ b/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/Fhir_Common.json @@ -0,0 +1,146 @@ +{ + "resourceType": "Bundle", + "id": "bundle-fhir-common", + "type": "transaction", + "entry": [ + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-c5e300940004", + "resource": { + "resourceType": "Library", + "id": "FHIRCommon", + "extension": [ + { + "url": "http://hl7.org/fhir/us/cqfmeasures/StructureDefinition/cqfm-softwaresystem", + "valueReference": { + "reference": "Device/cqf-tooling" + } + } + ], + "url": "http://content.smilecdr.com/fhir/dqm/Library/FHIRCommon", + "version": "4.0.1", + "name": "FHIRCommon", + "title": "Library - FHIR Common", + "status": "active", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/library-type", + "code": "logic-library" + } + ] + }, + "description": "A Shared library encapsulating valuable common terminologies and functions used in FHIR-based CQL artifacts.", + "jurisdiction": [ + { + "coding": [ + { + "system": "urn:iso:std:iso:3166", + "version": "4.0.1", + "code": "US", + "display": "United States of America" + } + ], + "text": "United States of America" + } + ], + "relatedArtifact": [ + { + "type": "depends-on", + "display": "FHIR model information", + "resource": "http://fhir.org/guides/cqf/common/Library/FHIR-ModelInfo|4.0.1" + }, + { + "type": "depends-on", + "display": "Library FHIRHelpers", + "resource": "http://content.smilecdr.com/fhir/dqm/Library/FHIRHelpers|4.0.1" + }, + { + "type": "depends-on", + "display": "Code system LOINC", + "resource": "http://loinc.org" + }, + { + "type": "depends-on", + "display": "Code system SNOMEDCT", + "resource": "http://snomed.info/sct" + }, + { + "type": "depends-on", + "display": "Code system RoleCode", + "resource": "http://terminology.hl7.org/CodeSystem/v3-RoleCode" + }, + { + "type": "depends-on", + "display": "Code system Diagnosis Role", + "resource": "http://terminology.hl7.org/CodeSystem/diagnosis-role" + }, + { + "type": "depends-on", + "display": "Code system RequestIntent", + "resource": "http://terminology.hl7.org/CodeSystem/request-intent" + }, + { + "type": "depends-on", + "display": "Code system MedicationRequestCategory", + "resource": "http://terminology.hl7.org/CodeSystem/medicationrequest-category" + }, + { + "type": "depends-on", + "display": "Code system ConditionClinicalStatusCodes", + "resource": "http://terminology.hl7.org/CodeSystem/condition-clinical" + }, + { + "type": "depends-on", + "display": "Code system ConditionVerificationStatusCodes", + "resource": "http://terminology.hl7.org/CodeSystem/condition-ver-status" + }, + { + "type": "depends-on", + "display": "Code system AllergyIntoleranceClinicalStatusCodes", + "resource": "http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical" + }, + { + "type": "depends-on", + "display": "Code system AllergyIntoleranceVerificationStatusCodes", + "resource": "http://terminology.hl7.org/CodeSystem/allergyintolerance-verification" + } + ], + "parameter": [ + { + "name": "Patient", + "use": "out", + "min": 0, + "max": "1", + "type": "Patient" + } + ], + "dataRequirement": [ + { + "type": "Patient", + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + } + ], + "content": [ + { + "contentType": "text/cql", + "data": "LyoNCkBhdXRob3I6IEJyeW4gUmhvZGVzDQpAZGVzY3JpcHRpb246IENvbW1vbiB0ZXJtaW5vbG9naWVzIGFuZCBmdW5jdGlvbnMgdXNlZCBpbiBGSElSLWJhc2VkIENRTCBhcnRpZmFjdHMNCiovDQoNCmxpYnJhcnkgRkhJUkNvbW1vbiB2ZXJzaW9uICc0LjAuMScNCg0KdXNpbmcgRkhJUiB2ZXJzaW9uICc0LjAuMScNCg0KaW5jbHVkZSBGSElSSGVscGVycyB2ZXJzaW9uICc0LjAuMScNCg0KY29kZXN5c3RlbSAiTE9JTkMiOiAnaHR0cDovL2xvaW5jLm9yZycNCmNvZGVzeXN0ZW0gIlNOT01FRENUIjogJ2h0dHA6Ly9zbm9tZWQuaW5mby9zY3QnDQpjb2Rlc3lzdGVtICJSb2xlQ29kZSI6ICdodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL3YzLVJvbGVDb2RlJw0KY29kZXN5c3RlbSAiRGlhZ25vc2lzIFJvbGUiOiAnaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9kaWFnbm9zaXMtcm9sZScNCmNvZGVzeXN0ZW0gIlJlcXVlc3RJbnRlbnQiOiAnaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9yZXF1ZXN0LWludGVudCcNCmNvZGVzeXN0ZW0gIk1lZGljYXRpb25SZXF1ZXN0Q2F0ZWdvcnkiOiAnaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9tZWRpY2F0aW9ucmVxdWVzdC1jYXRlZ29yeScNCmNvZGVzeXN0ZW0gIkNvbmRpdGlvbkNsaW5pY2FsU3RhdHVzQ29kZXMiOiAnaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9jb25kaXRpb24tY2xpbmljYWwnDQpjb2Rlc3lzdGVtICJDb25kaXRpb25WZXJpZmljYXRpb25TdGF0dXNDb2RlcyI6ICdodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL2NvbmRpdGlvbi12ZXItc3RhdHVzJw0KY29kZXN5c3RlbSAiQWxsZXJneUludG9sZXJhbmNlQ2xpbmljYWxTdGF0dXNDb2RlcyI6ICdodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL2FsbGVyZ3lpbnRvbGVyYW5jZS1jbGluaWNhbCcNCmNvZGVzeXN0ZW0gIkFsbGVyZ3lJbnRvbGVyYW5jZVZlcmlmaWNhdGlvblN0YXR1c0NvZGVzIjogJ2h0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vYWxsZXJneWludG9sZXJhbmNlLXZlcmlmaWNhdGlvbicNCg0KY29kZSAiQmlydGhkYXRlIjogJzIxMTEyLTgnIGZyb20gIkxPSU5DIiBkaXNwbGF5ICdCaXJ0aCBkYXRlJw0KY29kZSAiRGVhZCI6ICc0MTkwOTkwMDknIGZyb20gIlNOT01FRENUIiBkaXNwbGF5ICdEZWFkJw0KY29kZSAiRVIiOiAnRVInIGZyb20gIlJvbGVDb2RlIiBkaXNwbGF5ICdFbWVyZ2VuY3kgcm9vbScNCmNvZGUgIklDVSI6ICdJQ1UnIGZyb20gIlJvbGVDb2RlIiBkaXNwbGF5ICdJbnRlbnNpdmUgY2FyZSB1bml0Jw0KY29kZSAiQmlsbGluZyI6ICdiaWxsaW5nJyBmcm9tICJEaWFnbm9zaXMgUm9sZSIgZGlzcGxheSAnQmlsbGluZycNCg0KLy8gQ29uZGl0aW9uIENsaW5pY2FsIFN0YXR1cyBDb2RlcyAtIENvbnNpZGVyIHZhbHVlIHNldHMgZm9yIHRoZXNlDQpjb2RlICJhY3RpdmUiOiAnYWN0aXZlJyBmcm9tICJDb25kaXRpb25DbGluaWNhbFN0YXR1c0NvZGVzIg0KY29kZSAicmVjdXJyZW5jZSI6ICdyZWN1cnJlbmNlJyBmcm9tICJDb25kaXRpb25DbGluaWNhbFN0YXR1c0NvZGVzIg0KY29kZSAicmVsYXBzZSI6ICdyZWxhcHNlJyBmcm9tICJDb25kaXRpb25DbGluaWNhbFN0YXR1c0NvZGVzIg0KY29kZSAiaW5hY3RpdmUiOiAnaW5hY3RpdmUnIGZyb20gIkNvbmRpdGlvbkNsaW5pY2FsU3RhdHVzQ29kZXMiDQpjb2RlICJyZW1pc3Npb24iOiAncmVtaXNzaW9uJyBmcm9tICJDb25kaXRpb25DbGluaWNhbFN0YXR1c0NvZGVzIg0KY29kZSAicmVzb2x2ZWQiOiAncmVzb2x2ZWQnIGZyb20gIkNvbmRpdGlvbkNsaW5pY2FsU3RhdHVzQ29kZXMiDQoNCi8vIENvbmRpdGlvbiBWZXJpZmljYXRpb24gU3RhdHVzIENvZGVzIC0gQ29uc2lkZXIgdmFsdWUgc2V0cyBmb3IgdGhlc2UNCmNvZGUgInVuY29uZmlybWVkIjogJ3VuY29uZmlybWVkJyBmcm9tIENvbmRpdGlvblZlcmlmaWNhdGlvblN0YXR1c0NvZGVzDQpjb2RlICJwcm92aXNpb25hbCI6ICdwcm92aXNpb25hbCcgZnJvbSBDb25kaXRpb25WZXJpZmljYXRpb25TdGF0dXNDb2Rlcw0KY29kZSAiZGlmZmVyZW50aWFsIjogJ2RpZmZlcmVudGlhbCcgZnJvbSBDb25kaXRpb25WZXJpZmljYXRpb25TdGF0dXNDb2Rlcw0KY29kZSAiY29uZmlybWVkIjogJ2NvbmZpcm1lZCcgZnJvbSBDb25kaXRpb25WZXJpZmljYXRpb25TdGF0dXNDb2Rlcw0KY29kZSAicmVmdXRlZCI6ICdyZWZ1dGVkJyBmcm9tIENvbmRpdGlvblZlcmlmaWNhdGlvblN0YXR1c0NvZGVzDQpjb2RlICJlbnRlcmVkLWluLWVycm9yIjogJ2VudGVyZWQtaW4tZXJyb3InIGZyb20gQ29uZGl0aW9uVmVyaWZpY2F0aW9uU3RhdHVzQ29kZXMNCg0KLy8gQWxsZXJneS9JbnRvbGVyYW5jZSBDbGluaWNhbCBTdGF0dXMgQ29kZXMgLSBDb25zaWRlciB2YWx1ZSBzZXRzIGZvciB0aGVzZQ0KY29kZSAiYWxsZXJneS1hY3RpdmUiOiAnYWN0aXZlJyBmcm9tICJBbGxlcmd5SW50b2xlcmFuY2VDbGluaWNhbFN0YXR1c0NvZGVzIg0KY29kZSAiYWxsZXJneS1pbmFjdGl2ZSI6ICdpbmFjdGl2ZScgZnJvbSAiQWxsZXJneUludG9sZXJhbmNlQ2xpbmljYWxTdGF0dXNDb2RlcyINCmNvZGUgImFsbGVyZ3ktcmVzb2x2ZWQiOiAncmVzb2x2ZWQnIGZyb20gIkFsbGVyZ3lJbnRvbGVyYW5jZUNsaW5pY2FsU3RhdHVzQ29kZXMiDQoNCi8vIEFsbGVyZ3kvSW50b2xlcmFuY2UgVmVyaWZpY2F0aW9uIFN0YXR1cyBDb2RlcyAtIENvbnNpZGVyIHZhbHVlIHNldHMgZm9yIHRoZXNlDQpjb2RlICJhbGxlcmd5LXVuY29uZmlybWVkIjogJ3VuY29uZmlybWVkJyBmcm9tIEFsbGVyZ3lJbnRvbGVyYW5jZVZlcmlmaWNhdGlvblN0YXR1c0NvZGVzDQpjb2RlICJhbGxlcmd5LWNvbmZpcm1lZCI6ICdjb25maXJtZWQnIGZyb20gQWxsZXJneUludG9sZXJhbmNlVmVyaWZpY2F0aW9uU3RhdHVzQ29kZXMNCmNvZGUgImFsbGVyZ3ktcmVmdXRlZCI6ICdyZWZ1dGVkJyBmcm9tIEFsbGVyZ3lJbnRvbGVyYW5jZVZlcmlmaWNhdGlvblN0YXR1c0NvZGVzDQoNCi8vIE1lZGljYXRpb25SZXF1ZXN0IENhdGVnb3J5IENvZGVzDQpjb2RlICJDb21tdW5pdHkiOiAnY29tbXVuaXR5JyBmcm9tICJNZWRpY2F0aW9uUmVxdWVzdENhdGVnb3J5IiBkaXNwbGF5ICdDb21tdW5pdHknDQpjb2RlICJEaXNjaGFyZ2UiOiAnZGlzY2hhcmdlJyBmcm9tICJNZWRpY2F0aW9uUmVxdWVzdENhdGVnb3J5IiBkaXNwbGF5ICdEaXNjaGFyZ2UnDQoNCi8vIERpYWdub3NpcyBSb2xlIENvZGVzDQpjb2RlICJBRCI6ICdBRCcgZnJvbSAiRGlhZ25vc2lzIFJvbGUiIGRpc3BsYXkgJ0FkbWlzc2lvbiBkaWFnbm9zaXMnDQpjb2RlICJERCI6ICdERCcgZnJvbSAiRGlhZ25vc2lzIFJvbGUiIGRpc3BsYXkgJ0Rpc2NoYXJnZSBkaWFnbm9zaXMnDQpjb2RlICJDQyI6ICdDQycgZnJvbSAiRGlhZ25vc2lzIFJvbGUiIGRpc3BsYXkgJ0NoaWVmIGNvbXBsYWludCcNCmNvZGUgIkNNIjogJ0NNJyBmcm9tICJEaWFnbm9zaXMgUm9sZSIgZGlzcGxheSAnQ29tb3JiaWRpdHkgZGlhZ25vc2lzJw0KY29kZSAicHJlLW9wIjogJ3ByZS1vcCcgZnJvbSAiRGlhZ25vc2lzIFJvbGUiIGRpc3BsYXkgJ3ByZS1vcCBkaWFnbm9zaXMnDQpjb2RlICJwb3N0LW9wIjogJ3Bvc3Qtb3AnIGZyb20gIkRpYWdub3NpcyBSb2xlIiBkaXNwbGF5ICdwb3N0LW9wIGRpYWdub3NpcycNCmNvZGUgImJpbGxpbmciOiAnYmlsbGluZycgZnJvbSAiRGlhZ25vc2lzIFJvbGUiIGRpc3BsYXkgJ2JpbGxpbmcgZGlhZ25vc2lzJw0KDQpjb250ZXh0IFBhdGllbnQNCg0KDQovKg0KQGRlc2NyaXB0aW9uOiBOb3JtYWxpemVzIGEgdmFsdWUgdGhhdCBpcyBhIGNob2ljZSBvZiB0aW1pbmctdmFsdWVkIHR5cGVzIHRvIGFuIGVxdWl2YWxlbnQgaW50ZXJ2YWwNCkBjb21tZW50OiBOb3JtYWxpemVzIGEgY2hvaWNlIHR5cGUgb2YgRkhJUi5kYXRlVGltZSwgRkhJUi5QZXJpb2QsIEZISVIuVGltaW5nLCBGSElSLmluc3RhbmNlLCBGSElSLnN0cmluZywgRkhJUi5BZ2UsIG9yIEZISVIuUmFuZ2UgdHlwZXMNCnRvIGFuIGVxdWl2YWxlbnQgaW50ZXJ2YWwuIFRoaXMgc2VsZWN0aW9uIG9mIGNob2ljZSB0eXBlcyBpcyBhIHN1cGVyc2V0IG9mIHRoZSBtYWpvcml0eSBvZiBjaG9pY2UgdHlwZXMgdGhhdCBhcmUgdXNlZCBhcyBwb3NzaWJsZQ0KcmVwcmVzZW50YXRpb25zIGZvciB0aW1pbmctdmFsdWVkIGVsZW1lbnRzIGluIEZISVIsIGFsbG93aW5nIHRoaXMgZnVuY3Rpb24gdG8gYmUgdXNlZCBhY3Jvc3MgYW55IHJlc291cmNlLiBOT1RFOiBEdWUgdG8gdGhlDQpjb21wbGV4aXR5IG9mIGRldGVybWluaW5nIGEgc2luZ2xlIGludGVydmFsIGZyb20gYSBUaW1pbmcgb3IgU3RyaW5nIHR5cGUsIHRoaXMgZnVuY3Rpb24gd2lsbCB0aHJvdyBhIHJ1bi10aW1lIGV4Y2VwdGlvbiBpZiBpdCBpcyB1c2VkDQp3aXRoIGEgVGltaW5nIG9yIFN0cmluZy4gTk9URTogVGltaW5nIGhhcyBiZWVuIG1vdmVkIHRvIFRvVGltaW5nSW50ZXJ2YWwuDQoqLw0KZGVmaW5lIGZ1bmN0aW9uIFRvSW50ZXJ2YWwoY2hvaWNlIENob2ljZTxGSElSLmRhdGVUaW1lLCBGSElSLlBlcmlvZCwgRkhJUi5UaW1pbmcsIEZISVIuaW5zdGFudCwgRkhJUi5zdHJpbmcsIEZISVIuQWdlLCBGSElSLlJhbmdlPik6DQogIGNhc2UNCgkgIHdoZW4gY2hvaWNlIGlzIEZISVIuZGF0ZVRpbWUgdGhlbg0KICAgIAlJbnRlcnZhbFtGSElSSGVscGVycy5Ub0RhdGVUaW1lKGNob2ljZSBhcyBGSElSLmRhdGVUaW1lKSwgRkhJUkhlbHBlcnMuVG9EYXRlVGltZShjaG9pY2UgYXMgRkhJUi5kYXRlVGltZSldDQoJCXdoZW4gY2hvaWNlIGlzIEZISVIuUGVyaW9kIHRoZW4NCiAgCQlGSElSSGVscGVycy5Ub0ludGVydmFsKGNob2ljZSBhcyBGSElSLlBlcmlvZCkNCgkJd2hlbiBjaG9pY2UgaXMgRkhJUi5pbnN0YW50IHRoZW4NCgkJCUludGVydmFsW0ZISVJIZWxwZXJzLlRvRGF0ZVRpbWUoY2hvaWNlIGFzIEZISVIuaW5zdGFudCksIEZISVJIZWxwZXJzLlRvRGF0ZVRpbWUoY2hvaWNlIGFzIEZISVIuaW5zdGFudCldDQoJCXdoZW4gY2hvaWNlIGlzIEZISVIuQWdlIHRoZW4NCgkJICBJbnRlcnZhbFtGSElSSGVscGVycy5Ub0RhdGUoUGF0aWVudC5iaXJ0aERhdGUpICsgRkhJUkhlbHBlcnMuVG9RdWFudGl0eShjaG9pY2UgYXMgRkhJUi5BZ2UpLA0KCQkJICBGSElSSGVscGVycy5Ub0RhdGUoUGF0aWVudC5iaXJ0aERhdGUpICsgRkhJUkhlbHBlcnMuVG9RdWFudGl0eShjaG9pY2UgYXMgRkhJUi5BZ2UpICsgMSB5ZWFyKQ0KCQl3aGVuIGNob2ljZSBpcyBGSElSLlJhbmdlIHRoZW4NCgkJICBJbnRlcnZhbFtGSElSSGVscGVycy5Ub0RhdGUoUGF0aWVudC5iaXJ0aERhdGUpICsgRkhJUkhlbHBlcnMuVG9RdWFudGl0eSgoY2hvaWNlIGFzIEZISVIuUmFuZ2UpLmxvdyksDQoJCQkgIEZISVJIZWxwZXJzLlRvRGF0ZShQYXRpZW50LmJpcnRoRGF0ZSkgKyBGSElSSGVscGVycy5Ub1F1YW50aXR5KChjaG9pY2UgYXMgRkhJUi5SYW5nZSkuaGlnaCkgKyAxIHllYXIpDQogICAgd2hlbiBjaG9pY2UgaXMgRkhJUi5UaW1pbmcgdGhlbg0KCQkgIE1lc3NhZ2UobnVsbCBhcyBJbnRlcnZhbDxEYXRlVGltZT4sIHRydWUsICcxJywgJ0Vycm9yJywgJ0Nhbm5vdCBjb21wdXRlIGEgc2luZ2xlIGludGVydmFsIGZyb20gYSBUaW1pbmcgdHlwZScpDQogICAgd2hlbiBjaG9pY2UgaXMgRkhJUi5zdHJpbmcgdGhlbg0KICAgICAgTWVzc2FnZShudWxsIGFzIEludGVydmFsPERhdGVUaW1lPiwgdHJ1ZSwgJzEnLCAnRXJyb3InLCAnQ2Fubm90IGNvbXB1dGUgYW4gaW50ZXJ2YWwgZnJvbSBhIFN0cmluZyB2YWx1ZScpDQoJCWVsc2UNCiAgICAgIG51bGwgYXMgSW50ZXJ2YWw8RGF0ZVRpbWU+DQoJZW5kDQoNCg0KLyoNCkBkZXNjcmlwdGlvbjogUmV0dXJucyBhIGxpc3Qgb2YgaW50ZXJ2YWxzIHJlcHJlc2VudGluZyB0aGUgbm9ybWFsaXplZCBFdmVudCBvciBCb3VuZHMgb2YgYSBUaW1pbmcgcmVzb3VyY2UuDQpAY29tbWVudDogTk9URTogVGltaW5nLkJvdW5kcyBpcyByZXN0cmljdGVkIHRvIGEgUGVyaW9kLg0KKi8NCg0KZGVmaW5lIGZ1bmN0aW9uIFRvSW50ZXJ2YWxGcm9tTGlzdCh2YWx1ZSBMaXN0PEZISVIuZGF0ZVRpbWU+KToNCiAgdmFsdWUgdg0KICAgIHJldHVybiBUb0ludGVydmFsKHYpDQoNCmRlZmluZSBmdW5jdGlvbiBOdWxsVG9FbXB0eUludGVydmFsKHZhbHVlIExpc3Q8SW50ZXJ2YWw8RGF0ZVRpbWU+Pik6DQogIGlmIHZhbHVlIGlzIG5vdCBudWxsIHRoZW4gdmFsdWUgZWxzZSB7IH0NCg0KZGVmaW5lIGZ1bmN0aW9uIFRvVGltaW5nSW50ZXJ2YWwodGltaW5nIEZISVIuVGltaW5nKToNCiAgY29udmVydCAoDQogICAgTnVsbFRvRW1wdHlJbnRlcnZhbChUb0ludGVydmFsRnJvbUxpc3QodGltaW5nLmV2ZW50KSkNCiAgICB1bmlvbiBOdWxsVG9FbXB0eUludGVydmFsKHtUb0ludGVydmFsKHRpbWluZy5yZXBlYXQuYm91bmRzIGFzIEZISVIuUGVyaW9kKX0pDQogICkgdG8gTGlzdDxJbnRlcnZhbDxEYXRlVGltZT4+IGV4Y2VwdCB7IG51bGwgfQ0KDQoNCi8qDQpAZGVzY3JpcHRpb246IHJldHVybnMgdGhlIGV4aXN0aW5nIHBvc3NpYmxlIHRpbWVzdGFtcCBmb3Igb2JzZXJ2YXRpb24gcmVzb3VyY2VzLCBwcmVmZXJyaW5nIGVmZmVjdGl2ZSBvdmVyIGlzc3VlZC4NCkBjb21tZW50OiBOT1RFOiBuZWl0aGVyIGVmZmVjdGl2ZSBub3IgaXNzdWVkIGFyZSByZXF1aXJlZCBmaWVsZHMgaW4gUUktQ29yZQ0KTk9URTogRnVuY3Rpb24gb3ZlcmxvYWRzIGluY29uc2lzdGVudGx5IGVyciBpbiBDUUwgMS41LCB0aGlzIGlzIGNvbW1lbnRlZCB1bnRpbCBhIGZpeCBpcyBmb3VuZA0KZGVmaW5lIGZ1bmN0aW9uIFRvSW50ZXJ2YWwob2JzZXJ2YXRpb24gRkhJUi5PYnNlcnZhdGlvbik6DQogIG9ic2VydmF0aW9uIG8NCiAgICByZXR1cm4gQ29hbGVzY2UoVG9JbnRlcnZhbChvLmVmZmVjdGl2ZSksIFRvSW50ZXJ2YWwoby5pc3N1ZWQpKQ0KKi8NCg0KLyoNCkBkZXNjcmlwdGlvbjogUmV0dXJucyBhbiBpbnRlcnZhbCByZXByZXNlbnRpbmcgdGhlIG5vcm1hbGl6ZWQgQWJhdGVtZW50IG9mIGEgZ2l2ZW4gQ29uZGl0aW9uIHJlc291cmNlLg0KQGNvbW1lbnQ6IE5PVEU6IER1ZSB0byB0aGUgY29tcGxleGl0eSBvZiBkZXRlcm1pbmluZyBhbiBpbnRlcnZhbCBmcm9tIGEgU3RyaW5nLCB0aGlzIGZ1bmN0aW9uIHdpbGwgdGhyb3cNCmEgcnVuLXRpbWUgZXhjZXB0aW9uIGlmIHVzZWQgd2l0aCBhIENvbmRpdGlvbiBpbnN0YW5jZSB0aGF0IGhhcyBhIFN0cmluZyBhcyB0aGUgYWJhdGVtZW50IHZhbHVlLg0KKi8NCmRlZmluZSBmdW5jdGlvbiBUb0FiYXRlbWVudEludGVydmFsKGNvbmRpdGlvbiBDb25kaXRpb24pOg0KICBpZiBjb25kaXRpb24ub25zZXQgaXMgbm90IG51bGwgYW5kIGNvbmRpdGlvbi5hYmF0ZW1lbnQgaXMgbnVsbCBhbmQgKGNvbmRpdGlvbi5jbGluaWNhbFN0YXR1cyB+ICJhY3RpdmUiDQogICAgb3IgY29uZGl0aW9uLmNsaW5pY2FsU3RhdHVzIH4gInJlY3VycmVuY2UiDQogICAgb3IgY29uZGl0aW9uLmNsaW5pY2FsU3RhdHVzIH4gInJlbGFwc2UiKSB0aGVuDQogICAgSW50ZXJ2YWxbTm93KCksIE5vdygpXQ0KICBlbHNlIGlmIGNvbmRpdGlvbi5hYmF0ZW1lbnQgaXMgRkhJUi5kYXRlVGltZSB0aGVuDQoJICBJbnRlcnZhbFtGSElSSGVscGVycy5Ub0RhdGVUaW1lKGNvbmRpdGlvbi5hYmF0ZW1lbnQgYXMgRkhJUi5kYXRlVGltZSksIEZISVJIZWxwZXJzLlRvRGF0ZVRpbWUoY29uZGl0aW9uLmFiYXRlbWVudCBhcyBGSElSLmRhdGVUaW1lKV0NCgllbHNlIGlmIGNvbmRpdGlvbi5hYmF0ZW1lbnQgaXMgRkhJUi5QZXJpb2QgdGhlbg0KCSAgRkhJUkhlbHBlcnMuVG9JbnRlcnZhbChjb25kaXRpb24uYWJhdGVtZW50IGFzIEZISVIuUGVyaW9kKQ0KCWVsc2UgaWYgY29uZGl0aW9uLmFiYXRlbWVudCBpcyBGSElSLnN0cmluZyB0aGVuDQogICAgTWVzc2FnZShudWxsIGFzIEludGVydmFsPERhdGVUaW1lPiwgdHJ1ZSwgJzEnLCAnRXJyb3InLCAnQ2Fubm90IGNvbXB1dGUgYW4gaW50ZXJ2YWwgZnJvbSBhIFN0cmluZyB2YWx1ZScpDQoJZWxzZSBpZiBjb25kaXRpb24uYWJhdGVtZW50IGlzIEZISVIuQWdlIHRoZW4NCgkJSW50ZXJ2YWxbRkhJUkhlbHBlcnMuVG9EYXRlKFBhdGllbnQuYmlydGhEYXRlKSArIEZISVJIZWxwZXJzLlRvUXVhbnRpdHkoY29uZGl0aW9uLmFiYXRlbWVudCBhcyBGSElSLkFnZSksDQoJCQlGSElSSGVscGVycy5Ub0RhdGUoUGF0aWVudC5iaXJ0aERhdGUpICsgRkhJUkhlbHBlcnMuVG9RdWFudGl0eShjb25kaXRpb24uYWJhdGVtZW50IGFzIEZISVIuQWdlKSArIDEgeWVhcikNCgllbHNlIGlmIGNvbmRpdGlvbi5hYmF0ZW1lbnQgaXMgRkhJUi5SYW5nZSB0aGVuDQoJICBJbnRlcnZhbFtGSElSSGVscGVycy5Ub0RhdGUoUGF0aWVudC5iaXJ0aERhdGUpICsgRkhJUkhlbHBlcnMuVG9RdWFudGl0eSgoY29uZGl0aW9uLmFiYXRlbWVudCBhcyBGSElSLlJhbmdlKS5sb3cpLA0KCQkgIEZISVJIZWxwZXJzLlRvRGF0ZShQYXRpZW50LmJpcnRoRGF0ZSkgKyBGSElSSGVscGVycy5Ub1F1YW50aXR5KChjb25kaXRpb24uYWJhdGVtZW50IGFzIEZISVIuUmFuZ2UpLmhpZ2gpICsgMSB5ZWFyKQ0KCWVsc2UgaWYgY29uZGl0aW9uLmFiYXRlbWVudCBpcyBGSElSLmJvb2xlYW4gdGhlbg0KCSAgSW50ZXJ2YWxbZW5kIG9mIFRvSW50ZXJ2YWwoY29uZGl0aW9uLm9uc2V0KSwgY29uZGl0aW9uLnJlY29yZGVkRGF0ZSkNCgllbHNlIG51bGwNCg0KLyoNCkBkZXNjcmlwdGlvbjogUmV0dXJucyBhbiBpbnRlcnZhbCByZXByZXNlbnRpbmcgdGhlIG5vcm1hbGl6ZWQgcHJldmFsZW5jZSBwZXJpb2Qgb2YgYSBnaXZlbiBDb25kaXRpb24gcmVzb3VyY2UuDQpAY29tbWVudDogVXNlcyB0aGUgVG9JbnRlcnZhbCBhbmQgVG9BYmF0ZW1lbnRJbnRlcnZhbCBmdW5jdGlvbnMgdG8gZGV0ZXJtaW5lIHRoZSB3aWRlc3QgcG90ZW50aWFsIGludGVydmFsIGZyb20NCm9uc2V0IHRvIGFiYXRlbWVudCBhcyBzcGVjaWZpZWQgaW4gdGhlIGdpdmVuIENvbmRpdGlvbi4NCiovDQpkZWZpbmUgZnVuY3Rpb24gVG9QcmV2YWxlbmNlSW50ZXJ2YWwoY29uZGl0aW9uIENvbmRpdGlvbik6DQogIEludGVydmFsW3N0YXJ0IG9mIFRvSW50ZXJ2YWwoY29uZGl0aW9uLm9uc2V0KSwgZW5kIG9mIFRvQWJhdGVtZW50SW50ZXJ2YWwoY29uZGl0aW9uKSkNCg0KLyoNCkBkZXNjcmlwdGlvbjogUmV0dXJucyBhbiBpbnRlcnZhbCByZXByZXNlbnRpbmcgdGhlIG5vcm1hbGl6ZWQgcHJldmFsZW5jZSBwZXJpb2Qgb2YgYSBnaXZlbiBBbGxlcmd5IEludG9sZXJhbmNlIHJlc291cmNlLg0KQGNvbW1lbnQ6IFVzZXMgdGhlIFRvSW50ZXJ2YWwgZnVuY3Rpb24gYW5kIGxhc3RPY2N1cmVuY2UgdG8gZGV0ZXJtaW5lIHRoZSB3aWRlc3QgcG90ZW50aWFsIGludGVydmFsLg0KKi8NCmRlZmluZSBmdW5jdGlvbiBUb1ByZXZhbGVuY2VJbnRlcnZhbChhbGxlcmd5SW50b2xlcmFuY2UgQWxsZXJneUludG9sZXJhbmNlKToNCiAgSW50ZXJ2YWxbc3RhcnQgb2YgVG9JbnRlcnZhbChhbGxlcmd5SW50b2xlcmFuY2Uub25zZXQpLCBDb2FsZXNjZShhbGxlcmd5SW50b2xlcmFuY2UubGFzdE9jY3VycmVuY2UsIE5vdygpKV0NCg0KDQovKg0KQGRlc2NyaXB0aW9uOiBSZXR1cm5zIGFueSBleHRlbnNpb25zIGRlZmluZWQgb24gdGhlIGdpdmVuIHJlc291cmNlIHdpdGggdGhlIHNwZWNpZmllZCB1cmwuDQpAY29tbWVudDogTk9URTogRXh0ZW5zaW9ucyBhcmUgbm90IHRoZSBwcmVmZXJyZWQgYXBwcm9hY2gsIGJ1dCBhcmUgdXNlZCBhcyBhIHdheSB0byBhY2Nlc3MNCmNvbnRlbnQgdGhhdCBpcyBkZWZpbmVkIGJ5IGV4dGVuc2lvbnMgYnV0IG5vdCB5ZXQgc3VyZmFjZWQgaW4gdGhlDQpDUUwgbW9kZWwgaW5mby4NCiovDQpkZWZpbmUgZnVuY3Rpb24gRXh0ZW5zaW9ucyhkb21haW5SZXNvdXJjZSBEb21haW5SZXNvdXJjZSwgdXJsIFN0cmluZyk6DQogIGRvbWFpblJlc291cmNlLmV4dGVuc2lvbiBFDQoJICB3aGVyZSBFLnVybCA9IHVybA0KCQlyZXR1cm4gRQ0KDQovKg0KQGRlc2NyaXB0aW9uOiBSZXR1cm5zIHRoZSBzaW5nbGUgZXh0ZW5zaW9uIChpZiBwcmVzZW50KSBvbiB0aGUgZ2l2ZW4gcmVzb3VyY2Ugd2l0aCB0aGUgc3BlY2lmaWVkIHVybC4NCkBjb21tZW50OiBUaGlzIGZ1bmN0aW9uIHVzZXMgc2luZ2xldG9uIGZyb20gdG8gZW5zdXJlIHRoYXQgYSBydW4tdGltZSBleGNlcHRpb24gaXMgdGhyb3duIGlmIHRoZXJlDQppcyBtb3JlIHRoYW4gb25lIGV4dGVuc2lvbiBvbiB0aGUgZ2l2ZW4gcmVzb3VyY2Ugd2l0aCB0aGUgc3BlY2lmaWVkIHVybC4NCiovDQpkZWZpbmUgZnVuY3Rpb24gRXh0ZW5zaW9uKGRvbWFpblJlc291cmNlIERvbWFpblJlc291cmNlLCB1cmwgU3RyaW5nKToNCiAgc2luZ2xldG9uIGZyb20gIkV4dGVuc2lvbnMiKGRvbWFpblJlc291cmNlLCB1cmwpDQoNCi8qDQpAZGVzY3JpcHRpb246IFJldHVybnMgYW55IGV4dGVuc2lvbnMgZGVmaW5lZCBvbiB0aGUgZ2l2ZW4gZWxlbWVudCB3aXRoIHRoZSBzcGVjaWZpZWQgdXJsLg0KQGNvbW1lbnQ6IE5PVEU6IEV4dGVuc2lvbnMgYXJlIG5vdCB0aGUgcHJlZmVycmVkIGFwcHJvYWNoLCBidXQgYXJlIHVzZWQgYXMgYSB3YXkgdG8gYWNjZXNzDQpjb250ZW50IHRoYXQgaXMgZGVmaW5lZCBieSBleHRlbnNpb25zIGJ1dCBub3QgeWV0IHN1cmZhY2VkIGluIHRoZSBDUUwgbW9kZWwgaW5mby4NCiovDQpkZWZpbmUgZnVuY3Rpb24gRXh0ZW5zaW9ucyhlbGVtZW50IEVsZW1lbnQsIHVybCBTdHJpbmcpOg0KICBlbGVtZW50LmV4dGVuc2lvbiBFDQoJICB3aGVyZSBFLnVybCA9IHVybA0KCQlyZXR1cm4gRQ0KDQovKg0KQGRlc2NyaXB0aW9uOiBSZXR1cm5zIHRoZSBzaW5nbGUgZXh0ZW5zaW9uIChpZiBwcmVzZW50KSBvbiB0aGUgZ2l2ZW4gZWxlbWVudCB3aXRoIHRoZSBzcGVjaWZpZWQgdXJsLg0KQGNvbW1lbnQ6IFRoaXMgZnVuY3Rpb24gdXNlcyBzaW5nbGV0b24gZnJvbSB0byBlbnN1cmUgdGhhdCBhIHJ1bi10aW1lIGV4Y2VwdGlvbiBpcyB0aHJvd24gaWYgdGhlcmUNCmlzIG1vcmUgdGhhbiBvbmUgZXh0ZW5zaW9uIG9uIHRoZSBnaXZlbiByZXNvdXJjZSB3aXRoIHRoZSBzcGVjaWZpZWQgdXJsLg0KKi8NCmRlZmluZSBmdW5jdGlvbiBFeHRlbnNpb24oZWxlbWVudCBFbGVtZW50LCB1cmwgU3RyaW5nKToNCiAgc2luZ2xldG9uIGZyb20gRXh0ZW5zaW9ucyhlbGVtZW50LCB1cmwpDQoNCi8qDQpAZGVzY3JpcHRpb246IFJldHVybnMgYW55IG1vZGlmaWVyIGV4dGVuc2lvbnMgZGVmaW5lZCBvbiB0aGUgZ2l2ZW4gcmVzb3VyY2Ugd2l0aCB0aGUgc3BlY2lmaWVkIHVybC4NCkBjb21tZW50OiBOT1RFOiBFeHRlbnNpb25zIGFyZSBub3QgdGhlIHByZWZlcnJlZCBhcHByb2FjaCwgYnV0IGFyZSB1c2VkIGFzIGEgd2F5IHRvIGFjY2Vzcw0KY29udGVudCB0aGF0IGlzIGRlZmluZWQgYnkgZXh0ZW5zaW9ucyBidXQgbm90IHlldCBzdXJmYWNlZCBpbiB0aGUNCkNRTCBtb2RlbCBpbmZvLg0KKi8NCmRlZmluZSBmdW5jdGlvbiBNb2RpZmllckV4dGVuc2lvbnMoZG9tYWluUmVzb3VyY2UgRG9tYWluUmVzb3VyY2UsIHVybCBTdHJpbmcpOg0KICBkb21haW5SZXNvdXJjZS5tb2RpZmllckV4dGVuc2lvbiBFDQoJICB3aGVyZSBFLnVybCA9IHVybA0KCQlyZXR1cm4gRQ0KDQovKg0KQGRlc2NyaXB0aW9uOiBSZXR1cm5zIHRoZSBzaW5nbGUgbW9kaWZpZXIgZXh0ZW5zaW9uIChpZiBwcmVzZW50KSBvbiB0aGUgZ2l2ZW4gcmVzb3VyY2Ugd2l0aCB0aGUgc3BlY2lmaWVkIHVybC4NCkBjb21tZW50OiBUaGlzIGZ1bmN0aW9uIHVzZXMgc2luZ2xldG9uIGZyb20gdG8gZW5zdXJlIHRoYXQgYSBydW4tdGltZSBleGNlcHRpb24gaXMgdGhyb3duIGlmIHRoZXJlDQppcyBtb3JlIHRoYW4gb25lIGV4dGVuc2lvbiBvbiB0aGUgZ2l2ZW4gcmVzb3VyY2Ugd2l0aCB0aGUgc3BlY2lmaWVkIHVybC4NCiovDQpkZWZpbmUgZnVuY3Rpb24gTW9kaWZpZXJFeHRlbnNpb24oZG9tYWluUmVzb3VyY2UgRG9tYWluUmVzb3VyY2UsIHVybCBTdHJpbmcpOg0KICBzaW5nbGV0b24gZnJvbSBNb2RpZmllckV4dGVuc2lvbnMoZG9tYWluUmVzb3VyY2UsIHVybCkNCg0KLyoNCkBkZXNjcmlwdGlvbjogUmV0dXJucyBhbnkgbW9kaWZpZXIgZXh0ZW5zaW9ucyBkZWZpbmVkIG9uIHRoZSBnaXZlbiBlbGVtZW50IHdpdGggdGhlIHNwZWNpZmllZCB1cmwuDQpAY29tbWVudDogTk9URTogRXh0ZW5zaW9ucyBhcmUgbm90IHRoZSBwcmVmZXJyZWQgYXBwcm9hY2gsIGJ1dCBhcmUgdXNlZCBhcyBhIHdheSB0byBhY2Nlc3MNCmNvbnRlbnQgdGhhdCBpcyBkZWZpbmVkIGJ5IGV4dGVuc2lvbnMgYnV0IG5vdCB5ZXQgc3VyZmFjZWQgaW4gdGhlIENRTCBtb2RlbCBpbmZvLg0KKi8NCmRlZmluZSBmdW5jdGlvbiBNb2RpZmllckV4dGVuc2lvbnMoZWxlbWVudCBCYWNrYm9uZUVsZW1lbnQsIHVybCBTdHJpbmcpOg0KICBlbGVtZW50Lm1vZGlmaWVyRXh0ZW5zaW9uIEUNCgkgIHdoZXJlIEUudXJsID0gdXJsDQoJCXJldHVybiBFDQoNCi8qDQpAZGVzY3JpcHRpb246IFJldHVybnMgdGhlIHNpbmdsZSBtb2RpZmllciBleHRlbnNpb24gKGlmIHByZXNlbnQpIG9uIHRoZSBnaXZlbiBlbGVtZW50IHdpdGggdGhlIHNwZWNpZmllZCB1cmwuDQpAY29tbWVudDogVGhpcyBmdW5jdGlvbiB1c2VzIHNpbmdsZXRvbiBmcm9tIHRvIGVuc3VyZSB0aGF0IGEgcnVuLXRpbWUgZXhjZXB0aW9uIGlzIHRocm93biBpZiB0aGVyZQ0KaXMgbW9yZSB0aGFuIG9uZSBleHRlbnNpb24gb24gdGhlIGdpdmVuIHJlc291cmNlIHdpdGggdGhlIHNwZWNpZmllZCB1cmwuDQoqLw0KZGVmaW5lIGZ1bmN0aW9uIE1vZGlmaWVyRXh0ZW5zaW9uKGVsZW1lbnQgQmFja2JvbmVFbGVtZW50LCB1cmwgU3RyaW5nKToNCiAgc2luZ2xldG9uIGZyb20gTW9kaWZpZXJFeHRlbnNpb25zKGVsZW1lbnQsIHVybCkNCg0KLyoNCkBkZXNjcmlwdGlvbjogUmV0dXJucyBhbnkgYmFzZS1GSElSIGV4dGVuc2lvbnMgZGVmaW5lZCBvbiB0aGUgZ2l2ZW4gcmVzb3VyY2Ugd2l0aCB0aGUgc3BlY2lmaWVkIGlkLg0KQGNvbW1lbnQ6IE5PVEU6IEV4dGVuc2lvbnMgYXJlIG5vdCB0aGUgcHJlZmVycmVkIGFwcHJvYWNoLCBidXQgYXJlIHVzZWQgYXMgYSB3YXkgdG8gYWNjZXNzDQpjb250ZW50IHRoYXQgaXMgZGVmaW5lZCBieSBleHRlbnNpb25zIGJ1dCBub3QgeWV0IHN1cmZhY2VkIGluIHRoZSBDUUwgbW9kZWwgaW5mby4NCiovDQpkZWZpbmUgZnVuY3Rpb24gQmFzZUV4dGVuc2lvbnMoZG9tYWluUmVzb3VyY2UgRG9tYWluUmVzb3VyY2UsIGlkIFN0cmluZyk6DQogIGRvbWFpblJlc291cmNlLmV4dGVuc2lvbiBFDQoJICB3aGVyZSBFLnVybCA9ICgnaHR0cDovL2hsNy5vcmcvZmhpci9TdHJ1Y3R1cmVEZWZpbml0aW9uLycgKyBpZCkNCgkJcmV0dXJuIEUNCg0KLyoNCkBkZXNjcmlwdGlvbjogUmV0dXJucyB0aGUgc2luZ2xlIGJhc2UtRkhJUiBleHRlbnNpb24gKGlmIHByZXNlbnQpIG9uIHRoZSBnaXZlbiByZXNvdXJjZSB3aXRoIHRoZSBzcGVjaWZpZWQgaWQuDQpAY29tbWVudDogVGhpcyBmdW5jdGlvbiB1c2VzIHNpbmdsZXRvbiBmcm9tIHRvIGVuc3VyZSB0aGF0IGEgcnVuLXRpbWUgZXhjZXB0aW9uIGlzIHRocm93biBpZiB0aGVyZQ0KaXMgbW9yZSB0aGFuIG9uZSBleHRlbnNpb24gb24gdGhlIGdpdmVuIHJlc291cmNlIHdpdGggdGhlIHNwZWNpZmllZCB1cmwuDQoqLw0KZGVmaW5lIGZ1bmN0aW9uIEJhc2VFeHRlbnNpb24oZG9tYWluUmVzb3VyY2UgRG9tYWluUmVzb3VyY2UsIGlkIFN0cmluZyk6DQogIHNpbmdsZXRvbiBmcm9tIEJhc2VFeHRlbnNpb25zKGRvbWFpblJlc291cmNlLCBpZCkNCg0KLyoNCkBkZXNjcmlwdGlvbjogUmV0dXJucyBhbnkgYmFzZS1GSElSIGV4dGVuc2lvbnMgZGVmaW5lZCBvbiB0aGUgZ2l2ZW4gZWxlbWVudCB3aXRoIHRoZSBzcGVjaWZpZWQgaWQuDQpAY29tbWVudDogTk9URTogRXh0ZW5zaW9ucyBhcmUgbm90IHRoZSBwcmVmZXJyZWQgYXBwcm9hY2gsIGJ1dCBhcmUgdXNlZCBhcyBhIHdheSB0byBhY2Nlc3MNCmNvbnRlbnQgdGhhdCBpcyBkZWZpbmVkIGJ5IGV4dGVuc2lvbnMgYnV0IG5vdCB5ZXQgc3VyZmFjZWQgaW4gdGhlIENRTCBtb2RlbCBpbmZvLg0KKi8NCmRlZmluZSBmdW5jdGlvbiBCYXNlRXh0ZW5zaW9ucyhlbGVtZW50IEVsZW1lbnQsIGlkIFN0cmluZyk6DQogIGVsZW1lbnQuZXh0ZW5zaW9uIEUNCgkgIHdoZXJlIEUudXJsID0gKCdodHRwOi8vaGw3Lm9yZy9maGlyL1N0cnVjdHVyZURlZmluaXRpb24vJyArIGlkKQ0KCQlyZXR1cm4gRQ0KDQovKg0KQGRlc2NyaXB0aW9uOiBSZXR1cm5zIHRoZSBzaW5nbGUgYmFzZS1GSElSIGV4dGVuc2lvbiAoaWYgcHJlc2VudCkgb24gdGhlIGdpdmVuIGVsZW1lbnQgd2l0aCB0aGUgc3BlY2lmaWVkIGlkLg0KQGNvbW1lbnQ6IFRoaXMgZnVuY3Rpb24gdXNlcyBzaW5nbGV0b24gZnJvbSB0byBlbnN1cmUgdGhhdCBhIHJ1bi10aW1lIGV4Y2VwdGlvbiBpcyB0aHJvd24gaWYgdGhlcmUNCmlzIG1vcmUgdGhhbiBvbmUgZXh0ZW5zaW9uIG9uIHRoZSBnaXZlbiByZXNvdXJjZSB3aXRoIHRoZSBzcGVjaWZpZWQgdXJsLg0KKi8NCmRlZmluZSBmdW5jdGlvbiBCYXNlRXh0ZW5zaW9uKGVsZW1lbnQgRWxlbWVudCwgaWQgU3RyaW5nKToNCiAgc2luZ2xldG9uIGZyb20gQmFzZUV4dGVuc2lvbnMoZWxlbWVudCwgaWQpDQoNCi8qDQpAZGVzY3JpcHRpb246IFJldHVybnMgYW55IGJhc2UtRkhJUiBtb2RpZmllciBleHRlbnNpb25zIGRlZmluZWQgb24gdGhlIGdpdmVuIHJlc291cmNlIHdpdGggdGhlIHNwZWNpZmllZCBpZC4NCkBjb21tZW50OiBOT1RFOiBFeHRlbnNpb25zIGFyZSBub3QgdGhlIHByZWZlcnJlZCBhcHByb2FjaCwgYnV0IGFyZSB1c2VkIGFzIGEgd2F5IHRvIGFjY2Vzcw0KY29udGVudCB0aGF0IGlzIGRlZmluZWQgYnkgZXh0ZW5zaW9ucyBidXQgbm90IHlldCBzdXJmYWNlZCBpbiB0aGUgQ1FMIG1vZGVsIGluZm8uDQoqLw0KZGVmaW5lIGZ1bmN0aW9uIEJhc2VNb2RpZmllckV4dGVuc2lvbnMoZG9tYWluUmVzb3VyY2UgRG9tYWluUmVzb3VyY2UsIGlkIFN0cmluZyk6DQogIGRvbWFpblJlc291cmNlLm1vZGlmaWVyRXh0ZW5zaW9uIEUNCgkgIHdoZXJlIEUudXJsID0gKCdodHRwOi8vaGw3Lm9yZy9maGlyL1N0cnVjdHVyZURlZmluaXRpb24vJyArIGlkKQ0KCQlyZXR1cm4gRQ0KDQovKg0KQGRlc2NyaXB0aW9uOiBSZXR1cm5zIHRoZSBzaW5nbGUgYmFzZS1GSElSIG1vZGlmaWVyIGV4dGVuc2lvbiAoaWYgcHJlc2VudCkgb24gdGhlIGdpdmVuIHJlc291cmNlIHdpdGggdGhlIHNwZWNpZmllZCBpZC4NCkBjb21tZW50OiBUaGlzIGZ1bmN0aW9uIHVzZXMgc2luZ2xldG9uIGZyb20gdG8gZW5zdXJlIHRoYXQgYSBydW4tdGltZSBleGNlcHRpb24gaXMgdGhyb3duIGlmIHRoZXJlDQppcyBtb3JlIHRoYW4gb25lIGV4dGVuc2lvbiBvbiB0aGUgZ2l2ZW4gcmVzb3VyY2Ugd2l0aCB0aGUgc3BlY2lmaWVkIHVybC4NCiovDQpkZWZpbmUgZnVuY3Rpb24gQmFzZU1vZGlmaWVyRXh0ZW5zaW9uKGRvbWFpblJlc291cmNlIERvbWFpblJlc291cmNlLCBpZCBTdHJpbmcpOg0KICBzaW5nbGV0b24gZnJvbSBCYXNlTW9kaWZpZXJFeHRlbnNpb25zKGRvbWFpblJlc291cmNlLCBpZCkNCg0KLyoNCkBkZXNjcmlwdGlvbjogUmV0dXJucyBhbnkgYmFzZS1GSElSIG1vZGlmaWVyIGV4dGVuc2lvbnMgZGVmaW5lZCBvbiB0aGUgZ2l2ZW4gZWxlbWVudCB3aXRoIHRoZSBzcGVjaWZpZWQgaWQuDQpAY29tbWVudDogTk9URTogRXh0ZW5zaW9ucyBhcmUgbm90IHRoZSBwcmVmZXJyZWQgYXBwcm9hY2gsIGJ1dCBhcmUgdXNlZCBhcyBhIHdheSB0byBhY2Nlc3MNCmNvbnRlbnQgdGhhdCBpcyBkZWZpbmVkIGJ5IGV4dGVuc2lvbnMgYnV0IG5vdCB5ZXQgc3VyZmFjZWQgaW4gdGhlIENRTCBtb2RlbCBpbmZvLg0KKi8NCmRlZmluZSBmdW5jdGlvbiBCYXNlTW9kaWZpZXJFeHRlbnNpb25zKGVsZW1lbnQgQmFja2JvbmVFbGVtZW50LCBpZCBTdHJpbmcpOg0KICBlbGVtZW50Lm1vZGlmaWVyRXh0ZW5zaW9uIEUNCgkgIHdoZXJlIEUudXJsID0gKCdodHRwOi8vaGw3Lm9yZy9maGlyL1N0cnVjdHVyZURlZmluaXRpb24vJyArIGlkKQ0KCQlyZXR1cm4gRQ0KDQovKg0KQGRlc2NyaXB0aW9uOiBSZXR1cm5zIHRoZSBzaW5nbGUgYmFzZS1GSElSIGV4dGVuc2lvbiAoaWYgcHJlc2VudCkgb24gdGhlIGdpdmVuIGVsZW1lbnQgd2l0aCB0aGUgc3BlY2lmaWVkIGlkLg0KQGNvbW1lbnQ6IFRoaXMgZnVuY3Rpb24gdXNlcyBzaW5nbGV0b24gZnJvbSB0byBlbnN1cmUgdGhhdCBhIHJ1bi10aW1lIGV4Y2VwdGlvbiBpcyB0aHJvd24gaWYgdGhlcmUNCmlzIG1vcmUgdGhhbiBvbmUgZXh0ZW5zaW9uIG9uIHRoZSBnaXZlbiByZXNvdXJjZSB3aXRoIHRoZSBzcGVjaWZpZWQgdXJsLg0KKi8NCmRlZmluZSBmdW5jdGlvbiBCYXNlTW9kaWZpZXJFeHRlbnNpb24oZWxlbWVudCBCYWNrYm9uZUVsZW1lbnQsIGlkIFN0cmluZyk6DQogIHNpbmdsZXRvbiBmcm9tIEJhc2VNb2RpZmllckV4dGVuc2lvbnMoZWxlbWVudCwgaWQpDQo=" + }, + { + "contentType": "application/elm+xml", + "data": "PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxsaWJyYXJ5IHhtbG5zPSJ1cm46aGw3LW9yZzplbG06cjEiIHhtbG5zOnQ9InVybjpobDctb3JnOmVsbS10eXBlczpyMSIgeG1sbnM6eHNpPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYS1pbnN0YW5jZSIgeG1sbnM6eHNkPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYSIgeG1sbnM6Zmhpcj0iaHR0cDovL2hsNy5vcmcvZmhpciIgeG1sbnM6cWRtNDM9InVybjpoZWFsdGhpdC1nb3Y6cWRtOnY0XzMiIHhtbG5zOnFkbTUzPSJ1cm46aGVhbHRoaXQtZ292OnFkbTp2NV8zIiB4bWxuczphPSJ1cm46aGw3LW9yZzpjcWwtYW5ub3RhdGlvbnM6cjEiPg0KICAgPGFubm90YXRpb24gdHJhbnNsYXRvck9wdGlvbnM9IkVuYWJsZUxvY2F0b3JzLERpc2FibGVMaXN0RGVtb3Rpb24sRGlzYWJsZUxpc3RQcm9tb3Rpb24iIHhzaTp0eXBlPSJhOkNxbFRvRWxtSW5mbyIvPg0KICAgPGFubm90YXRpb24geHNpOnR5cGU9ImE6QW5ub3RhdGlvbiI+DQogICAgICA8YTp0IG5hbWU9ImF1dGhvciIgdmFsdWU9IkJyeW4gUmhvZGVzIi8+DQogICAgICA8YTp0IG5hbWU9ImRlc2NyaXB0aW9uIiB2YWx1ZT0iQ29tbW9uIHRlcm1pbm9sb2dpZXMgYW5kIGZ1bmN0aW9ucyB1c2VkIGluIEZISVItYmFzZWQgQ1FMIGFydGlmYWN0cyIvPg0KICAgPC9hbm5vdGF0aW9uPg0KICAgPGlkZW50aWZpZXIgaWQ9IkZISVJDb21tb24iIHN5c3RlbT0iaHR0cDovL2NvbnRlbnQuYWxwaG9yYS5jb20vZmhpci9kcW0iIHZlcnNpb249IjQuMC4xIi8+DQogICA8c2NoZW1hSWRlbnRpZmllciBpZD0idXJuOmhsNy1vcmc6ZWxtIiB2ZXJzaW9uPSJyMSIvPg0KICAgPHVzaW5ncz4NCiAgICAgIDxkZWYgbG9jYWxJZGVudGlmaWVyPSJTeXN0ZW0iIHVyaT0idXJuOmhsNy1vcmc6ZWxtLXR5cGVzOnIxIi8+DQogICAgICA8ZGVmIGxvY2F0b3I9Ijg6MS04OjI2IiBsb2NhbElkZW50aWZpZXI9IkZISVIiIHVyaT0iaHR0cDovL2hsNy5vcmcvZmhpciIgdmVyc2lvbj0iNC4wLjEiLz4NCiAgIDwvdXNpbmdzPg0KICAgPGluY2x1ZGVzPg0KICAgICAgPGRlZiBsb2NhdG9yPSIxMDoxLTEwOjM1IiBsb2NhbElkZW50aWZpZXI9IkZISVJIZWxwZXJzIiBwYXRoPSJodHRwOi8vY29udGVudC5hbHBob3JhLmNvbS9maGlyL2RxbS9GSElSSGVscGVycyIgdmVyc2lvbj0iNC4wLjEiLz4NCiAgIDwvaW5jbHVkZXM+DQogICA8Y29kZVN5c3RlbXM+DQogICAgICA8ZGVmIGxvY2F0b3I9IjEyOjEtMTI6MzgiIG5hbWU9IkxPSU5DIiBpZD0iaHR0cDovL2xvaW5jLm9yZyIgYWNjZXNzTGV2ZWw9IlB1YmxpYyIvPg0KICAgICAgPGRlZiBsb2NhdG9yPSIxMzoxLTEzOjQ3IiBuYW1lPSJTTk9NRURDVCIgaWQ9Imh0dHA6Ly9zbm9tZWQuaW5mby9zY3QiIGFjY2Vzc0xldmVsPSJQdWJsaWMiLz4NCiAgICAgIDxkZWYgbG9jYXRvcj0iMTQ6MS0xNDo3NCIgbmFtZT0iUm9sZUNvZGUiIGlkPSJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL3YzLVJvbGVDb2RlIiBhY2Nlc3NMZXZlbD0iUHVibGljIi8+DQogICAgICA8ZGVmIGxvY2F0b3I9IjE1OjEtMTU6ODMiIG5hbWU9IkRpYWdub3NpcyBSb2xlIiBpZD0iaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9kaWFnbm9zaXMtcm9sZSIgYWNjZXNzTGV2ZWw9IlB1YmxpYyIvPg0KICAgICAgPGRlZiBsb2NhdG9yPSIxNjoxLTE2OjgyIiBuYW1lPSJSZXF1ZXN0SW50ZW50IiBpZD0iaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9yZXF1ZXN0LWludGVudCIgYWNjZXNzTGV2ZWw9IlB1YmxpYyIvPg0KICAgICAgPGRlZiBsb2NhdG9yPSIxNzoxLTE3OjEwNiIgbmFtZT0iTWVkaWNhdGlvblJlcXVlc3RDYXRlZ29yeSIgaWQ9Imh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vbWVkaWNhdGlvbnJlcXVlc3QtY2F0ZWdvcnkiIGFjY2Vzc0xldmVsPSJQdWJsaWMiLz4NCiAgICAgIDxkZWYgbG9jYXRvcj0iMTg6MS0xODoxMDEiIG5hbWU9IkNvbmRpdGlvbkNsaW5pY2FsU3RhdHVzQ29kZXMiIGlkPSJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL2NvbmRpdGlvbi1jbGluaWNhbCIgYWNjZXNzTGV2ZWw9IlB1YmxpYyIvPg0KICAgICAgPGRlZiBsb2NhdG9yPSIxOToxLTE5OjEwNyIgbmFtZT0iQ29uZGl0aW9uVmVyaWZpY2F0aW9uU3RhdHVzQ29kZXMiIGlkPSJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL2NvbmRpdGlvbi12ZXItc3RhdHVzIiBhY2Nlc3NMZXZlbD0iUHVibGljIi8+DQogICAgICA8ZGVmIGxvY2F0b3I9IjIwOjEtMjA6MTE5IiBuYW1lPSJBbGxlcmd5SW50b2xlcmFuY2VDbGluaWNhbFN0YXR1c0NvZGVzIiBpZD0iaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9hbGxlcmd5aW50b2xlcmFuY2UtY2xpbmljYWwiIGFjY2Vzc0xldmVsPSJQdWJsaWMiLz4NCiAgICAgIDxkZWYgbG9jYXRvcj0iMjE6MS0yMToxMjciIG5hbWU9IkFsbGVyZ3lJbnRvbGVyYW5jZVZlcmlmaWNhdGlvblN0YXR1c0NvZGVzIiBpZD0iaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9hbGxlcmd5aW50b2xlcmFuY2UtdmVyaWZpY2F0aW9uIiBhY2Nlc3NMZXZlbD0iUHVibGljIi8+DQogICA8L2NvZGVTeXN0ZW1zPg0KICAgPGNvZGVzPg0KICAgICAgPGRlZiBsb2NhdG9yPSIyMzoxLTIzOjYxIiBuYW1lPSJCaXJ0aGRhdGUiIGlkPSIyMTExMi04IiBkaXNwbGF5PSJCaXJ0aCBkYXRlIiBhY2Nlc3NMZXZlbD0iUHVibGljIj4NCiAgICAgICAgIDxjb2RlU3lzdGVtIGxvY2F0b3I9IjIzOjM0LTIzOjQwIiBuYW1lPSJMT0lOQyIvPg0KICAgICAgPC9kZWY+DQogICAgICA8ZGVmIGxvY2F0b3I9IjI0OjEtMjQ6NTUiIG5hbWU9IkRlYWQiIGlkPSI0MTkwOTkwMDkiIGRpc3BsYXk9IkRlYWQiIGFjY2Vzc0xldmVsPSJQdWJsaWMiPg0KICAgICAgICAgPGNvZGVTeXN0ZW0gbG9jYXRvcj0iMjQ6MzEtMjQ6NDAiIG5hbWU9IlNOT01FRENUIi8+DQogICAgICA8L2RlZj4NCiAgICAgIDxkZWYgbG9jYXRvcj0iMjU6MS0yNTo1NiIgbmFtZT0iRVIiIGlkPSJFUiIgZGlzcGxheT0iRW1lcmdlbmN5IHJvb20iIGFjY2Vzc0xldmVsPSJQdWJsaWMiPg0KICAgICAgICAgPGNvZGVTeXN0ZW0gbG9jYXRvcj0iMjU6MjItMjU6MzEiIG5hbWU9IlJvbGVDb2RlIi8+DQogICAgICA8L2RlZj4NCiAgICAgIDxkZWYgbG9jYXRvcj0iMjY6MS0yNjo2MyIgbmFtZT0iSUNVIiBpZD0iSUNVIiBkaXNwbGF5PSJJbnRlbnNpdmUgY2FyZSB1bml0IiBhY2Nlc3NMZXZlbD0iUHVibGljIj4NCiAgICAgICAgIDxjb2RlU3lzdGVtIGxvY2F0b3I9IjI2OjI0LTI2OjMzIiBuYW1lPSJSb2xlQ29kZSIvPg0KICAgICAgPC9kZWY+DQogICAgICA8ZGVmIGxvY2F0b3I9IjI3OjEtMjc6NjUiIG5hbWU9IkJpbGxpbmciIGlkPSJiaWxsaW5nIiBkaXNwbGF5PSJCaWxsaW5nIiBhY2Nlc3NMZXZlbD0iUHVibGljIj4NCiAgICAgICAgIDxjb2RlU3lzdGVtIGxvY2F0b3I9IjI3OjMyLTI3OjQ3IiBuYW1lPSJEaWFnbm9zaXMgUm9sZSIvPg0KICAgICAgPC9kZWY+DQogICAgICA8ZGVmIGxvY2F0b3I9IjMwOjEtMzA6NTkiIG5hbWU9ImFjdGl2ZSIgaWQ9ImFjdGl2ZSIgYWNjZXNzTGV2ZWw9IlB1YmxpYyI+DQogICAgICAgICA8Y29kZVN5c3RlbSBsb2NhdG9yPSIzMDozMC0zMDo1OSIgbmFtZT0iQ29uZGl0aW9uQ2xpbmljYWxTdGF0dXNDb2RlcyIvPg0KICAgICAgPC9kZWY+DQogICAgICA8ZGVmIGxvY2F0b3I9IjMxOjEtMzE6NjciIG5hbWU9InJlY3VycmVuY2UiIGlkPSJyZWN1cnJlbmNlIiBhY2Nlc3NMZXZlbD0iUHVibGljIj4NCiAgICAgICAgIDxjb2RlU3lzdGVtIGxvY2F0b3I9IjMxOjM4LTMxOjY3IiBuYW1lPSJDb25kaXRpb25DbGluaWNhbFN0YXR1c0NvZGVzIi8+DQogICAgICA8L2RlZj4NCiAgICAgIDxkZWYgbG9jYXRvcj0iMzI6MS0zMjo2MSIgbmFtZT0icmVsYXBzZSIgaWQ9InJlbGFwc2UiIGFjY2Vzc0xldmVsPSJQdWJsaWMiPg0KICAgICAgICAgPGNvZGVTeXN0ZW0gbG9jYXRvcj0iMzI6MzItMzI6NjEiIG5hbWU9IkNvbmRpdGlvbkNsaW5pY2FsU3RhdHVzQ29kZXMiLz4NCiAgICAgIDwvZGVmPg0KICAgICAgPGRlZiBsb2NhdG9yPSIzMzoxLTMzOjYzIiBuYW1lPSJpbmFjdGl2ZSIgaWQ9ImluYWN0aXZlIiBhY2Nlc3NMZXZlbD0iUHVibGljIj4NCiAgICAgICAgIDxjb2RlU3lzdGVtIGxvY2F0b3I9IjMzOjM0LTMzOjYzIiBuYW1lPSJDb25kaXRpb25DbGluaWNhbFN0YXR1c0NvZGVzIi8+DQogICAgICA8L2RlZj4NCiAgICAgIDxkZWYgbG9jYXRvcj0iMzQ6MS0zNDo2NSIgbmFtZT0icmVtaXNzaW9uIiBpZD0icmVtaXNzaW9uIiBhY2Nlc3NMZXZlbD0iUHVibGljIj4NCiAgICAgICAgIDxjb2RlU3lzdGVtIGxvY2F0b3I9IjM0OjM2LTM0OjY1IiBuYW1lPSJDb25kaXRpb25DbGluaWNhbFN0YXR1c0NvZGVzIi8+DQogICAgICA8L2RlZj4NCiAgICAgIDxkZWYgbG9jYXRvcj0iMzU6MS0zNTo2MyIgbmFtZT0icmVzb2x2ZWQiIGlkPSJyZXNvbHZlZCIgYWNjZXNzTGV2ZWw9IlB1YmxpYyI+DQogICAgICAgICA8Y29kZVN5c3RlbSBsb2NhdG9yPSIzNTozNC0zNTo2MyIgbmFtZT0iQ29uZGl0aW9uQ2xpbmljYWxTdGF0dXNDb2RlcyIvPg0KICAgICAgPC9kZWY+DQogICAgICA8ZGVmIGxvY2F0b3I9IjM4OjEtMzg6NzEiIG5hbWU9InVuY29uZmlybWVkIiBpZD0idW5jb25maXJtZWQiIGFjY2Vzc0xldmVsPSJQdWJsaWMiPg0KICAgICAgICAgPGNvZGVTeXN0ZW0gbG9jYXRvcj0iMzg6NDAtMzg6NzEiIG5hbWU9IkNvbmRpdGlvblZlcmlmaWNhdGlvblN0YXR1c0NvZGVzIi8+DQogICAgICA8L2RlZj4NCiAgICAgIDxkZWYgbG9jYXRvcj0iMzk6MS0zOTo3MSIgbmFtZT0icHJvdmlzaW9uYWwiIGlkPSJwcm92aXNpb25hbCIgYWNjZXNzTGV2ZWw9IlB1YmxpYyI+DQogICAgICAgICA8Y29kZVN5c3RlbSBsb2NhdG9yPSIzOTo0MC0zOTo3MSIgbmFtZT0iQ29uZGl0aW9uVmVyaWZpY2F0aW9uU3RhdHVzQ29kZXMiLz4NCiAgICAgIDwvZGVmPg0KICAgICAgPGRlZiBsb2NhdG9yPSI0MDoxLTQwOjczIiBuYW1lPSJkaWZmZXJlbnRpYWwiIGlkPSJkaWZmZXJlbnRpYWwiIGFjY2Vzc0xldmVsPSJQdWJsaWMiPg0KICAgICAgICAgPGNvZGVTeXN0ZW0gbG9jYXRvcj0iNDA6NDItNDA6NzMiIG5hbWU9IkNvbmRpdGlvblZlcmlmaWNhdGlvblN0YXR1c0NvZGVzIi8+DQogICAgICA8L2RlZj4NCiAgICAgIDxkZWYgbG9jYXRvcj0iNDE6MS00MTo2NyIgbmFtZT0iY29uZmlybWVkIiBpZD0iY29uZmlybWVkIiBhY2Nlc3NMZXZlbD0iUHVibGljIj4NCiAgICAgICAgIDxjb2RlU3lzdGVtIGxvY2F0b3I9IjQxOjM2LTQxOjY3IiBuYW1lPSJDb25kaXRpb25WZXJpZmljYXRpb25TdGF0dXNDb2RlcyIvPg0KICAgICAgPC9kZWY+DQogICAgICA8ZGVmIGxvY2F0b3I9IjQyOjEtNDI6NjMiIG5hbWU9InJlZnV0ZWQiIGlkPSJyZWZ1dGVkIiBhY2Nlc3NMZXZlbD0iUHVibGljIj4NCiAgICAgICAgIDxjb2RlU3lzdGVtIGxvY2F0b3I9IjQyOjMyLTQyOjYzIiBuYW1lPSJDb25kaXRpb25WZXJpZmljYXRpb25TdGF0dXNDb2RlcyIvPg0KICAgICAgPC9kZWY+DQogICAgICA8ZGVmIGxvY2F0b3I9IjQzOjEtNDM6ODEiIG5hbWU9ImVudGVyZWQtaW4tZXJyb3IiIGlkPSJlbnRlcmVkLWluLWVycm9yIiBhY2Nlc3NMZXZlbD0iUHVibGljIj4NCiAgICAgICAgIDxjb2RlU3lzdGVtIGxvY2F0b3I9IjQzOjUwLTQzOjgxIiBuYW1lPSJDb25kaXRpb25WZXJpZmljYXRpb25TdGF0dXNDb2RlcyIvPg0KICAgICAgPC9kZWY+DQogICAgICA8ZGVmIGxvY2F0b3I9IjQ2OjEtNDY6NzYiIG5hbWU9ImFsbGVyZ3ktYWN0aXZlIiBpZD0iYWN0aXZlIiBhY2Nlc3NMZXZlbD0iUHVibGljIj4NCiAgICAgICAgIDxjb2RlU3lzdGVtIGxvY2F0b3I9IjQ2OjM4LTQ2Ojc2IiBuYW1lPSJBbGxlcmd5SW50b2xlcmFuY2VDbGluaWNhbFN0YXR1c0NvZGVzIi8+DQogICAgICA8L2RlZj4NCiAgICAgIDxkZWYgbG9jYXRvcj0iNDc6MS00Nzo4MCIgbmFtZT0iYWxsZXJneS1pbmFjdGl2ZSIgaWQ9ImluYWN0aXZlIiBhY2Nlc3NMZXZlbD0iUHVibGljIj4NCiAgICAgICAgIDxjb2RlU3lzdGVtIGxvY2F0b3I9IjQ3OjQyLTQ3OjgwIiBuYW1lPSJBbGxlcmd5SW50b2xlcmFuY2VDbGluaWNhbFN0YXR1c0NvZGVzIi8+DQogICAgICA8L2RlZj4NCiAgICAgIDxkZWYgbG9jYXRvcj0iNDg6MS00ODo4MCIgbmFtZT0iYWxsZXJneS1yZXNvbHZlZCIgaWQ9InJlc29sdmVkIiBhY2Nlc3NMZXZlbD0iUHVibGljIj4NCiAgICAgICAgIDxjb2RlU3lzdGVtIGxvY2F0b3I9IjQ4OjQyLTQ4OjgwIiBuYW1lPSJBbGxlcmd5SW50b2xlcmFuY2VDbGluaWNhbFN0YXR1c0NvZGVzIi8+DQogICAgICA8L2RlZj4NCiAgICAgIDxkZWYgbG9jYXRvcj0iNTE6MS01MTo4OCIgbmFtZT0iYWxsZXJneS11bmNvbmZpcm1lZCIgaWQ9InVuY29uZmlybWVkIiBhY2Nlc3NMZXZlbD0iUHVibGljIj4NCiAgICAgICAgIDxjb2RlU3lzdGVtIGxvY2F0b3I9IjUxOjQ4LTUxOjg4IiBuYW1lPSJBbGxlcmd5SW50b2xlcmFuY2VWZXJpZmljYXRpb25TdGF0dXNDb2RlcyIvPg0KICAgICAgPC9kZWY+DQogICAgICA8ZGVmIGxvY2F0b3I9IjUyOjEtNTI6ODQiIG5hbWU9ImFsbGVyZ3ktY29uZmlybWVkIiBpZD0iY29uZmlybWVkIiBhY2Nlc3NMZXZlbD0iUHVibGljIj4NCiAgICAgICAgIDxjb2RlU3lzdGVtIGxvY2F0b3I9IjUyOjQ0LTUyOjg0IiBuYW1lPSJBbGxlcmd5SW50b2xlcmFuY2VWZXJpZmljYXRpb25TdGF0dXNDb2RlcyIvPg0KICAgICAgPC9kZWY+DQogICAgICA8ZGVmIGxvY2F0b3I9IjUzOjEtNTM6ODAiIG5hbWU9ImFsbGVyZ3ktcmVmdXRlZCIgaWQ9InJlZnV0ZWQiIGFjY2Vzc0xldmVsPSJQdWJsaWMiPg0KICAgICAgICAgPGNvZGVTeXN0ZW0gbG9jYXRvcj0iNTM6NDAtNTM6ODAiIG5hbWU9IkFsbGVyZ3lJbnRvbGVyYW5jZVZlcmlmaWNhdGlvblN0YXR1c0NvZGVzIi8+DQogICAgICA8L2RlZj4NCiAgICAgIDxkZWYgbG9jYXRvcj0iNTY6MS01Njo4MiIgbmFtZT0iQ29tbXVuaXR5IiBpZD0iY29tbXVuaXR5IiBkaXNwbGF5PSJDb21tdW5pdHkiIGFjY2Vzc0xldmVsPSJQdWJsaWMiPg0KICAgICAgICAgPGNvZGVTeXN0ZW0gbG9jYXRvcj0iNTY6MzYtNTY6NjIiIG5hbWU9Ik1lZGljYXRpb25SZXF1ZXN0Q2F0ZWdvcnkiLz4NCiAgICAgIDwvZGVmPg0KICAgICAgPGRlZiBsb2NhdG9yPSI1NzoxLTU3OjgyIiBuYW1lPSJEaXNjaGFyZ2UiIGlkPSJkaXNjaGFyZ2UiIGRpc3BsYXk9IkRpc2NoYXJnZSIgYWNjZXNzTGV2ZWw9IlB1YmxpYyI+DQogICAgICAgICA8Y29kZVN5c3RlbSBsb2NhdG9yPSI1NzozNi01Nzo2MiIgbmFtZT0iTWVkaWNhdGlvblJlcXVlc3RDYXRlZ29yeSIvPg0KICAgICAgPC9kZWY+DQogICAgICA8ZGVmIGxvY2F0b3I9IjYwOjEtNjA6NjciIG5hbWU9IkFEIiBpZD0iQUQiIGRpc3BsYXk9IkFkbWlzc2lvbiBkaWFnbm9zaXMiIGFjY2Vzc0xldmVsPSJQdWJsaWMiPg0KICAgICAgICAgPGNvZGVTeXN0ZW0gbG9jYXRvcj0iNjA6MjItNjA6MzciIG5hbWU9IkRpYWdub3NpcyBSb2xlIi8+DQogICAgICA8L2RlZj4NCiAgICAgIDxkZWYgbG9jYXRvcj0iNjE6MS02MTo2NyIgbmFtZT0iREQiIGlkPSJERCIgZGlzcGxheT0iRGlzY2hhcmdlIGRpYWdub3NpcyIgYWNjZXNzTGV2ZWw9IlB1YmxpYyI+DQogICAgICAgICA8Y29kZVN5c3RlbSBsb2NhdG9yPSI2MToyMi02MTozNyIgbmFtZT0iRGlhZ25vc2lzIFJvbGUiLz4NCiAgICAgIDwvZGVmPg0KICAgICAgPGRlZiBsb2NhdG9yPSI2MjoxLTYyOjYzIiBuYW1lPSJDQyIgaWQ9IkNDIiBkaXNwbGF5PSJDaGllZiBjb21wbGFpbnQiIGFjY2Vzc0xldmVsPSJQdWJsaWMiPg0KICAgICAgICAgPGNvZGVTeXN0ZW0gbG9jYXRvcj0iNjI6MjItNjI6MzciIG5hbWU9IkRpYWdub3NpcyBSb2xlIi8+DQogICAgICA8L2RlZj4NCiAgICAgIDxkZWYgbG9jYXRvcj0iNjM6MS02Mzo2OSIgbmFtZT0iQ00iIGlkPSJDTSIgZGlzcGxheT0iQ29tb3JiaWRpdHkgZGlhZ25vc2lzIiBhY2Nlc3NMZXZlbD0iUHVibGljIj4NCiAgICAgICAgIDxjb2RlU3lzdGVtIGxvY2F0b3I9IjYzOjIyLTYzOjM3IiBuYW1lPSJEaWFnbm9zaXMgUm9sZSIvPg0KICAgICAgPC9kZWY+DQogICAgICA8ZGVmIGxvY2F0b3I9IjY0OjEtNjQ6NzIiIG5hbWU9InByZS1vcCIgaWQ9InByZS1vcCIgZGlzcGxheT0icHJlLW9wIGRpYWdub3NpcyIgYWNjZXNzTGV2ZWw9IlB1YmxpYyI+DQogICAgICAgICA8Y29kZVN5c3RlbSBsb2NhdG9yPSI2NDozMC02NDo0NSIgbmFtZT0iRGlhZ25vc2lzIFJvbGUiLz4NCiAgICAgIDwvZGVmPg0KICAgICAgPGRlZiBsb2NhdG9yPSI2NToxLTY1Ojc1IiBuYW1lPSJwb3N0LW9wIiBpZD0icG9zdC1vcCIgZGlzcGxheT0icG9zdC1vcCBkaWFnbm9zaXMiIGFjY2Vzc0xldmVsPSJQdWJsaWMiPg0KICAgICAgICAgPGNvZGVTeXN0ZW0gbG9jYXRvcj0iNjU6MzItNjU6NDciIG5hbWU9IkRpYWdub3NpcyBSb2xlIi8+DQogICAgICA8L2RlZj4NCiAgICAgIDxkZWYgbG9jYXRvcj0iNjY6MS02Njo3NSIgbmFtZT0iYmlsbGluZyIgaWQ9ImJpbGxpbmciIGRpc3BsYXk9ImJpbGxpbmcgZGlhZ25vc2lzIiBhY2Nlc3NMZXZlbD0iUHVibGljIj4NCiAgICAgICAgIDxjb2RlU3lzdGVtIGxvY2F0b3I9IjY2OjMyLTY2OjQ3IiBuYW1lPSJEaWFnbm9zaXMgUm9sZSIvPg0KICAgICAgPC9kZWY+DQogICA8L2NvZGVzPg0KICAgPGNvbnRleHRzPg0KICAgICAgPGRlZiBsb2NhdG9yPSI2ODoxLTY4OjE1IiBuYW1lPSJQYXRpZW50Ii8+DQogICA8L2NvbnRleHRzPg0KICAgPHN0YXRlbWVudHM+DQogICAgICA8ZGVmIGxvY2F0b3I9IjY4OjEtNjg6MTUiIG5hbWU9IlBhdGllbnQiIGNvbnRleHQ9IlBhdGllbnQiPg0KICAgICAgICAgPGV4cHJlc3Npb24geHNpOnR5cGU9IlNpbmdsZXRvbkZyb20iPg0KICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iNjg6MS02ODoxNSIgZGF0YVR5cGU9ImZoaXI6UGF0aWVudCIgdGVtcGxhdGVJZD0iaHR0cDovL2hsNy5vcmcvZmhpci9TdHJ1Y3R1cmVEZWZpbml0aW9uL1BhdGllbnQiIHhzaTp0eXBlPSJSZXRyaWV2ZSIvPg0KICAgICAgICAgPC9leHByZXNzaW9uPg0KICAgICAgPC9kZWY+DQogICAgICA8ZGVmIGxvY2F0b3I9Ijc5OjEtOTk6NCIgbmFtZT0iVG9JbnRlcnZhbCIgY29udGV4dD0iUGF0aWVudCIgYWNjZXNzTGV2ZWw9IlB1YmxpYyIgeHNpOnR5cGU9IkZ1bmN0aW9uRGVmIj4NCiAgICAgICAgIDxhbm5vdGF0aW9uIHhzaTp0eXBlPSJhOkFubm90YXRpb24iPg0KICAgICAgICAgICAgPGE6dCBuYW1lPSJkZXNjcmlwdGlvbiIgdmFsdWU9Ik5vcm1hbGl6ZXMgYSB2YWx1ZSB0aGF0IGlzIGEgY2hvaWNlIG9mIHRpbWluZy12YWx1ZWQgdHlwZXMgdG8gYW4gZXF1aXZhbGVudCBpbnRlcnZhbCIvPg0KICAgICAgICAgICAgPGE6dCBuYW1lPSJjb21tZW50IiB2YWx1ZT0iTm9ybWFsaXplcyBhIGNob2ljZSB0eXBlIG9mIEZISVIuZGF0ZVRpbWUsIEZISVIuUGVyaW9kLCBGSElSLlRpbWluZywgRkhJUi5pbnN0YW5jZSwgRkhJUi5zdHJpbmcsIEZISVIuQWdlLCBvciBGSElSLlJhbmdlIHR5cGVzJiN4YTt0byBhbiBlcXVpdmFsZW50IGludGVydmFsLiBUaGlzIHNlbGVjdGlvbiBvZiBjaG9pY2UgdHlwZXMgaXMgYSBzdXBlcnNldCBvZiB0aGUgbWFqb3JpdHkgb2YgY2hvaWNlIHR5cGVzIHRoYXQgYXJlIHVzZWQgYXMgcG9zc2libGUmI3hhO3JlcHJlc2VudGF0aW9ucyBmb3IgdGltaW5nLXZhbHVlZCBlbGVtZW50cyBpbiBGSElSLCBhbGxvd2luZyB0aGlzIGZ1bmN0aW9uIHRvIGJlIHVzZWQgYWNyb3NzIGFueSByZXNvdXJjZS4gTk9URTogRHVlIHRvIHRoZSYjeGE7Y29tcGxleGl0eSBvZiBkZXRlcm1pbmluZyBhIHNpbmdsZSBpbnRlcnZhbCBmcm9tIGEgVGltaW5nIG9yIFN0cmluZyB0eXBlLCB0aGlzIGZ1bmN0aW9uIHdpbGwgdGhyb3cgYSBydW4tdGltZSBleGNlcHRpb24gaWYgaXQgaXMgdXNlZCYjeGE7d2l0aCBhIFRpbWluZyBvciBTdHJpbmcuIE5PVEU6IFRpbWluZyBoYXMgYmVlbiBtb3ZlZCB0byBUb1RpbWluZ0ludGVydmFsLiIvPg0KICAgICAgICAgPC9hbm5vdGF0aW9uPg0KICAgICAgICAgPGV4cHJlc3Npb24gbG9jYXRvcj0iODA6My05OTo0IiB4c2k6dHlwZT0iQ2FzZSI+DQogICAgICAgICAgICA8Y2FzZUl0ZW0gbG9jYXRvcj0iODE6NC04MjoxMTEiPg0KICAgICAgICAgICAgICAgPHdoZW4gbG9jYXRvcj0iODE6OS04MTozMSIgeHNpOnR5cGU9IklzIj4NCiAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjgxOjktODE6MTQiIG5hbWU9ImNob2ljZSIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgICAgIDxpc1R5cGVTcGVjaWZpZXIgbG9jYXRvcj0iODE6MTktODE6MzEiIG5hbWU9ImZoaXI6ZGF0ZVRpbWUiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgIDwvd2hlbj4NCiAgICAgICAgICAgICAgIDx0aGVuIGxvY2F0b3I9IjgyOjYtODI6MTExIiBsb3dDbG9zZWQ9InRydWUiIGhpZ2hDbG9zZWQ9InRydWUiIHhzaTp0eXBlPSJJbnRlcnZhbCI+DQogICAgICAgICAgICAgICAgICA8bG93IGxvY2F0b3I9IjgyOjE1LTgyOjYxIiBuYW1lPSJUb0RhdGVUaW1lIiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI4MjozOC04Mjo2MCIgc3RyaWN0PSJmYWxzZSIgeHNpOnR5cGU9IkFzIj4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjgyOjM4LTgyOjQzIiBuYW1lPSJjaG9pY2UiIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICAgICA8YXNUeXBlU3BlY2lmaWVyIGxvY2F0b3I9IjgyOjQ4LTgyOjYwIiBuYW1lPSJmaGlyOmRhdGVUaW1lIiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICA8L2xvdz4NCiAgICAgICAgICAgICAgICAgIDxoaWdoIGxvY2F0b3I9IjgyOjY0LTgyOjExMCIgbmFtZT0iVG9EYXRlVGltZSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iODI6ODctODI6MTA5IiBzdHJpY3Q9ImZhbHNlIiB4c2k6dHlwZT0iQXMiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iODI6ODctODI6OTIiIG5hbWU9ImNob2ljZSIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxhc1R5cGVTcGVjaWZpZXIgbG9jYXRvcj0iODI6OTctODI6MTA5IiBuYW1lPSJmaGlyOmRhdGVUaW1lIiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICA8L2hpZ2g+DQogICAgICAgICAgICAgICA8L3RoZW4+DQogICAgICAgICAgICA8L2Nhc2VJdGVtPg0KICAgICAgICAgICAgPGNhc2VJdGVtIGxvY2F0b3I9IjgzOjMtODQ6NDkiPg0KICAgICAgICAgICAgICAgPHdoZW4gbG9jYXRvcj0iODM6OC04MzoyOCIgeHNpOnR5cGU9IklzIj4NCiAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjgzOjgtODM6MTMiIG5hbWU9ImNob2ljZSIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgICAgIDxpc1R5cGVTcGVjaWZpZXIgbG9jYXRvcj0iODM6MTgtODM6MjgiIG5hbWU9ImZoaXI6UGVyaW9kIiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICAgICAgICA8L3doZW4+DQogICAgICAgICAgICAgICA8dGhlbiBsb2NhdG9yPSI4NDo1LTg0OjQ5IiBuYW1lPSJUb0ludGVydmFsIiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI4NDoyOC04NDo0OCIgc3RyaWN0PSJmYWxzZSIgeHNpOnR5cGU9IkFzIj4NCiAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9Ijg0OjI4LTg0OjMzIiBuYW1lPSJjaG9pY2UiIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICA8YXNUeXBlU3BlY2lmaWVyIGxvY2F0b3I9Ijg0OjM4LTg0OjQ4IiBuYW1lPSJmaGlyOlBlcmlvZCIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgPC90aGVuPg0KICAgICAgICAgICAgPC9jYXNlSXRlbT4NCiAgICAgICAgICAgIDxjYXNlSXRlbSBsb2NhdG9yPSI4NTozLTg2OjEwNyI+DQogICAgICAgICAgICAgICA8d2hlbiBsb2NhdG9yPSI4NTo4LTg1OjI5IiB4c2k6dHlwZT0iSXMiPg0KICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iODU6OC04NToxMyIgbmFtZT0iY2hvaWNlIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgICAgPGlzVHlwZVNwZWNpZmllciBsb2NhdG9yPSI4NToxOC04NToyOSIgbmFtZT0iZmhpcjppbnN0YW50IiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICAgICAgICA8L3doZW4+DQogICAgICAgICAgICAgICA8dGhlbiBsb2NhdG9yPSI4Njo0LTg2OjEwNyIgbG93Q2xvc2VkPSJ0cnVlIiBoaWdoQ2xvc2VkPSJ0cnVlIiB4c2k6dHlwZT0iSW50ZXJ2YWwiPg0KICAgICAgICAgICAgICAgICAgPGxvdyBsb2NhdG9yPSI4NjoxMy04Njo1OCIgbmFtZT0iVG9EYXRlVGltZSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iODY6MzYtODY6NTciIHN0cmljdD0iZmFsc2UiIHhzaTp0eXBlPSJBcyI+DQogICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI4NjozNi04Njo0MSIgbmFtZT0iY2hvaWNlIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgPGFzVHlwZVNwZWNpZmllciBsb2NhdG9yPSI4Njo0Ni04Njo1NyIgbmFtZT0iZmhpcjppbnN0YW50IiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICA8L2xvdz4NCiAgICAgICAgICAgICAgICAgIDxoaWdoIGxvY2F0b3I9Ijg2OjYxLTg2OjEwNiIgbmFtZT0iVG9EYXRlVGltZSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iODY6ODQtODY6MTA1IiBzdHJpY3Q9ImZhbHNlIiB4c2k6dHlwZT0iQXMiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iODY6ODQtODY6ODkiIG5hbWU9ImNob2ljZSIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxhc1R5cGVTcGVjaWZpZXIgbG9jYXRvcj0iODY6OTQtODY6MTA1IiBuYW1lPSJmaGlyOmluc3RhbnQiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgIDwvaGlnaD4NCiAgICAgICAgICAgICAgIDwvdGhlbj4NCiAgICAgICAgICAgIDwvY2FzZUl0ZW0+DQogICAgICAgICAgICA8Y2FzZUl0ZW0gbG9jYXRvcj0iODc6My04OTo5NyI+DQogICAgICAgICAgICAgICA8d2hlbiBsb2NhdG9yPSI4Nzo4LTg3OjI1IiB4c2k6dHlwZT0iSXMiPg0KICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iODc6OC04NzoxMyIgbmFtZT0iY2hvaWNlIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgICAgPGlzVHlwZVNwZWNpZmllciBsb2NhdG9yPSI4NzoxOC04NzoyNSIgbmFtZT0iZmhpcjpBZ2UiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgIDwvd2hlbj4NCiAgICAgICAgICAgICAgIDx0aGVuIHhzaTp0eXBlPSJJbnRlcnZhbCI+DQogICAgICAgICAgICAgICAgICA8bG93IHhzaTp0eXBlPSJUb0RhdGVUaW1lIj4NCiAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIHBhdGg9ImxvdyIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iODg6NS04OTo5NyIgbG93Q2xvc2VkPSJ0cnVlIiBoaWdoQ2xvc2VkPSJmYWxzZSIgeHNpOnR5cGU9IkludGVydmFsIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDxsb3cgbG9jYXRvcj0iODg6MTQtODg6OTUiIHhzaTp0eXBlPSJBZGQiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iODg6MTQtODg6NTAiIG5hbWU9IlRvRGF0ZSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iODg6MzMtODg6NDkiIHBhdGg9ImJpcnRoRGF0ZSIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iODg6MzMtODg6MzkiIG5hbWU9IlBhdGllbnQiIHhzaTp0eXBlPSJFeHByZXNzaW9uUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI4ODo1NC04ODo5NSIgbmFtZT0iVG9RdWFudGl0eSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iODg6NzctODg6OTQiIHN0cmljdD0iZmFsc2UiIHhzaTp0eXBlPSJBcyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI4ODo3Ny04ODo4MiIgbmFtZT0iY2hvaWNlIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGFzVHlwZVNwZWNpZmllciBsb2NhdG9yPSI4ODo4Ny04ODo5NCIgbmFtZT0iZmhpcjpBZ2UiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvbG93Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgPGhpZ2ggbG9jYXRvcj0iODk6Ni04OTo5NiIgeHNpOnR5cGU9IkFkZCI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI4OTo2LTg5Ojg3IiB4c2k6dHlwZT0iQWRkIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9Ijg5OjYtODk6NDIiIG5hbWU9IlRvRGF0ZSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iODk6MjUtODk6NDEiIHBhdGg9ImJpcnRoRGF0ZSIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iODk6MjUtODk6MzEiIG5hbWU9IlBhdGllbnQiIHhzaTp0eXBlPSJFeHByZXNzaW9uUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI4OTo0Ni04OTo4NyIgbmFtZT0iVG9RdWFudGl0eSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iODk6NjktODk6ODYiIHN0cmljdD0iZmFsc2UiIHhzaTp0eXBlPSJBcyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI4OTo2OS04OTo3NCIgbmFtZT0iY2hvaWNlIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGFzVHlwZVNwZWNpZmllciBsb2NhdG9yPSI4OTo3OS04OTo4NiIgbmFtZT0iZmhpcjpBZ2UiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9Ijg5OjkxLTg5Ojk2IiB2YWx1ZT0iMSIgdW5pdD0ieWVhciIgeHNpOnR5cGU9IlF1YW50aXR5Ii8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICA8L2hpZ2g+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3NvdXJjZT4NCiAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgIDwvbG93Pg0KICAgICAgICAgICAgICAgICAgPGxvd0Nsb3NlZEV4cHJlc3Npb24gcGF0aD0ibG93Q2xvc2VkIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSI4ODo1LTg5Ojk3IiBsb3dDbG9zZWQ9InRydWUiIGhpZ2hDbG9zZWQ9ImZhbHNlIiB4c2k6dHlwZT0iSW50ZXJ2YWwiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPGxvdyBsb2NhdG9yPSI4ODoxNC04ODo5NSIgeHNpOnR5cGU9IkFkZCI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI4ODoxNC04ODo1MCIgbmFtZT0iVG9EYXRlIiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI4ODozMy04ODo0OSIgcGF0aD0iYmlydGhEYXRlIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSI4ODozMy04ODozOSIgbmFtZT0iUGF0aWVudCIgeHNpOnR5cGU9IkV4cHJlc3Npb25SZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9Ijg4OjU0LTg4Ojk1IiBuYW1lPSJUb1F1YW50aXR5IiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI4ODo3Ny04ODo5NCIgc3RyaWN0PSJmYWxzZSIgeHNpOnR5cGU9IkFzIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9Ijg4Ojc3LTg4OjgyIiBuYW1lPSJjaG9pY2UiIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YXNUeXBlU3BlY2lmaWVyIGxvY2F0b3I9Ijg4Ojg3LTg4Ojk0IiBuYW1lPSJmaGlyOkFnZSIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC9sb3c+DQogICAgICAgICAgICAgICAgICAgICAgICA8aGlnaCBsb2NhdG9yPSI4OTo2LTg5Ojk2IiB4c2k6dHlwZT0iQWRkIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9Ijg5OjYtODk6ODciIHhzaTp0eXBlPSJBZGQiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iODk6Ni04OTo0MiIgbmFtZT0iVG9EYXRlIiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI4OToyNS04OTo0MSIgcGF0aD0iYmlydGhEYXRlIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSI4OToyNS04OTozMSIgbmFtZT0iUGF0aWVudCIgeHNpOnR5cGU9IkV4cHJlc3Npb25SZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9Ijg5OjQ2LTg5Ojg3IiBuYW1lPSJUb1F1YW50aXR5IiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI4OTo2OS04OTo4NiIgc3RyaWN0PSJmYWxzZSIgeHNpOnR5cGU9IkFzIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9Ijg5OjY5LTg5Ojc0IiBuYW1lPSJjaG9pY2UiIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YXNUeXBlU3BlY2lmaWVyIGxvY2F0b3I9Ijg5Ojc5LTg5Ojg2IiBuYW1lPSJmaGlyOkFnZSIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iODk6OTEtODk6OTYiIHZhbHVlPSIxIiB1bml0PSJ5ZWFyIiB4c2k6dHlwZT0iUXVhbnRpdHkiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvaGlnaD4NCiAgICAgICAgICAgICAgICAgICAgIDwvc291cmNlPg0KICAgICAgICAgICAgICAgICAgPC9sb3dDbG9zZWRFeHByZXNzaW9uPg0KICAgICAgICAgICAgICAgICAgPGhpZ2ggeHNpOnR5cGU9IlRvRGF0ZVRpbWUiPg0KICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgcGF0aD0iaGlnaCIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iODg6NS04OTo5NyIgbG93Q2xvc2VkPSJ0cnVlIiBoaWdoQ2xvc2VkPSJmYWxzZSIgeHNpOnR5cGU9IkludGVydmFsIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDxsb3cgbG9jYXRvcj0iODg6MTQtODg6OTUiIHhzaTp0eXBlPSJBZGQiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iODg6MTQtODg6NTAiIG5hbWU9IlRvRGF0ZSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iODg6MzMtODg6NDkiIHBhdGg9ImJpcnRoRGF0ZSIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iODg6MzMtODg6MzkiIG5hbWU9IlBhdGllbnQiIHhzaTp0eXBlPSJFeHByZXNzaW9uUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI4ODo1NC04ODo5NSIgbmFtZT0iVG9RdWFudGl0eSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iODg6NzctODg6OTQiIHN0cmljdD0iZmFsc2UiIHhzaTp0eXBlPSJBcyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI4ODo3Ny04ODo4MiIgbmFtZT0iY2hvaWNlIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGFzVHlwZVNwZWNpZmllciBsb2NhdG9yPSI4ODo4Ny04ODo5NCIgbmFtZT0iZmhpcjpBZ2UiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvbG93Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgPGhpZ2ggbG9jYXRvcj0iODk6Ni04OTo5NiIgeHNpOnR5cGU9IkFkZCI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI4OTo2LTg5Ojg3IiB4c2k6dHlwZT0iQWRkIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9Ijg5OjYtODk6NDIiIG5hbWU9IlRvRGF0ZSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iODk6MjUtODk6NDEiIHBhdGg9ImJpcnRoRGF0ZSIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iODk6MjUtODk6MzEiIG5hbWU9IlBhdGllbnQiIHhzaTp0eXBlPSJFeHByZXNzaW9uUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI4OTo0Ni04OTo4NyIgbmFtZT0iVG9RdWFudGl0eSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iODk6NjktODk6ODYiIHN0cmljdD0iZmFsc2UiIHhzaTp0eXBlPSJBcyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI4OTo2OS04OTo3NCIgbmFtZT0iY2hvaWNlIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGFzVHlwZVNwZWNpZmllciBsb2NhdG9yPSI4OTo3OS04OTo4NiIgbmFtZT0iZmhpcjpBZ2UiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9Ijg5OjkxLTg5Ojk2IiB2YWx1ZT0iMSIgdW5pdD0ieWVhciIgeHNpOnR5cGU9IlF1YW50aXR5Ii8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICA8L2hpZ2g+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3NvdXJjZT4NCiAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgIDwvaGlnaD4NCiAgICAgICAgICAgICAgICAgIDxoaWdoQ2xvc2VkRXhwcmVzc2lvbiBwYXRoPSJoaWdoQ2xvc2VkIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSI4ODo1LTg5Ojk3IiBsb3dDbG9zZWQ9InRydWUiIGhpZ2hDbG9zZWQ9ImZhbHNlIiB4c2k6dHlwZT0iSW50ZXJ2YWwiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPGxvdyBsb2NhdG9yPSI4ODoxNC04ODo5NSIgeHNpOnR5cGU9IkFkZCI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI4ODoxNC04ODo1MCIgbmFtZT0iVG9EYXRlIiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI4ODozMy04ODo0OSIgcGF0aD0iYmlydGhEYXRlIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSI4ODozMy04ODozOSIgbmFtZT0iUGF0aWVudCIgeHNpOnR5cGU9IkV4cHJlc3Npb25SZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9Ijg4OjU0LTg4Ojk1IiBuYW1lPSJUb1F1YW50aXR5IiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI4ODo3Ny04ODo5NCIgc3RyaWN0PSJmYWxzZSIgeHNpOnR5cGU9IkFzIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9Ijg4Ojc3LTg4OjgyIiBuYW1lPSJjaG9pY2UiIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YXNUeXBlU3BlY2lmaWVyIGxvY2F0b3I9Ijg4Ojg3LTg4Ojk0IiBuYW1lPSJmaGlyOkFnZSIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC9sb3c+DQogICAgICAgICAgICAgICAgICAgICAgICA8aGlnaCBsb2NhdG9yPSI4OTo2LTg5Ojk2IiB4c2k6dHlwZT0iQWRkIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9Ijg5OjYtODk6ODciIHhzaTp0eXBlPSJBZGQiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iODk6Ni04OTo0MiIgbmFtZT0iVG9EYXRlIiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI4OToyNS04OTo0MSIgcGF0aD0iYmlydGhEYXRlIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSI4OToyNS04OTozMSIgbmFtZT0iUGF0aWVudCIgeHNpOnR5cGU9IkV4cHJlc3Npb25SZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9Ijg5OjQ2LTg5Ojg3IiBuYW1lPSJUb1F1YW50aXR5IiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI4OTo2OS04OTo4NiIgc3RyaWN0PSJmYWxzZSIgeHNpOnR5cGU9IkFzIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9Ijg5OjY5LTg5Ojc0IiBuYW1lPSJjaG9pY2UiIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YXNUeXBlU3BlY2lmaWVyIGxvY2F0b3I9Ijg5Ojc5LTg5Ojg2IiBuYW1lPSJmaGlyOkFnZSIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iODk6OTEtODk6OTYiIHZhbHVlPSIxIiB1bml0PSJ5ZWFyIiB4c2k6dHlwZT0iUXVhbnRpdHkiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvaGlnaD4NCiAgICAgICAgICAgICAgICAgICAgIDwvc291cmNlPg0KICAgICAgICAgICAgICAgICAgPC9oaWdoQ2xvc2VkRXhwcmVzc2lvbj4NCiAgICAgICAgICAgICAgIDwvdGhlbj4NCiAgICAgICAgICAgIDwvY2FzZUl0ZW0+DQogICAgICAgICAgICA8Y2FzZUl0ZW0gbG9jYXRvcj0iOTA6My05MjoxMDYiPg0KICAgICAgICAgICAgICAgPHdoZW4gbG9jYXRvcj0iOTA6OC05MDoyNyIgeHNpOnR5cGU9IklzIj4NCiAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjkwOjgtOTA6MTMiIG5hbWU9ImNob2ljZSIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgICAgIDxpc1R5cGVTcGVjaWZpZXIgbG9jYXRvcj0iOTA6MTgtOTA6MjciIG5hbWU9ImZoaXI6UmFuZ2UiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgIDwvd2hlbj4NCiAgICAgICAgICAgICAgIDx0aGVuIHhzaTp0eXBlPSJJbnRlcnZhbCI+DQogICAgICAgICAgICAgICAgICA8bG93IHhzaTp0eXBlPSJUb0RhdGVUaW1lIj4NCiAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIHBhdGg9ImxvdyIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iOTE6NS05MjoxMDYiIGxvd0Nsb3NlZD0idHJ1ZSIgaGlnaENsb3NlZD0iZmFsc2UiIHhzaTp0eXBlPSJJbnRlcnZhbCI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICA8bG93IGxvY2F0b3I9IjkxOjE0LTkxOjEwMyIgeHNpOnR5cGU9IkFkZCI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI5MToxNC05MTo1MCIgbmFtZT0iVG9EYXRlIiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI5MTozMy05MTo0OSIgcGF0aD0iYmlydGhEYXRlIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSI5MTozMy05MTozOSIgbmFtZT0iUGF0aWVudCIgeHNpOnR5cGU9IkV4cHJlc3Npb25SZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjkxOjU0LTkxOjEwMyIgbmFtZT0iVG9RdWFudGl0eSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iOTE6NzctOTE6MTAyIiBwYXRoPSJsb3ciIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjkxOjc3LTkxOjk4IiBzdHJpY3Q9ImZhbHNlIiB4c2k6dHlwZT0iQXMiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iOTE6NzgtOTE6ODMiIG5hbWU9ImNob2ljZSIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxhc1R5cGVTcGVjaWZpZXIgbG9jYXRvcj0iOTE6ODgtOTE6OTciIG5hbWU9ImZoaXI6UmFuZ2UiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvc291cmNlPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9sb3c+DQogICAgICAgICAgICAgICAgICAgICAgICAgICA8aGlnaCBsb2NhdG9yPSI5Mjo2LTkyOjEwNSIgeHNpOnR5cGU9IkFkZCI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI5Mjo2LTkyOjk2IiB4c2k6dHlwZT0iQWRkIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjkyOjYtOTI6NDIiIG5hbWU9IlRvRGF0ZSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iOTI6MjUtOTI6NDEiIHBhdGg9ImJpcnRoRGF0ZSIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iOTI6MjUtOTI6MzEiIG5hbWU9IlBhdGllbnQiIHhzaTp0eXBlPSJFeHByZXNzaW9uUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI5Mjo0Ni05Mjo5NiIgbmFtZT0iVG9RdWFudGl0eSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iOTI6NjktOTI6OTUiIHBhdGg9ImhpZ2giIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjkyOjY5LTkyOjkwIiBzdHJpY3Q9ImZhbHNlIiB4c2k6dHlwZT0iQXMiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iOTI6NzAtOTI6NzUiIG5hbWU9ImNob2ljZSIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxhc1R5cGVTcGVjaWZpZXIgbG9jYXRvcj0iOTI6ODAtOTI6ODkiIG5hbWU9ImZoaXI6UmFuZ2UiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvc291cmNlPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iOTI6MTAwLTkyOjEwNSIgdmFsdWU9IjEiIHVuaXQ9InllYXIiIHhzaTp0eXBlPSJRdWFudGl0eSIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9oaWdoPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC9zb3VyY2U+DQogICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICA8L2xvdz4NCiAgICAgICAgICAgICAgICAgIDxsb3dDbG9zZWRFeHByZXNzaW9uIHBhdGg9Imxvd0Nsb3NlZCIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iOTE6NS05MjoxMDYiIGxvd0Nsb3NlZD0idHJ1ZSIgaGlnaENsb3NlZD0iZmFsc2UiIHhzaTp0eXBlPSJJbnRlcnZhbCI+DQogICAgICAgICAgICAgICAgICAgICAgICA8bG93IGxvY2F0b3I9IjkxOjE0LTkxOjEwMyIgeHNpOnR5cGU9IkFkZCI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI5MToxNC05MTo1MCIgbmFtZT0iVG9EYXRlIiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI5MTozMy05MTo0OSIgcGF0aD0iYmlydGhEYXRlIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSI5MTozMy05MTozOSIgbmFtZT0iUGF0aWVudCIgeHNpOnR5cGU9IkV4cHJlc3Npb25SZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjkxOjU0LTkxOjEwMyIgbmFtZT0iVG9RdWFudGl0eSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iOTE6NzctOTE6MTAyIiBwYXRoPSJsb3ciIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjkxOjc3LTkxOjk4IiBzdHJpY3Q9ImZhbHNlIiB4c2k6dHlwZT0iQXMiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iOTE6NzgtOTE6ODMiIG5hbWU9ImNob2ljZSIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxhc1R5cGVTcGVjaWZpZXIgbG9jYXRvcj0iOTE6ODgtOTE6OTciIG5hbWU9ImZoaXI6UmFuZ2UiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvc291cmNlPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC9sb3c+DQogICAgICAgICAgICAgICAgICAgICAgICA8aGlnaCBsb2NhdG9yPSI5Mjo2LTkyOjEwNSIgeHNpOnR5cGU9IkFkZCI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI5Mjo2LTkyOjk2IiB4c2k6dHlwZT0iQWRkIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjkyOjYtOTI6NDIiIG5hbWU9IlRvRGF0ZSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iOTI6MjUtOTI6NDEiIHBhdGg9ImJpcnRoRGF0ZSIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iOTI6MjUtOTI6MzEiIG5hbWU9IlBhdGllbnQiIHhzaTp0eXBlPSJFeHByZXNzaW9uUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI5Mjo0Ni05Mjo5NiIgbmFtZT0iVG9RdWFudGl0eSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iOTI6NjktOTI6OTUiIHBhdGg9ImhpZ2giIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjkyOjY5LTkyOjkwIiBzdHJpY3Q9ImZhbHNlIiB4c2k6dHlwZT0iQXMiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iOTI6NzAtOTI6NzUiIG5hbWU9ImNob2ljZSIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxhc1R5cGVTcGVjaWZpZXIgbG9jYXRvcj0iOTI6ODAtOTI6ODkiIG5hbWU9ImZoaXI6UmFuZ2UiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvc291cmNlPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iOTI6MTAwLTkyOjEwNSIgdmFsdWU9IjEiIHVuaXQ9InllYXIiIHhzaTp0eXBlPSJRdWFudGl0eSIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC9oaWdoPg0KICAgICAgICAgICAgICAgICAgICAgPC9zb3VyY2U+DQogICAgICAgICAgICAgICAgICA8L2xvd0Nsb3NlZEV4cHJlc3Npb24+DQogICAgICAgICAgICAgICAgICA8aGlnaCB4c2k6dHlwZT0iVG9EYXRlVGltZSI+DQogICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBwYXRoPSJoaWdoIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSI5MTo1LTkyOjEwNiIgbG93Q2xvc2VkPSJ0cnVlIiBoaWdoQ2xvc2VkPSJmYWxzZSIgeHNpOnR5cGU9IkludGVydmFsIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDxsb3cgbG9jYXRvcj0iOTE6MTQtOTE6MTAzIiB4c2k6dHlwZT0iQWRkIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjkxOjE0LTkxOjUwIiBuYW1lPSJUb0RhdGUiIGxpYnJhcnlOYW1lPSJGSElSSGVscGVycyIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjkxOjMzLTkxOjQ5IiBwYXRoPSJiaXJ0aERhdGUiIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjkxOjMzLTkxOjM5IiBuYW1lPSJQYXRpZW50IiB4c2k6dHlwZT0iRXhwcmVzc2lvblJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iOTE6NTQtOTE6MTAzIiBuYW1lPSJUb1F1YW50aXR5IiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI5MTo3Ny05MToxMDIiIHBhdGg9ImxvdyIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iOTE6NzctOTE6OTgiIHN0cmljdD0iZmFsc2UiIHhzaTp0eXBlPSJBcyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI5MTo3OC05MTo4MyIgbmFtZT0iY2hvaWNlIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGFzVHlwZVNwZWNpZmllciBsb2NhdG9yPSI5MTo4OC05MTo5NyIgbmFtZT0iZmhpcjpSYW5nZSIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9zb3VyY2U+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICA8L2xvdz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDxoaWdoIGxvY2F0b3I9IjkyOjYtOTI6MTA1IiB4c2k6dHlwZT0iQWRkIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjkyOjYtOTI6OTYiIHhzaTp0eXBlPSJBZGQiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iOTI6Ni05Mjo0MiIgbmFtZT0iVG9EYXRlIiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI5MjoyNS05Mjo0MSIgcGF0aD0iYmlydGhEYXRlIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSI5MjoyNS05MjozMSIgbmFtZT0iUGF0aWVudCIgeHNpOnR5cGU9IkV4cHJlc3Npb25SZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjkyOjQ2LTkyOjk2IiBuYW1lPSJUb1F1YW50aXR5IiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI5Mjo2OS05Mjo5NSIgcGF0aD0iaGlnaCIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iOTI6NjktOTI6OTAiIHN0cmljdD0iZmFsc2UiIHhzaTp0eXBlPSJBcyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI5Mjo3MC05Mjo3NSIgbmFtZT0iY2hvaWNlIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGFzVHlwZVNwZWNpZmllciBsb2NhdG9yPSI5Mjo4MC05Mjo4OSIgbmFtZT0iZmhpcjpSYW5nZSIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9zb3VyY2U+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI5MjoxMDAtOTI6MTA1IiB2YWx1ZT0iMSIgdW5pdD0ieWVhciIgeHNpOnR5cGU9IlF1YW50aXR5Ii8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICA8L2hpZ2g+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3NvdXJjZT4NCiAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgIDwvaGlnaD4NCiAgICAgICAgICAgICAgICAgIDxoaWdoQ2xvc2VkRXhwcmVzc2lvbiBwYXRoPSJoaWdoQ2xvc2VkIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSI5MTo1LTkyOjEwNiIgbG93Q2xvc2VkPSJ0cnVlIiBoaWdoQ2xvc2VkPSJmYWxzZSIgeHNpOnR5cGU9IkludGVydmFsIj4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxsb3cgbG9jYXRvcj0iOTE6MTQtOTE6MTAzIiB4c2k6dHlwZT0iQWRkIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjkxOjE0LTkxOjUwIiBuYW1lPSJUb0RhdGUiIGxpYnJhcnlOYW1lPSJGSElSSGVscGVycyIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjkxOjMzLTkxOjQ5IiBwYXRoPSJiaXJ0aERhdGUiIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjkxOjMzLTkxOjM5IiBuYW1lPSJQYXRpZW50IiB4c2k6dHlwZT0iRXhwcmVzc2lvblJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iOTE6NTQtOTE6MTAzIiBuYW1lPSJUb1F1YW50aXR5IiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI5MTo3Ny05MToxMDIiIHBhdGg9ImxvdyIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iOTE6NzctOTE6OTgiIHN0cmljdD0iZmFsc2UiIHhzaTp0eXBlPSJBcyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI5MTo3OC05MTo4MyIgbmFtZT0iY2hvaWNlIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGFzVHlwZVNwZWNpZmllciBsb2NhdG9yPSI5MTo4OC05MTo5NyIgbmFtZT0iZmhpcjpSYW5nZSIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9zb3VyY2U+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICA8L2xvdz4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxoaWdoIGxvY2F0b3I9IjkyOjYtOTI6MTA1IiB4c2k6dHlwZT0iQWRkIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjkyOjYtOTI6OTYiIHhzaTp0eXBlPSJBZGQiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iOTI6Ni05Mjo0MiIgbmFtZT0iVG9EYXRlIiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI5MjoyNS05Mjo0MSIgcGF0aD0iYmlydGhEYXRlIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSI5MjoyNS05MjozMSIgbmFtZT0iUGF0aWVudCIgeHNpOnR5cGU9IkV4cHJlc3Npb25SZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjkyOjQ2LTkyOjk2IiBuYW1lPSJUb1F1YW50aXR5IiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI5Mjo2OS05Mjo5NSIgcGF0aD0iaGlnaCIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iOTI6NjktOTI6OTAiIHN0cmljdD0iZmFsc2UiIHhzaTp0eXBlPSJBcyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI5Mjo3MC05Mjo3NSIgbmFtZT0iY2hvaWNlIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGFzVHlwZVNwZWNpZmllciBsb2NhdG9yPSI5Mjo4MC05Mjo4OSIgbmFtZT0iZmhpcjpSYW5nZSIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9zb3VyY2U+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI5MjoxMDAtOTI6MTA1IiB2YWx1ZT0iMSIgdW5pdD0ieWVhciIgeHNpOnR5cGU9IlF1YW50aXR5Ii8+DQogICAgICAgICAgICAgICAgICAgICAgICA8L2hpZ2g+DQogICAgICAgICAgICAgICAgICAgICA8L3NvdXJjZT4NCiAgICAgICAgICAgICAgICAgIDwvaGlnaENsb3NlZEV4cHJlc3Npb24+DQogICAgICAgICAgICAgICA8L3RoZW4+DQogICAgICAgICAgICA8L2Nhc2VJdGVtPg0KICAgICAgICAgICAgPGNhc2VJdGVtIGxvY2F0b3I9IjkzOjUtOTQ6MTE0Ij4NCiAgICAgICAgICAgICAgIDx3aGVuIGxvY2F0b3I9IjkzOjEwLTkzOjMwIiB4c2k6dHlwZT0iSXMiPg0KICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iOTM6MTAtOTM6MTUiIG5hbWU9ImNob2ljZSIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgICAgIDxpc1R5cGVTcGVjaWZpZXIgbG9jYXRvcj0iOTM6MjAtOTM6MzAiIG5hbWU9ImZoaXI6VGltaW5nIiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICAgICAgICA8L3doZW4+DQogICAgICAgICAgICAgICA8dGhlbiBsb2NhdG9yPSI5NDo1LTk0OjExNCIgeHNpOnR5cGU9Ik1lc3NhZ2UiPg0KICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSI5NDoxMy05NDozOCIgc3RyaWN0PSJmYWxzZSIgeHNpOnR5cGU9IkFzIj4NCiAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9Ijk0OjEzLTk0OjE2IiB4c2k6dHlwZT0iTnVsbCIvPg0KICAgICAgICAgICAgICAgICAgICAgPGFzVHlwZVNwZWNpZmllciBsb2NhdG9yPSI5NDoyMS05NDozOCIgeHNpOnR5cGU9IkludGVydmFsVHlwZVNwZWNpZmllciI+DQogICAgICAgICAgICAgICAgICAgICAgICA8cG9pbnRUeXBlIGxvY2F0b3I9Ijk0OjMwLTk0OjM3IiBuYW1lPSJ0OkRhdGVUaW1lIiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICAgICAgICAgICAgICA8L2FzVHlwZVNwZWNpZmllcj4NCiAgICAgICAgICAgICAgICAgIDwvc291cmNlPg0KICAgICAgICAgICAgICAgICAgPGNvbmRpdGlvbiBsb2NhdG9yPSI5NDo0MS05NDo0NCIgdmFsdWVUeXBlPSJ0OkJvb2xlYW4iIHZhbHVlPSJ0cnVlIiB4c2k6dHlwZT0iTGl0ZXJhbCIvPg0KICAgICAgICAgICAgICAgICAgPGNvZGUgbG9jYXRvcj0iOTQ6NDctOTQ6NDkiIHZhbHVlVHlwZT0idDpTdHJpbmciIHZhbHVlPSIxIiB4c2k6dHlwZT0iTGl0ZXJhbCIvPg0KICAgICAgICAgICAgICAgICAgPHNldmVyaXR5IGxvY2F0b3I9Ijk0OjUyLTk0OjU4IiB2YWx1ZVR5cGU9InQ6U3RyaW5nIiB2YWx1ZT0iRXJyb3IiIHhzaTp0eXBlPSJMaXRlcmFsIi8+DQogICAgICAgICAgICAgICAgICA8bWVzc2FnZSBsb2NhdG9yPSI5NDo2MS05NDoxMTMiIHZhbHVlVHlwZT0idDpTdHJpbmciIHZhbHVlPSJDYW5ub3QgY29tcHV0ZSBhIHNpbmdsZSBpbnRlcnZhbCBmcm9tIGEgVGltaW5nIHR5cGUiIHhzaTp0eXBlPSJMaXRlcmFsIi8+DQogICAgICAgICAgICAgICA8L3RoZW4+DQogICAgICAgICAgICA8L2Nhc2VJdGVtPg0KICAgICAgICAgICAgPGNhc2VJdGVtIGxvY2F0b3I9Ijk1OjUtOTY6MTExIj4NCiAgICAgICAgICAgICAgIDx3aGVuIGxvY2F0b3I9Ijk1OjEwLTk1OjMwIiB4c2k6dHlwZT0iSXMiPg0KICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iOTU6MTAtOTU6MTUiIG5hbWU9ImNob2ljZSIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgICAgIDxpc1R5cGVTcGVjaWZpZXIgbG9jYXRvcj0iOTU6MjAtOTU6MzAiIG5hbWU9ImZoaXI6c3RyaW5nIiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICAgICAgICA8L3doZW4+DQogICAgICAgICAgICAgICA8dGhlbiBsb2NhdG9yPSI5Njo3LTk2OjExMSIgeHNpOnR5cGU9Ik1lc3NhZ2UiPg0KICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSI5NjoxNS05Njo0MCIgc3RyaWN0PSJmYWxzZSIgeHNpOnR5cGU9IkFzIj4NCiAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9Ijk2OjE1LTk2OjE4IiB4c2k6dHlwZT0iTnVsbCIvPg0KICAgICAgICAgICAgICAgICAgICAgPGFzVHlwZVNwZWNpZmllciBsb2NhdG9yPSI5NjoyMy05Njo0MCIgeHNpOnR5cGU9IkludGVydmFsVHlwZVNwZWNpZmllciI+DQogICAgICAgICAgICAgICAgICAgICAgICA8cG9pbnRUeXBlIGxvY2F0b3I9Ijk2OjMyLTk2OjM5IiBuYW1lPSJ0OkRhdGVUaW1lIiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICAgICAgICAgICAgICA8L2FzVHlwZVNwZWNpZmllcj4NCiAgICAgICAgICAgICAgICAgIDwvc291cmNlPg0KICAgICAgICAgICAgICAgICAgPGNvbmRpdGlvbiBsb2NhdG9yPSI5Njo0My05Njo0NiIgdmFsdWVUeXBlPSJ0OkJvb2xlYW4iIHZhbHVlPSJ0cnVlIiB4c2k6dHlwZT0iTGl0ZXJhbCIvPg0KICAgICAgICAgICAgICAgICAgPGNvZGUgbG9jYXRvcj0iOTY6NDktOTY6NTEiIHZhbHVlVHlwZT0idDpTdHJpbmciIHZhbHVlPSIxIiB4c2k6dHlwZT0iTGl0ZXJhbCIvPg0KICAgICAgICAgICAgICAgICAgPHNldmVyaXR5IGxvY2F0b3I9Ijk2OjU0LTk2OjYwIiB2YWx1ZVR5cGU9InQ6U3RyaW5nIiB2YWx1ZT0iRXJyb3IiIHhzaTp0eXBlPSJMaXRlcmFsIi8+DQogICAgICAgICAgICAgICAgICA8bWVzc2FnZSBsb2NhdG9yPSI5Njo2My05NjoxMTAiIHZhbHVlVHlwZT0idDpTdHJpbmciIHZhbHVlPSJDYW5ub3QgY29tcHV0ZSBhbiBpbnRlcnZhbCBmcm9tIGEgU3RyaW5nIHZhbHVlIiB4c2k6dHlwZT0iTGl0ZXJhbCIvPg0KICAgICAgICAgICAgICAgPC90aGVuPg0KICAgICAgICAgICAgPC9jYXNlSXRlbT4NCiAgICAgICAgICAgIDxlbHNlIGxvY2F0b3I9Ijk4OjctOTg6MzIiIHN0cmljdD0iZmFsc2UiIHhzaTp0eXBlPSJBcyI+DQogICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSI5ODo3LTk4OjEwIiB4c2k6dHlwZT0iTnVsbCIvPg0KICAgICAgICAgICAgICAgPGFzVHlwZVNwZWNpZmllciBsb2NhdG9yPSI5ODoxNS05ODozMiIgeHNpOnR5cGU9IkludGVydmFsVHlwZVNwZWNpZmllciI+DQogICAgICAgICAgICAgICAgICA8cG9pbnRUeXBlIGxvY2F0b3I9Ijk4OjI0LTk4OjMxIiBuYW1lPSJ0OkRhdGVUaW1lIiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICAgICAgICA8L2FzVHlwZVNwZWNpZmllcj4NCiAgICAgICAgICAgIDwvZWxzZT4NCiAgICAgICAgIDwvZXhwcmVzc2lvbj4NCiAgICAgICAgIDxvcGVyYW5kIG5hbWU9ImNob2ljZSI+DQogICAgICAgICAgICA8b3BlcmFuZFR5cGVTcGVjaWZpZXIgbG9jYXRvcj0iNzk6MzUtNzk6MTMwIiB4c2k6dHlwZT0iQ2hvaWNlVHlwZVNwZWNpZmllciI+DQogICAgICAgICAgICAgICA8Y2hvaWNlIGxvY2F0b3I9Ijc5OjQyLTc5OjU0IiBuYW1lPSJmaGlyOmRhdGVUaW1lIiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICAgICAgICA8Y2hvaWNlIGxvY2F0b3I9Ijc5OjU3LTc5OjY3IiBuYW1lPSJmaGlyOlBlcmlvZCIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgPGNob2ljZSBsb2NhdG9yPSI3OTo3MC03OTo4MCIgbmFtZT0iZmhpcjpUaW1pbmciIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgIDxjaG9pY2UgbG9jYXRvcj0iNzk6ODMtNzk6OTQiIG5hbWU9ImZoaXI6aW5zdGFudCIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgPGNob2ljZSBsb2NhdG9yPSI3OTo5Ny03OToxMDciIG5hbWU9ImZoaXI6c3RyaW5nIiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICAgICAgICA8Y2hvaWNlIGxvY2F0b3I9Ijc5OjExMC03OToxMTciIG5hbWU9ImZoaXI6QWdlIiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICAgICAgICA8Y2hvaWNlIGxvY2F0b3I9Ijc5OjEyMC03OToxMjkiIG5hbWU9ImZoaXI6UmFuZ2UiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgIDwvb3BlcmFuZFR5cGVTcGVjaWZpZXI+DQogICAgICAgICA8L29wZXJhbmQ+DQogICAgICA8L2RlZj4NCiAgICAgIDxkZWYgbG9jYXRvcj0iMTA3OjEtMTA5OjI0IiBuYW1lPSJUb0ludGVydmFsRnJvbUxpc3QiIGNvbnRleHQ9IlBhdGllbnQiIGFjY2Vzc0xldmVsPSJQdWJsaWMiIHhzaTp0eXBlPSJGdW5jdGlvbkRlZiI+DQogICAgICAgICA8YW5ub3RhdGlvbiB4c2k6dHlwZT0iYTpBbm5vdGF0aW9uIj4NCiAgICAgICAgICAgIDxhOnQgbmFtZT0iZGVzY3JpcHRpb24iIHZhbHVlPSJSZXR1cm5zIGEgbGlzdCBvZiBpbnRlcnZhbHMgcmVwcmVzZW50aW5nIHRoZSBub3JtYWxpemVkIEV2ZW50IG9yIEJvdW5kcyBvZiBhIFRpbWluZyByZXNvdXJjZS4iLz4NCiAgICAgICAgICAgIDxhOnQgbmFtZT0iY29tbWVudCIgdmFsdWU9Ik5PVEU6IFRpbWluZy5Cb3VuZHMgaXMgcmVzdHJpY3RlZCB0byBhIFBlcmlvZC4iLz4NCiAgICAgICAgIDwvYW5ub3RhdGlvbj4NCiAgICAgICAgIDxleHByZXNzaW9uIGxvY2F0b3I9IjEwODozLTEwOToyNCIgeHNpOnR5cGU9IlF1ZXJ5Ij4NCiAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMTA4OjMtMTA4OjkiIGFsaWFzPSJ2Ij4NCiAgICAgICAgICAgICAgIDxleHByZXNzaW9uIGxvY2F0b3I9IjEwODozLTEwODo3IiBuYW1lPSJ2YWx1ZSIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgIDwvc291cmNlPg0KICAgICAgICAgICAgPHJldHVybiBsb2NhdG9yPSIxMDk6NS0xMDk6MjQiPg0KICAgICAgICAgICAgICAgPGV4cHJlc3Npb24gbG9jYXRvcj0iMTA5OjEyLTEwOToyNCIgbmFtZT0iVG9JbnRlcnZhbCIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIHhzaTp0eXBlPSJBcyI+DQogICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxMDk6MjMiIG5hbWU9InYiIHhzaTp0eXBlPSJBbGlhc1JlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgPGFzVHlwZVNwZWNpZmllciB4c2k6dHlwZT0iQ2hvaWNlVHlwZVNwZWNpZmllciI+DQogICAgICAgICAgICAgICAgICAgICAgICA8Y2hvaWNlIG5hbWU9ImZoaXI6ZGF0ZVRpbWUiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxjaG9pY2UgbmFtZT0iZmhpcjpQZXJpb2QiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxjaG9pY2UgbmFtZT0iZmhpcjpUaW1pbmciIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxjaG9pY2UgbmFtZT0iZmhpcjppbnN0YW50IiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICAgICAgICAgICAgICAgICA8Y2hvaWNlIG5hbWU9ImZoaXI6c3RyaW5nIiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICAgICAgICAgICAgICAgICA8Y2hvaWNlIG5hbWU9ImZoaXI6QWdlIiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICAgICAgICAgICAgICAgICA8Y2hvaWNlIG5hbWU9ImZoaXI6UmFuZ2UiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgIDwvYXNUeXBlU3BlY2lmaWVyPg0KICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgPC9leHByZXNzaW9uPg0KICAgICAgICAgICAgPC9yZXR1cm4+DQogICAgICAgICA8L2V4cHJlc3Npb24+DQogICAgICAgICA8b3BlcmFuZCBuYW1lPSJ2YWx1ZSI+DQogICAgICAgICAgICA8b3BlcmFuZFR5cGVTcGVjaWZpZXIgbG9jYXRvcj0iMTA3OjQyLTEwNzo2MCIgeHNpOnR5cGU9Ikxpc3RUeXBlU3BlY2lmaWVyIj4NCiAgICAgICAgICAgICAgIDxlbGVtZW50VHlwZSBsb2NhdG9yPSIxMDc6NDctMTA3OjU5IiBuYW1lPSJmaGlyOmRhdGVUaW1lIiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICAgICA8L29wZXJhbmRUeXBlU3BlY2lmaWVyPg0KICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgPC9kZWY+DQogICAgICA8ZGVmIGxvY2F0b3I9IjExMToxLTExMjo0MiIgbmFtZT0iTnVsbFRvRW1wdHlJbnRlcnZhbCIgY29udGV4dD0iUGF0aWVudCIgYWNjZXNzTGV2ZWw9IlB1YmxpYyIgeHNpOnR5cGU9IkZ1bmN0aW9uRGVmIj4NCiAgICAgICAgIDxleHByZXNzaW9uIGxvY2F0b3I9IjExMjozLTExMjo0MiIgeHNpOnR5cGU9IklmIj4NCiAgICAgICAgICAgIDxjb25kaXRpb24gbG9jYXRvcj0iMTEyOjYtMTEyOjIyIiB4c2k6dHlwZT0iTm90Ij4NCiAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjExMjo2LTExMjoyMiIgeHNpOnR5cGU9IklzTnVsbCI+DQogICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxMTI6Ni0xMTI6MTAiIG5hbWU9InZhbHVlIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgPC9jb25kaXRpb24+DQogICAgICAgICAgICA8dGhlbiBsb2NhdG9yPSIxMTI6MjktMTEyOjMzIiBuYW1lPSJ2YWx1ZSIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgIDxlbHNlIGxvY2F0b3I9IjExMjo0MC0xMTI6NDIiIHhzaTp0eXBlPSJMaXN0Ii8+DQogICAgICAgICA8L2V4cHJlc3Npb24+DQogICAgICAgICA8b3BlcmFuZCBuYW1lPSJ2YWx1ZSI+DQogICAgICAgICAgICA8b3BlcmFuZFR5cGVTcGVjaWZpZXIgbG9jYXRvcj0iMTExOjQzLTExMTo2NiIgeHNpOnR5cGU9Ikxpc3RUeXBlU3BlY2lmaWVyIj4NCiAgICAgICAgICAgICAgIDxlbGVtZW50VHlwZSBsb2NhdG9yPSIxMTE6NDgtMTExOjY1IiB4c2k6dHlwZT0iSW50ZXJ2YWxUeXBlU3BlY2lmaWVyIj4NCiAgICAgICAgICAgICAgICAgIDxwb2ludFR5cGUgbG9jYXRvcj0iMTExOjU3LTExMTo2NCIgbmFtZT0idDpEYXRlVGltZSIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgPC9lbGVtZW50VHlwZT4NCiAgICAgICAgICAgIDwvb3BlcmFuZFR5cGVTcGVjaWZpZXI+DQogICAgICAgICA8L29wZXJhbmQ+DQogICAgICA8L2RlZj4NCiAgICAgIDxkZWYgbG9jYXRvcj0iMTE0OjEtMTE4OjQ3IiBuYW1lPSJUb1RpbWluZ0ludGVydmFsIiBjb250ZXh0PSJQYXRpZW50IiBhY2Nlc3NMZXZlbD0iUHVibGljIiB4c2k6dHlwZT0iRnVuY3Rpb25EZWYiPg0KICAgICAgICAgPGV4cHJlc3Npb24gbG9jYXRvcj0iMTE1OjMtMTE4OjQ3IiB4c2k6dHlwZT0iRXhjZXB0Ij4NCiAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjExNTozLTExODozMSIgeHNpOnR5cGU9IlF1ZXJ5Ij4NCiAgICAgICAgICAgICAgIDxzb3VyY2UgYWxpYXM9IlgiPg0KICAgICAgICAgICAgICAgICAgPGV4cHJlc3Npb24gbG9jYXRvcj0iMTE1OjExLTExODozIiB4c2k6dHlwZT0iVW5pb24iPg0KICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTE2OjUtMTE2OjU3IiBuYW1lPSJOdWxsVG9FbXB0eUludGVydmFsIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTE2OjI1LTExNjo1NiIgbmFtZT0iVG9JbnRlcnZhbEZyb21MaXN0IiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTE2OjQ0LTExNjo1NSIgcGF0aD0iZXZlbnQiIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjExNjo0NC0xMTY6NDkiIG5hbWU9InRpbWluZyIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjExNzoxMS0xMTc6ODAiIG5hbWU9Ik51bGxUb0VtcHR5SW50ZXJ2YWwiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxMTc6MzEtMTE3Ojc5IiB4c2k6dHlwZT0iTGlzdCI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICA8ZWxlbWVudCBsb2NhdG9yPSIxMTc6MzItMTE3Ojc4IiBuYW1lPSJUb0ludGVydmFsIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgeHNpOnR5cGU9IkFzIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjExNzo0My0xMTc6NzciIHN0cmljdD0iZmFsc2UiIHhzaTp0eXBlPSJBcyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxMTc6NDMtMTE3OjYyIiBwYXRoPSJib3VuZHMiIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjExNzo0My0xMTc6NTUiIHBhdGg9InJlcGVhdCIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMTE3OjQzLTExNzo0OCIgbmFtZT0idGltaW5nIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9zb3VyY2U+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YXNUeXBlU3BlY2lmaWVyIGxvY2F0b3I9IjExNzo2Ny0xMTc6NzciIG5hbWU9ImZoaXI6UGVyaW9kIiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YXNUeXBlU3BlY2lmaWVyIHhzaTp0eXBlPSJDaG9pY2VUeXBlU3BlY2lmaWVyIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxjaG9pY2UgbmFtZT0iZmhpcjpkYXRlVGltZSIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGNob2ljZSBuYW1lPSJmaGlyOlBlcmlvZCIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGNob2ljZSBuYW1lPSJmaGlyOlRpbWluZyIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGNob2ljZSBuYW1lPSJmaGlyOmluc3RhbnQiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxjaG9pY2UgbmFtZT0iZmhpcjpzdHJpbmciIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxjaG9pY2UgbmFtZT0iZmhpcjpBZ2UiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxjaG9pY2UgbmFtZT0iZmhpcjpSYW5nZSIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9hc1R5cGVTcGVjaWZpZXI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICA8L2VsZW1lbnQ+DQogICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICA8L2V4cHJlc3Npb24+DQogICAgICAgICAgICAgICA8L3NvdXJjZT4NCiAgICAgICAgICAgICAgIDxyZXR1cm4gZGlzdGluY3Q9ImZhbHNlIj4NCiAgICAgICAgICAgICAgICAgIDxleHByZXNzaW9uIHhzaTp0eXBlPSJBcyI+DQogICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBuYW1lPSJYIiB4c2k6dHlwZT0iQWxpYXNSZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgIDxhc1R5cGVTcGVjaWZpZXIgeHNpOnR5cGU9IkludGVydmFsVHlwZVNwZWNpZmllciI+DQogICAgICAgICAgICAgICAgICAgICAgICA8cG9pbnRUeXBlIG5hbWU9InQ6RGF0ZVRpbWUiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgIDwvYXNUeXBlU3BlY2lmaWVyPg0KICAgICAgICAgICAgICAgICAgPC9leHByZXNzaW9uPg0KICAgICAgICAgICAgICAgPC9yZXR1cm4+DQogICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICA8b3BlcmFuZCB4c2k6dHlwZT0iUXVlcnkiPg0KICAgICAgICAgICAgICAgPHNvdXJjZSBhbGlhcz0iWCI+DQogICAgICAgICAgICAgICAgICA8ZXhwcmVzc2lvbiBsb2NhdG9yPSIxMTg6NDAtMTE4OjQ3IiB4c2k6dHlwZT0iTGlzdCI+DQogICAgICAgICAgICAgICAgICAgICA8ZWxlbWVudCBsb2NhdG9yPSIxMTg6NDItMTE4OjQ1IiB4c2k6dHlwZT0iTnVsbCIvPg0KICAgICAgICAgICAgICAgICAgPC9leHByZXNzaW9uPg0KICAgICAgICAgICAgICAgPC9zb3VyY2U+DQogICAgICAgICAgICAgICA8cmV0dXJuIGRpc3RpbmN0PSJmYWxzZSI+DQogICAgICAgICAgICAgICAgICA8ZXhwcmVzc2lvbiB4c2k6dHlwZT0iQXMiPg0KICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbmFtZT0iWCIgeHNpOnR5cGU9IkFsaWFzUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICA8YXNUeXBlU3BlY2lmaWVyIHhzaTp0eXBlPSJJbnRlcnZhbFR5cGVTcGVjaWZpZXIiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPHBvaW50VHlwZSBuYW1lPSJ0OkRhdGVUaW1lIiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICAgICAgICAgICAgICA8L2FzVHlwZVNwZWNpZmllcj4NCiAgICAgICAgICAgICAgICAgIDwvZXhwcmVzc2lvbj4NCiAgICAgICAgICAgICAgIDwvcmV0dXJuPg0KICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgPC9leHByZXNzaW9uPg0KICAgICAgICAgPG9wZXJhbmQgbmFtZT0idGltaW5nIj4NCiAgICAgICAgICAgIDxvcGVyYW5kVHlwZVNwZWNpZmllciBsb2NhdG9yPSIxMTQ6NDEtMTE0OjUxIiBuYW1lPSJmaGlyOlRpbWluZyIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgPC9kZWY+DQogICAgICA8ZGVmIGxvY2F0b3I9IjEzNToxLTE1NDoxMCIgbmFtZT0iVG9BYmF0ZW1lbnRJbnRlcnZhbCIgY29udGV4dD0iUGF0aWVudCIgYWNjZXNzTGV2ZWw9IlB1YmxpYyIgeHNpOnR5cGU9IkZ1bmN0aW9uRGVmIj4NCiAgICAgICAgIDxhbm5vdGF0aW9uIHhzaTp0eXBlPSJhOkFubm90YXRpb24iPg0KICAgICAgICAgICAgPGE6dCBuYW1lPSJkZXNjcmlwdGlvbiIgdmFsdWU9InJldHVybnMgdGhlIGV4aXN0aW5nIHBvc3NpYmxlIHRpbWVzdGFtcCBmb3Igb2JzZXJ2YXRpb24gcmVzb3VyY2VzLCBwcmVmZXJyaW5nIGVmZmVjdGl2ZSBvdmVyIGlzc3VlZC4iLz4NCiAgICAgICAgICAgIDxhOnQgbmFtZT0iY29tbWVudCIgdmFsdWU9Ik5PVEU6IG5laXRoZXIgZWZmZWN0aXZlIG5vciBpc3N1ZWQgYXJlIHJlcXVpcmVkIGZpZWxkcyBpbiBRSS1Db3JlJiN4YTtOT1RFOiBGdW5jdGlvbiBvdmVybG9hZHMgaW5jb25zaXN0ZW50bHkgZXJyIGluIENRTCAxLjUsIHRoaXMgaXMgY29tbWVudGVkIHVudGlsIGEgZml4IGlzIGZvdW5kJiN4YTtkZWZpbmUgZnVuY3Rpb24gVG9JbnRlcnZhbChvYnNlcnZhdGlvbiBGSElSLk9ic2VydmF0aW9uKTomI3hhOyAgb2JzZXJ2YXRpb24gbyYjeGE7ICAgIHJldHVybiBDb2FsZXNjZShUb0ludGVydmFsKG8uZWZmZWN0aXZlKSwgVG9JbnRlcnZhbChvLmlzc3VlZCkpIi8+DQogICAgICAgICAgICA8YTp0IG5hbWU9ImRlc2NyaXB0aW9uIiB2YWx1ZT0iUmV0dXJucyBhbiBpbnRlcnZhbCByZXByZXNlbnRpbmcgdGhlIG5vcm1hbGl6ZWQgQWJhdGVtZW50IG9mIGEgZ2l2ZW4gQ29uZGl0aW9uIHJlc291cmNlLiIvPg0KICAgICAgICAgICAgPGE6dCBuYW1lPSJjb21tZW50IiB2YWx1ZT0iTk9URTogRHVlIHRvIHRoZSBjb21wbGV4aXR5IG9mIGRldGVybWluaW5nIGFuIGludGVydmFsIGZyb20gYSBTdHJpbmcsIHRoaXMgZnVuY3Rpb24gd2lsbCB0aHJvdyYjeGE7YSBydW4tdGltZSBleGNlcHRpb24gaWYgdXNlZCB3aXRoIGEgQ29uZGl0aW9uIGluc3RhbmNlIHRoYXQgaGFzIGEgU3RyaW5nIGFzIHRoZSBhYmF0ZW1lbnQgdmFsdWUuIi8+DQogICAgICAgICA8L2Fubm90YXRpb24+DQogICAgICAgICA8ZXhwcmVzc2lvbiBsb2NhdG9yPSIxMzY6My0xNTQ6MTAiIHhzaTp0eXBlPSJJZiI+DQogICAgICAgICAgICA8Y29uZGl0aW9uIGxvY2F0b3I9IjEzNjo2LTEzODo0NCIgeHNpOnR5cGU9IkFuZCI+DQogICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxMzY6Ni0xMzY6NjQiIHhzaTp0eXBlPSJBbmQiPg0KICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTM2OjYtMTM2OjMyIiB4c2k6dHlwZT0iTm90Ij4NCiAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjEzNjo2LTEzNjozMiIgeHNpOnR5cGU9IklzTnVsbCI+DQogICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxMzY6Ni0xMzY6MjAiIHBhdGg9Im9uc2V0IiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxMzY6Ni0xMzY6MTQiIG5hbWU9ImNvbmRpdGlvbiIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjEzNjozOC0xMzY6NjQiIHhzaTp0eXBlPSJJc051bGwiPg0KICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTM2OjM4LTEzNjo1NiIgcGF0aD0iYWJhdGVtZW50IiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxMzY6MzgtMTM2OjQ2IiBuYW1lPSJjb25kaXRpb24iIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxMzY6NzAtMTM4OjQ0IiB4c2k6dHlwZT0iT3IiPg0KICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTM2OjcxLTEzNzo0NiIgeHNpOnR5cGU9Ik9yIj4NCiAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjEzNjo3MS0xMzY6MTA1IiB4c2k6dHlwZT0iRXF1aXZhbGVudCI+DQogICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBuYW1lPSJUb0NvbmNlcHQiIGxpYnJhcnlOYW1lPSJGSElSSGVscGVycyIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjEzNjo3MS0xMzY6OTQiIHBhdGg9ImNsaW5pY2FsU3RhdHVzIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxMzY6NzEtMTM2Ojc5IiBuYW1lPSJjb25kaXRpb24iIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCB4c2k6dHlwZT0iVG9Db25jZXB0Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjEzNjo5OC0xMzY6MTA1IiBuYW1lPSJhY3RpdmUiIHhzaTp0eXBlPSJDb2RlUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxMzc6OC0xMzc6NDYiIHhzaTp0eXBlPSJFcXVpdmFsZW50Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIG5hbWU9IlRvQ29uY2VwdCIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTM3OjgtMTM3OjMxIiBwYXRoPSJjbGluaWNhbFN0YXR1cyIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMTM3OjgtMTM3OjE2IiBuYW1lPSJjb25kaXRpb24iIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCB4c2k6dHlwZT0iVG9Db25jZXB0Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjEzNzozNS0xMzc6NDYiIG5hbWU9InJlY3VycmVuY2UiIHhzaTp0eXBlPSJDb2RlUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxMzg6OC0xMzg6NDMiIHhzaTp0eXBlPSJFcXVpdmFsZW50Ij4NCiAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIG5hbWU9IlRvQ29uY2VwdCIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTM4OjgtMTM4OjMxIiBwYXRoPSJjbGluaWNhbFN0YXR1cyIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMTM4OjgtMTM4OjE2IiBuYW1lPSJjb25kaXRpb24iIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCB4c2k6dHlwZT0iVG9Db25jZXB0Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjEzODozNS0xMzg6NDMiIG5hbWU9InJlbGFwc2UiIHhzaTp0eXBlPSJDb2RlUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICA8L2NvbmRpdGlvbj4NCiAgICAgICAgICAgIDx0aGVuIGxvY2F0b3I9IjEzOTo1LTEzOToyNiIgbG93Q2xvc2VkPSJ0cnVlIiBoaWdoQ2xvc2VkPSJ0cnVlIiB4c2k6dHlwZT0iSW50ZXJ2YWwiPg0KICAgICAgICAgICAgICAgPGxvdyBsb2NhdG9yPSIxMzk6MTQtMTM5OjE4IiB4c2k6dHlwZT0iTm93Ii8+DQogICAgICAgICAgICAgICA8aGlnaCBsb2NhdG9yPSIxMzk6MjEtMTM5OjI1IiB4c2k6dHlwZT0iTm93Ii8+DQogICAgICAgICAgICA8L3RoZW4+DQogICAgICAgICAgICA8ZWxzZSBsb2NhdG9yPSIxNDA6OC0xNTQ6MTAiIHhzaTp0eXBlPSJJZiI+DQogICAgICAgICAgICAgICA8Y29uZGl0aW9uIGxvY2F0b3I9IjE0MDoxMS0xNDA6NDYiIHhzaTp0eXBlPSJJcyI+DQogICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNDA6MTEtMTQwOjI5IiBwYXRoPSJhYmF0ZW1lbnQiIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjE0MDoxMS0xNDA6MTkiIG5hbWU9ImNvbmRpdGlvbiIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgIDxpc1R5cGVTcGVjaWZpZXIgbG9jYXRvcj0iMTQwOjM0LTE0MDo0NiIgbmFtZT0iZmhpcjpkYXRlVGltZSIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgPC9jb25kaXRpb24+DQogICAgICAgICAgICAgICA8dGhlbiBsb2NhdG9yPSIxNDE6NC0xNDE6MTM1IiBsb3dDbG9zZWQ9InRydWUiIGhpZ2hDbG9zZWQ9InRydWUiIHhzaTp0eXBlPSJJbnRlcnZhbCI+DQogICAgICAgICAgICAgICAgICA8bG93IGxvY2F0b3I9IjE0MToxMy0xNDE6NzIiIG5hbWU9IlRvRGF0ZVRpbWUiIGxpYnJhcnlOYW1lPSJGSElSSGVscGVycyIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE0MTozNi0xNDE6NzEiIHN0cmljdD0iZmFsc2UiIHhzaTp0eXBlPSJBcyI+DQogICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNDE6MzYtMTQxOjU0IiBwYXRoPSJhYmF0ZW1lbnQiIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjE0MTozNi0xNDE6NDQiIG5hbWU9ImNvbmRpdGlvbiIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxhc1R5cGVTcGVjaWZpZXIgbG9jYXRvcj0iMTQxOjU5LTE0MTo3MSIgbmFtZT0iZmhpcjpkYXRlVGltZSIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgPC9sb3c+DQogICAgICAgICAgICAgICAgICA8aGlnaCBsb2NhdG9yPSIxNDE6NzUtMTQxOjEzNCIgbmFtZT0iVG9EYXRlVGltZSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTQxOjk4LTE0MToxMzMiIHN0cmljdD0iZmFsc2UiIHhzaTp0eXBlPSJBcyI+DQogICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNDE6OTgtMTQxOjExNiIgcGF0aD0iYWJhdGVtZW50IiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNDE6OTgtMTQxOjEwNiIgbmFtZT0iY29uZGl0aW9uIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgPGFzVHlwZVNwZWNpZmllciBsb2NhdG9yPSIxNDE6MTIxLTE0MToxMzMiIG5hbWU9ImZoaXI6ZGF0ZVRpbWUiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgIDwvaGlnaD4NCiAgICAgICAgICAgICAgIDwvdGhlbj4NCiAgICAgICAgICAgICAgIDxlbHNlIGxvY2F0b3I9IjE0Mjo3LTE1NDoxMCIgeHNpOnR5cGU9IklmIj4NCiAgICAgICAgICAgICAgICAgIDxjb25kaXRpb24gbG9jYXRvcj0iMTQyOjEwLTE0Mjo0MyIgeHNpOnR5cGU9IklzIj4NCiAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE0MjoxMC0xNDI6MjgiIHBhdGg9ImFiYXRlbWVudCIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMTQyOjEwLTE0MjoxOCIgbmFtZT0iY29uZGl0aW9uIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgPGlzVHlwZVNwZWNpZmllciBsb2NhdG9yPSIxNDI6MzMtMTQyOjQzIiBuYW1lPSJmaGlyOlBlcmlvZCIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgICAgPC9jb25kaXRpb24+DQogICAgICAgICAgICAgICAgICA8dGhlbiBsb2NhdG9yPSIxNDM6NC0xNDM6NjEiIG5hbWU9IlRvSW50ZXJ2YWwiIGxpYnJhcnlOYW1lPSJGSElSSGVscGVycyIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE0MzoyNy0xNDM6NjAiIHN0cmljdD0iZmFsc2UiIHhzaTp0eXBlPSJBcyI+DQogICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNDM6MjctMTQzOjQ1IiBwYXRoPSJhYmF0ZW1lbnQiIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjE0MzoyNy0xNDM6MzUiIG5hbWU9ImNvbmRpdGlvbiIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxhc1R5cGVTcGVjaWZpZXIgbG9jYXRvcj0iMTQzOjUwLTE0Mzo2MCIgbmFtZT0iZmhpcjpQZXJpb2QiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgIDwvdGhlbj4NCiAgICAgICAgICAgICAgICAgIDxlbHNlIGxvY2F0b3I9IjE0NDo3LTE1NDoxMCIgeHNpOnR5cGU9IklmIj4NCiAgICAgICAgICAgICAgICAgICAgIDxjb25kaXRpb24gbG9jYXRvcj0iMTQ0OjEwLTE0NDo0MyIgeHNpOnR5cGU9IklzIj4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE0NDoxMC0xNDQ6MjgiIHBhdGg9ImFiYXRlbWVudCIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMTQ0OjEwLTE0NDoxOCIgbmFtZT0iY29uZGl0aW9uIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgPGlzVHlwZVNwZWNpZmllciBsb2NhdG9yPSIxNDQ6MzMtMTQ0OjQzIiBuYW1lPSJmaGlyOnN0cmluZyIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgICAgICAgPC9jb25kaXRpb24+DQogICAgICAgICAgICAgICAgICAgICA8dGhlbiBsb2NhdG9yPSIxNDU6NS0xNDU6MTA5IiB4c2k6dHlwZT0iTWVzc2FnZSI+DQogICAgICAgICAgICAgICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjE0NToxMy0xNDU6MzgiIHN0cmljdD0iZmFsc2UiIHhzaTp0eXBlPSJBcyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNDU6MTMtMTQ1OjE2IiB4c2k6dHlwZT0iTnVsbCIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgPGFzVHlwZVNwZWNpZmllciBsb2NhdG9yPSIxNDU6MjEtMTQ1OjM4IiB4c2k6dHlwZT0iSW50ZXJ2YWxUeXBlU3BlY2lmaWVyIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxwb2ludFR5cGUgbG9jYXRvcj0iMTQ1OjMwLTE0NTozNyIgbmFtZT0idDpEYXRlVGltZSIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9hc1R5cGVTcGVjaWZpZXI+DQogICAgICAgICAgICAgICAgICAgICAgICA8L3NvdXJjZT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDxjb25kaXRpb24gbG9jYXRvcj0iMTQ1OjQxLTE0NTo0NCIgdmFsdWVUeXBlPSJ0OkJvb2xlYW4iIHZhbHVlPSJ0cnVlIiB4c2k6dHlwZT0iTGl0ZXJhbCIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgPGNvZGUgbG9jYXRvcj0iMTQ1OjQ3LTE0NTo0OSIgdmFsdWVUeXBlPSJ0OlN0cmluZyIgdmFsdWU9IjEiIHhzaTp0eXBlPSJMaXRlcmFsIi8+DQogICAgICAgICAgICAgICAgICAgICAgICA8c2V2ZXJpdHkgbG9jYXRvcj0iMTQ1OjUyLTE0NTo1OCIgdmFsdWVUeXBlPSJ0OlN0cmluZyIgdmFsdWU9IkVycm9yIiB4c2k6dHlwZT0iTGl0ZXJhbCIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgPG1lc3NhZ2UgbG9jYXRvcj0iMTQ1OjYxLTE0NToxMDgiIHZhbHVlVHlwZT0idDpTdHJpbmciIHZhbHVlPSJDYW5ub3QgY29tcHV0ZSBhbiBpbnRlcnZhbCBmcm9tIGEgU3RyaW5nIHZhbHVlIiB4c2k6dHlwZT0iTGl0ZXJhbCIvPg0KICAgICAgICAgICAgICAgICAgICAgPC90aGVuPg0KICAgICAgICAgICAgICAgICAgICAgPGVsc2UgbG9jYXRvcj0iMTQ2OjctMTU0OjEwIiB4c2k6dHlwZT0iSWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPGNvbmRpdGlvbiBsb2NhdG9yPSIxNDY6MTAtMTQ2OjQwIiB4c2k6dHlwZT0iSXMiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTQ2OjEwLTE0NjoyOCIgcGF0aD0iYWJhdGVtZW50IiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNDY6MTAtMTQ2OjE4IiBuYW1lPSJjb25kaXRpb24iIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICA8aXNUeXBlU3BlY2lmaWVyIGxvY2F0b3I9IjE0NjozMy0xNDY6NDAiIG5hbWU9ImZoaXI6QWdlIiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICAgICAgICAgICAgICAgICA8L2NvbmRpdGlvbj4NCiAgICAgICAgICAgICAgICAgICAgICAgIDx0aGVuIHhzaTp0eXBlPSJJbnRlcnZhbCI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICA8bG93IHhzaTp0eXBlPSJUb0RhdGVUaW1lIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIHBhdGg9ImxvdyIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMTQ3OjMtMTQ4OjEwOCIgbG93Q2xvc2VkPSJ0cnVlIiBoaWdoQ2xvc2VkPSJmYWxzZSIgeHNpOnR5cGU9IkludGVydmFsIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxsb3cgbG9jYXRvcj0iMTQ3OjEyLTE0NzoxMDYiIHhzaTp0eXBlPSJBZGQiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTQ3OjEyLTE0Nzo0OCIgbmFtZT0iVG9EYXRlIiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNDc6MzEtMTQ3OjQ3IiBwYXRoPSJiaXJ0aERhdGUiIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjE0NzozMS0xNDc6MzciIG5hbWU9IlBhdGllbnQiIHhzaTp0eXBlPSJFeHByZXNzaW9uUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNDc6NTItMTQ3OjEwNiIgbmFtZT0iVG9RdWFudGl0eSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTQ3Ojc1LTE0NzoxMDUiIHN0cmljdD0iZmFsc2UiIHhzaTp0eXBlPSJBcyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNDc6NzUtMTQ3OjkzIiBwYXRoPSJhYmF0ZW1lbnQiIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjE0Nzo3NS0xNDc6ODMiIG5hbWU9ImNvbmRpdGlvbiIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxhc1R5cGVTcGVjaWZpZXIgbG9jYXRvcj0iMTQ3Ojk4LTE0NzoxMDUiIG5hbWU9ImZoaXI6QWdlIiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2xvdz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxoaWdoIGxvY2F0b3I9IjE0ODo0LTE0ODoxMDciIHhzaTp0eXBlPSJBZGQiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTQ4OjQtMTQ4Ojk4IiB4c2k6dHlwZT0iQWRkIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE0ODo0LTE0ODo0MCIgbmFtZT0iVG9EYXRlIiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNDg6MjMtMTQ4OjM5IiBwYXRoPSJiaXJ0aERhdGUiIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjE0ODoyMy0xNDg6MjkiIG5hbWU9IlBhdGllbnQiIHhzaTp0eXBlPSJFeHByZXNzaW9uUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNDg6NDQtMTQ4Ojk4IiBuYW1lPSJUb1F1YW50aXR5IiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNDg6NjctMTQ4Ojk3IiBzdHJpY3Q9ImZhbHNlIiB4c2k6dHlwZT0iQXMiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTQ4OjY3LTE0ODo4NSIgcGF0aD0iYWJhdGVtZW50IiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNDg6NjctMTQ4Ojc1IiBuYW1lPSJjb25kaXRpb24iIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YXNUeXBlU3BlY2lmaWVyIGxvY2F0b3I9IjE0ODo5MC0xNDg6OTciIG5hbWU9ImZoaXI6QWdlIiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNDg6MTAyLTE0ODoxMDciIHZhbHVlPSIxIiB1bml0PSJ5ZWFyIiB4c2k6dHlwZT0iUXVhbnRpdHkiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvaGlnaD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvc291cmNlPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9sb3c+DQogICAgICAgICAgICAgICAgICAgICAgICAgICA8bG93Q2xvc2VkRXhwcmVzc2lvbiBwYXRoPSJsb3dDbG9zZWQiIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjE0NzozLTE0ODoxMDgiIGxvd0Nsb3NlZD0idHJ1ZSIgaGlnaENsb3NlZD0iZmFsc2UiIHhzaTp0eXBlPSJJbnRlcnZhbCI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8bG93IGxvY2F0b3I9IjE0NzoxMi0xNDc6MTA2IiB4c2k6dHlwZT0iQWRkIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE0NzoxMi0xNDc6NDgiIG5hbWU9IlRvRGF0ZSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTQ3OjMxLTE0Nzo0NyIgcGF0aD0iYmlydGhEYXRlIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNDc6MzEtMTQ3OjM3IiBuYW1lPSJQYXRpZW50IiB4c2k6dHlwZT0iRXhwcmVzc2lvblJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTQ3OjUyLTE0NzoxMDYiIG5hbWU9IlRvUXVhbnRpdHkiIGxpYnJhcnlOYW1lPSJGSElSSGVscGVycyIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE0Nzo3NS0xNDc6MTA1IiBzdHJpY3Q9ImZhbHNlIiB4c2k6dHlwZT0iQXMiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTQ3Ojc1LTE0Nzo5MyIgcGF0aD0iYWJhdGVtZW50IiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNDc6NzUtMTQ3OjgzIiBuYW1lPSJjb25kaXRpb24iIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YXNUeXBlU3BlY2lmaWVyIGxvY2F0b3I9IjE0Nzo5OC0xNDc6MTA1IiBuYW1lPSJmaGlyOkFnZSIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9sb3c+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aGlnaCBsb2NhdG9yPSIxNDg6NC0xNDg6MTA3IiB4c2k6dHlwZT0iQWRkIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE0ODo0LTE0ODo5OCIgeHNpOnR5cGU9IkFkZCI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNDg6NC0xNDg6NDAiIG5hbWU9IlRvRGF0ZSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTQ4OjIzLTE0ODozOSIgcGF0aD0iYmlydGhEYXRlIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNDg6MjMtMTQ4OjI5IiBuYW1lPSJQYXRpZW50IiB4c2k6dHlwZT0iRXhwcmVzc2lvblJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTQ4OjQ0LTE0ODo5OCIgbmFtZT0iVG9RdWFudGl0eSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTQ4OjY3LTE0ODo5NyIgc3RyaWN0PSJmYWxzZSIgeHNpOnR5cGU9IkFzIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE0ODo2Ny0xNDg6ODUiIHBhdGg9ImFiYXRlbWVudCIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMTQ4OjY3LTE0ODo3NSIgbmFtZT0iY29uZGl0aW9uIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGFzVHlwZVNwZWNpZmllciBsb2NhdG9yPSIxNDg6OTAtMTQ4Ojk3IiBuYW1lPSJmaGlyOkFnZSIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTQ4OjEwMi0xNDg6MTA3IiB2YWx1ZT0iMSIgdW5pdD0ieWVhciIgeHNpOnR5cGU9IlF1YW50aXR5Ii8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2hpZ2g+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3NvdXJjZT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvbG93Q2xvc2VkRXhwcmVzc2lvbj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDxoaWdoIHhzaTp0eXBlPSJUb0RhdGVUaW1lIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIHBhdGg9ImhpZ2giIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjE0NzozLTE0ODoxMDgiIGxvd0Nsb3NlZD0idHJ1ZSIgaGlnaENsb3NlZD0iZmFsc2UiIHhzaTp0eXBlPSJJbnRlcnZhbCI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8bG93IGxvY2F0b3I9IjE0NzoxMi0xNDc6MTA2IiB4c2k6dHlwZT0iQWRkIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE0NzoxMi0xNDc6NDgiIG5hbWU9IlRvRGF0ZSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTQ3OjMxLTE0Nzo0NyIgcGF0aD0iYmlydGhEYXRlIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNDc6MzEtMTQ3OjM3IiBuYW1lPSJQYXRpZW50IiB4c2k6dHlwZT0iRXhwcmVzc2lvblJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTQ3OjUyLTE0NzoxMDYiIG5hbWU9IlRvUXVhbnRpdHkiIGxpYnJhcnlOYW1lPSJGSElSSGVscGVycyIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE0Nzo3NS0xNDc6MTA1IiBzdHJpY3Q9ImZhbHNlIiB4c2k6dHlwZT0iQXMiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTQ3Ojc1LTE0Nzo5MyIgcGF0aD0iYWJhdGVtZW50IiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNDc6NzUtMTQ3OjgzIiBuYW1lPSJjb25kaXRpb24iIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YXNUeXBlU3BlY2lmaWVyIGxvY2F0b3I9IjE0Nzo5OC0xNDc6MTA1IiBuYW1lPSJmaGlyOkFnZSIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9sb3c+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aGlnaCBsb2NhdG9yPSIxNDg6NC0xNDg6MTA3IiB4c2k6dHlwZT0iQWRkIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE0ODo0LTE0ODo5OCIgeHNpOnR5cGU9IkFkZCI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNDg6NC0xNDg6NDAiIG5hbWU9IlRvRGF0ZSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTQ4OjIzLTE0ODozOSIgcGF0aD0iYmlydGhEYXRlIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNDg6MjMtMTQ4OjI5IiBuYW1lPSJQYXRpZW50IiB4c2k6dHlwZT0iRXhwcmVzc2lvblJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTQ4OjQ0LTE0ODo5OCIgbmFtZT0iVG9RdWFudGl0eSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTQ4OjY3LTE0ODo5NyIgc3RyaWN0PSJmYWxzZSIgeHNpOnR5cGU9IkFzIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE0ODo2Ny0xNDg6ODUiIHBhdGg9ImFiYXRlbWVudCIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMTQ4OjY3LTE0ODo3NSIgbmFtZT0iY29uZGl0aW9uIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGFzVHlwZVNwZWNpZmllciBsb2NhdG9yPSIxNDg6OTAtMTQ4Ojk3IiBuYW1lPSJmaGlyOkFnZSIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTQ4OjEwMi0xNDg6MTA3IiB2YWx1ZT0iMSIgdW5pdD0ieWVhciIgeHNpOnR5cGU9IlF1YW50aXR5Ii8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2hpZ2g+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3NvdXJjZT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvaGlnaD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDxoaWdoQ2xvc2VkRXhwcmVzc2lvbiBwYXRoPSJoaWdoQ2xvc2VkIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNDc6My0xNDg6MTA4IiBsb3dDbG9zZWQ9InRydWUiIGhpZ2hDbG9zZWQ9ImZhbHNlIiB4c2k6dHlwZT0iSW50ZXJ2YWwiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGxvdyBsb2NhdG9yPSIxNDc6MTItMTQ3OjEwNiIgeHNpOnR5cGU9IkFkZCI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNDc6MTItMTQ3OjQ4IiBuYW1lPSJUb0RhdGUiIGxpYnJhcnlOYW1lPSJGSElSSGVscGVycyIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE0NzozMS0xNDc6NDciIHBhdGg9ImJpcnRoRGF0ZSIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMTQ3OjMxLTE0NzozNyIgbmFtZT0iUGF0aWVudCIgeHNpOnR5cGU9IkV4cHJlc3Npb25SZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE0Nzo1Mi0xNDc6MTA2IiBuYW1lPSJUb1F1YW50aXR5IiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNDc6NzUtMTQ3OjEwNSIgc3RyaWN0PSJmYWxzZSIgeHNpOnR5cGU9IkFzIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE0Nzo3NS0xNDc6OTMiIHBhdGg9ImFiYXRlbWVudCIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMTQ3Ojc1LTE0Nzo4MyIgbmFtZT0iY29uZGl0aW9uIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGFzVHlwZVNwZWNpZmllciBsb2NhdG9yPSIxNDc6OTgtMTQ3OjEwNSIgbmFtZT0iZmhpcjpBZ2UiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvbG93Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGhpZ2ggbG9jYXRvcj0iMTQ4OjQtMTQ4OjEwNyIgeHNpOnR5cGU9IkFkZCI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNDg6NC0xNDg6OTgiIHhzaTp0eXBlPSJBZGQiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTQ4OjQtMTQ4OjQwIiBuYW1lPSJUb0RhdGUiIGxpYnJhcnlOYW1lPSJGSElSSGVscGVycyIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE0ODoyMy0xNDg6MzkiIHBhdGg9ImJpcnRoRGF0ZSIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMTQ4OjIzLTE0ODoyOSIgbmFtZT0iUGF0aWVudCIgeHNpOnR5cGU9IkV4cHJlc3Npb25SZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE0ODo0NC0xNDg6OTgiIG5hbWU9IlRvUXVhbnRpdHkiIGxpYnJhcnlOYW1lPSJGSElSSGVscGVycyIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE0ODo2Ny0xNDg6OTciIHN0cmljdD0iZmFsc2UiIHhzaTp0eXBlPSJBcyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNDg6NjctMTQ4Ojg1IiBwYXRoPSJhYmF0ZW1lbnQiIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjE0ODo2Ny0xNDg6NzUiIG5hbWU9ImNvbmRpdGlvbiIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxhc1R5cGVTcGVjaWZpZXIgbG9jYXRvcj0iMTQ4OjkwLTE0ODo5NyIgbmFtZT0iZmhpcjpBZ2UiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE0ODoxMDItMTQ4OjEwNyIgdmFsdWU9IjEiIHVuaXQ9InllYXIiIHhzaTp0eXBlPSJRdWFudGl0eSIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9oaWdoPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9zb3VyY2U+DQogICAgICAgICAgICAgICAgICAgICAgICAgICA8L2hpZ2hDbG9zZWRFeHByZXNzaW9uPg0KICAgICAgICAgICAgICAgICAgICAgICAgPC90aGVuPg0KICAgICAgICAgICAgICAgICAgICAgICAgPGVsc2UgbG9jYXRvcj0iMTQ5OjctMTU0OjEwIiB4c2k6dHlwZT0iSWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgPGNvbmRpdGlvbiBsb2NhdG9yPSIxNDk6MTAtMTQ5OjQyIiB4c2k6dHlwZT0iSXMiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTQ5OjEwLTE0OToyOCIgcGF0aD0iYWJhdGVtZW50IiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNDk6MTAtMTQ5OjE4IiBuYW1lPSJjb25kaXRpb24iIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aXNUeXBlU3BlY2lmaWVyIGxvY2F0b3I9IjE0OTozMy0xNDk6NDIiIG5hbWU9ImZoaXI6UmFuZ2UiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvY29uZGl0aW9uPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRoZW4geHNpOnR5cGU9IkludGVydmFsIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxsb3cgeHNpOnR5cGU9IlRvRGF0ZVRpbWUiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgcGF0aD0ibG93IiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNTA6NC0xNTE6MTE4IiBsb3dDbG9zZWQ9InRydWUiIGhpZ2hDbG9zZWQ9ImZhbHNlIiB4c2k6dHlwZT0iSW50ZXJ2YWwiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGxvdyBsb2NhdG9yPSIxNTA6MTMtMTUwOjExNSIgeHNpOnR5cGU9IkFkZCI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNTA6MTMtMTUwOjQ5IiBuYW1lPSJUb0RhdGUiIGxpYnJhcnlOYW1lPSJGSElSSGVscGVycyIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE1MDozMi0xNTA6NDgiIHBhdGg9ImJpcnRoRGF0ZSIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMTUwOjMyLTE1MDozOCIgbmFtZT0iUGF0aWVudCIgeHNpOnR5cGU9IkV4cHJlc3Npb25SZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE1MDo1My0xNTA6MTE1IiBuYW1lPSJUb1F1YW50aXR5IiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNTA6NzYtMTUwOjExNCIgcGF0aD0ibG93IiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNTA6NzYtMTUwOjExMCIgc3RyaWN0PSJmYWxzZSIgeHNpOnR5cGU9IkFzIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE1MDo3Ny0xNTA6OTUiIHBhdGg9ImFiYXRlbWVudCIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMTUwOjc3LTE1MDo4NSIgbmFtZT0iY29uZGl0aW9uIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGFzVHlwZVNwZWNpZmllciBsb2NhdG9yPSIxNTA6MTAwLTE1MDoxMDkiIG5hbWU9ImZoaXI6UmFuZ2UiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvc291cmNlPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9sb3c+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aGlnaCBsb2NhdG9yPSIxNTE6NS0xNTE6MTE3IiB4c2k6dHlwZT0iQWRkIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE1MTo1LTE1MToxMDgiIHhzaTp0eXBlPSJBZGQiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTUxOjUtMTUxOjQxIiBuYW1lPSJUb0RhdGUiIGxpYnJhcnlOYW1lPSJGSElSSGVscGVycyIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE1MToyNC0xNTE6NDAiIHBhdGg9ImJpcnRoRGF0ZSIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMTUxOjI0LTE1MTozMCIgbmFtZT0iUGF0aWVudCIgeHNpOnR5cGU9IkV4cHJlc3Npb25SZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE1MTo0NS0xNTE6MTA4IiBuYW1lPSJUb1F1YW50aXR5IiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNTE6NjgtMTUxOjEwNyIgcGF0aD0iaGlnaCIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMTUxOjY4LTE1MToxMDIiIHN0cmljdD0iZmFsc2UiIHhzaTp0eXBlPSJBcyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNTE6NjktMTUxOjg3IiBwYXRoPSJhYmF0ZW1lbnQiIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjE1MTo2OS0xNTE6NzciIG5hbWU9ImNvbmRpdGlvbiIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxhc1R5cGVTcGVjaWZpZXIgbG9jYXRvcj0iMTUxOjkyLTE1MToxMDEiIG5hbWU9ImZoaXI6UmFuZ2UiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvc291cmNlPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTUxOjExMi0xNTE6MTE3IiB2YWx1ZT0iMSIgdW5pdD0ieWVhciIgeHNpOnR5cGU9IlF1YW50aXR5Ii8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2hpZ2g+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3NvdXJjZT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvbG93Pg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGxvd0Nsb3NlZEV4cHJlc3Npb24gcGF0aD0ibG93Q2xvc2VkIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNTA6NC0xNTE6MTE4IiBsb3dDbG9zZWQ9InRydWUiIGhpZ2hDbG9zZWQ9ImZhbHNlIiB4c2k6dHlwZT0iSW50ZXJ2YWwiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGxvdyBsb2NhdG9yPSIxNTA6MTMtMTUwOjExNSIgeHNpOnR5cGU9IkFkZCI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNTA6MTMtMTUwOjQ5IiBuYW1lPSJUb0RhdGUiIGxpYnJhcnlOYW1lPSJGSElSSGVscGVycyIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE1MDozMi0xNTA6NDgiIHBhdGg9ImJpcnRoRGF0ZSIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMTUwOjMyLTE1MDozOCIgbmFtZT0iUGF0aWVudCIgeHNpOnR5cGU9IkV4cHJlc3Npb25SZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE1MDo1My0xNTA6MTE1IiBuYW1lPSJUb1F1YW50aXR5IiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNTA6NzYtMTUwOjExNCIgcGF0aD0ibG93IiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNTA6NzYtMTUwOjExMCIgc3RyaWN0PSJmYWxzZSIgeHNpOnR5cGU9IkFzIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE1MDo3Ny0xNTA6OTUiIHBhdGg9ImFiYXRlbWVudCIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMTUwOjc3LTE1MDo4NSIgbmFtZT0iY29uZGl0aW9uIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGFzVHlwZVNwZWNpZmllciBsb2NhdG9yPSIxNTA6MTAwLTE1MDoxMDkiIG5hbWU9ImZoaXI6UmFuZ2UiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvc291cmNlPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9sb3c+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aGlnaCBsb2NhdG9yPSIxNTE6NS0xNTE6MTE3IiB4c2k6dHlwZT0iQWRkIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE1MTo1LTE1MToxMDgiIHhzaTp0eXBlPSJBZGQiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTUxOjUtMTUxOjQxIiBuYW1lPSJUb0RhdGUiIGxpYnJhcnlOYW1lPSJGSElSSGVscGVycyIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE1MToyNC0xNTE6NDAiIHBhdGg9ImJpcnRoRGF0ZSIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMTUxOjI0LTE1MTozMCIgbmFtZT0iUGF0aWVudCIgeHNpOnR5cGU9IkV4cHJlc3Npb25SZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE1MTo0NS0xNTE6MTA4IiBuYW1lPSJUb1F1YW50aXR5IiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNTE6NjgtMTUxOjEwNyIgcGF0aD0iaGlnaCIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMTUxOjY4LTE1MToxMDIiIHN0cmljdD0iZmFsc2UiIHhzaTp0eXBlPSJBcyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNTE6NjktMTUxOjg3IiBwYXRoPSJhYmF0ZW1lbnQiIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjE1MTo2OS0xNTE6NzciIG5hbWU9ImNvbmRpdGlvbiIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxhc1R5cGVTcGVjaWZpZXIgbG9jYXRvcj0iMTUxOjkyLTE1MToxMDEiIG5hbWU9ImZoaXI6UmFuZ2UiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvc291cmNlPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTUxOjExMi0xNTE6MTE3IiB2YWx1ZT0iMSIgdW5pdD0ieWVhciIgeHNpOnR5cGU9IlF1YW50aXR5Ii8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2hpZ2g+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L3NvdXJjZT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvbG93Q2xvc2VkRXhwcmVzc2lvbj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxoaWdoIHhzaTp0eXBlPSJUb0RhdGVUaW1lIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIHBhdGg9ImhpZ2giIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjE1MDo0LTE1MToxMTgiIGxvd0Nsb3NlZD0idHJ1ZSIgaGlnaENsb3NlZD0iZmFsc2UiIHhzaTp0eXBlPSJJbnRlcnZhbCI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8bG93IGxvY2F0b3I9IjE1MDoxMy0xNTA6MTE1IiB4c2k6dHlwZT0iQWRkIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE1MDoxMy0xNTA6NDkiIG5hbWU9IlRvRGF0ZSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTUwOjMyLTE1MDo0OCIgcGF0aD0iYmlydGhEYXRlIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNTA6MzItMTUwOjM4IiBuYW1lPSJQYXRpZW50IiB4c2k6dHlwZT0iRXhwcmVzc2lvblJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTUwOjUzLTE1MDoxMTUiIG5hbWU9IlRvUXVhbnRpdHkiIGxpYnJhcnlOYW1lPSJGSElSSGVscGVycyIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE1MDo3Ni0xNTA6MTE0IiBwYXRoPSJsb3ciIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjE1MDo3Ni0xNTA6MTEwIiBzdHJpY3Q9ImZhbHNlIiB4c2k6dHlwZT0iQXMiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTUwOjc3LTE1MDo5NSIgcGF0aD0iYWJhdGVtZW50IiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNTA6NzctMTUwOjg1IiBuYW1lPSJjb25kaXRpb24iIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YXNUeXBlU3BlY2lmaWVyIGxvY2F0b3I9IjE1MDoxMDAtMTUwOjEwOSIgbmFtZT0iZmhpcjpSYW5nZSIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9zb3VyY2U+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2xvdz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxoaWdoIGxvY2F0b3I9IjE1MTo1LTE1MToxMTciIHhzaTp0eXBlPSJBZGQiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTUxOjUtMTUxOjEwOCIgeHNpOnR5cGU9IkFkZCI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNTE6NS0xNTE6NDEiIG5hbWU9IlRvRGF0ZSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTUxOjI0LTE1MTo0MCIgcGF0aD0iYmlydGhEYXRlIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNTE6MjQtMTUxOjMwIiBuYW1lPSJQYXRpZW50IiB4c2k6dHlwZT0iRXhwcmVzc2lvblJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTUxOjQ1LTE1MToxMDgiIG5hbWU9IlRvUXVhbnRpdHkiIGxpYnJhcnlOYW1lPSJGSElSSGVscGVycyIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE1MTo2OC0xNTE6MTA3IiBwYXRoPSJoaWdoIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNTE6NjgtMTUxOjEwMiIgc3RyaWN0PSJmYWxzZSIgeHNpOnR5cGU9IkFzIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE1MTo2OS0xNTE6ODciIHBhdGg9ImFiYXRlbWVudCIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMTUxOjY5LTE1MTo3NyIgbmFtZT0iY29uZGl0aW9uIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGFzVHlwZVNwZWNpZmllciBsb2NhdG9yPSIxNTE6OTItMTUxOjEwMSIgbmFtZT0iZmhpcjpSYW5nZSIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9zb3VyY2U+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNTE6MTEyLTE1MToxMTciIHZhbHVlPSIxIiB1bml0PSJ5ZWFyIiB4c2k6dHlwZT0iUXVhbnRpdHkiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvaGlnaD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvc291cmNlPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9oaWdoPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGhpZ2hDbG9zZWRFeHByZXNzaW9uIHBhdGg9ImhpZ2hDbG9zZWQiIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjE1MDo0LTE1MToxMTgiIGxvd0Nsb3NlZD0idHJ1ZSIgaGlnaENsb3NlZD0iZmFsc2UiIHhzaTp0eXBlPSJJbnRlcnZhbCI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8bG93IGxvY2F0b3I9IjE1MDoxMy0xNTA6MTE1IiB4c2k6dHlwZT0iQWRkIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE1MDoxMy0xNTA6NDkiIG5hbWU9IlRvRGF0ZSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTUwOjMyLTE1MDo0OCIgcGF0aD0iYmlydGhEYXRlIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNTA6MzItMTUwOjM4IiBuYW1lPSJQYXRpZW50IiB4c2k6dHlwZT0iRXhwcmVzc2lvblJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTUwOjUzLTE1MDoxMTUiIG5hbWU9IlRvUXVhbnRpdHkiIGxpYnJhcnlOYW1lPSJGSElSSGVscGVycyIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE1MDo3Ni0xNTA6MTE0IiBwYXRoPSJsb3ciIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjE1MDo3Ni0xNTA6MTEwIiBzdHJpY3Q9ImZhbHNlIiB4c2k6dHlwZT0iQXMiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTUwOjc3LTE1MDo5NSIgcGF0aD0iYWJhdGVtZW50IiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNTA6NzctMTUwOjg1IiBuYW1lPSJjb25kaXRpb24iIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YXNUeXBlU3BlY2lmaWVyIGxvY2F0b3I9IjE1MDoxMDAtMTUwOjEwOSIgbmFtZT0iZmhpcjpSYW5nZSIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9zb3VyY2U+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2xvdz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxoaWdoIGxvY2F0b3I9IjE1MTo1LTE1MToxMTciIHhzaTp0eXBlPSJBZGQiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTUxOjUtMTUxOjEwOCIgeHNpOnR5cGU9IkFkZCI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNTE6NS0xNTE6NDEiIG5hbWU9IlRvRGF0ZSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTUxOjI0LTE1MTo0MCIgcGF0aD0iYmlydGhEYXRlIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNTE6MjQtMTUxOjMwIiBuYW1lPSJQYXRpZW50IiB4c2k6dHlwZT0iRXhwcmVzc2lvblJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTUxOjQ1LTE1MToxMDgiIG5hbWU9IlRvUXVhbnRpdHkiIGxpYnJhcnlOYW1lPSJGSElSSGVscGVycyIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE1MTo2OC0xNTE6MTA3IiBwYXRoPSJoaWdoIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNTE6NjgtMTUxOjEwMiIgc3RyaWN0PSJmYWxzZSIgeHNpOnR5cGU9IkFzIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE1MTo2OS0xNTE6ODciIHBhdGg9ImFiYXRlbWVudCIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMTUxOjY5LTE1MTo3NyIgbmFtZT0iY29uZGl0aW9uIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGFzVHlwZVNwZWNpZmllciBsb2NhdG9yPSIxNTE6OTItMTUxOjEwMSIgbmFtZT0iZmhpcjpSYW5nZSIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9zb3VyY2U+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNTE6MTEyLTE1MToxMTciIHZhbHVlPSIxIiB1bml0PSJ5ZWFyIiB4c2k6dHlwZT0iUXVhbnRpdHkiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvaGlnaD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvc291cmNlPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9oaWdoQ2xvc2VkRXhwcmVzc2lvbj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGhlbj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDxlbHNlIGxvY2F0b3I9IjE1Mjo3LTE1NDoxMCIgeHNpOnR5cGU9IklmIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxjb25kaXRpb24gbG9jYXRvcj0iMTUyOjEwLTE1Mjo0NCIgeHNpOnR5cGU9IklzIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE1MjoxMC0xNTI6MjgiIHBhdGg9ImFiYXRlbWVudCIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMTUyOjEwLTE1MjoxOCIgbmFtZT0iY29uZGl0aW9uIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGlzVHlwZVNwZWNpZmllciBsb2NhdG9yPSIxNTI6MzMtMTUyOjQ0IiBuYW1lPSJmaGlyOmJvb2xlYW4iIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvY29uZGl0aW9uPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHRoZW4gbG9jYXRvcj0iMTUzOjQtMTUzOjcxIiBsb3dDbG9zZWQ9InRydWUiIGhpZ2hDbG9zZWQ9ImZhbHNlIiB4c2k6dHlwZT0iSW50ZXJ2YWwiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPGxvdyBsb2NhdG9yPSIxNTM6MTMtMTUzOjQ2IiB4c2k6dHlwZT0iRW5kIj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE1MzoyMC0xNTM6NDYiIG5hbWU9IlRvSW50ZXJ2YWwiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNTM6MzEtMTUzOjQ1IiBwYXRoPSJvbnNldCIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMTUzOjMxLTE1MzozOSIgbmFtZT0iY29uZGl0aW9uIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPC9sb3c+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8aGlnaCBuYW1lPSJUb0RhdGVUaW1lIiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNTM6NDktMTUzOjcwIiBwYXRoPSJyZWNvcmRlZERhdGUiIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjE1Mzo0OS0xNTM6NTciIG5hbWU9ImNvbmRpdGlvbiIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvaGlnaD4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvdGhlbj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDxlbHNlIHhzaTp0eXBlPSJBcyI+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNTQ6Ny0xNTQ6MTAiIHhzaTp0eXBlPSJOdWxsIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8YXNUeXBlU3BlY2lmaWVyIHhzaTp0eXBlPSJJbnRlcnZhbFR5cGVTcGVjaWZpZXIiPg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgPHBvaW50VHlwZSBuYW1lPSJ0OkRhdGVUaW1lIiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8L2FzVHlwZVNwZWNpZmllcj4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZWxzZT4NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIDwvZWxzZT4NCiAgICAgICAgICAgICAgICAgICAgICAgIDwvZWxzZT4NCiAgICAgICAgICAgICAgICAgICAgIDwvZWxzZT4NCiAgICAgICAgICAgICAgICAgIDwvZWxzZT4NCiAgICAgICAgICAgICAgIDwvZWxzZT4NCiAgICAgICAgICAgIDwvZWxzZT4NCiAgICAgICAgIDwvZXhwcmVzc2lvbj4NCiAgICAgICAgIDxvcGVyYW5kIG5hbWU9ImNvbmRpdGlvbiI+DQogICAgICAgICAgICA8b3BlcmFuZFR5cGVTcGVjaWZpZXIgbG9jYXRvcj0iMTM1OjQ3LTEzNTo1NSIgbmFtZT0iZmhpcjpDb25kaXRpb24iIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgIDwvZGVmPg0KICAgICAgPGRlZiBsb2NhdG9yPSIxNjE6MS0xNjI6ODciIG5hbWU9IlRvUHJldmFsZW5jZUludGVydmFsIiBjb250ZXh0PSJQYXRpZW50IiBhY2Nlc3NMZXZlbD0iUHVibGljIiB4c2k6dHlwZT0iRnVuY3Rpb25EZWYiPg0KICAgICAgICAgPGFubm90YXRpb24geHNpOnR5cGU9ImE6QW5ub3RhdGlvbiI+DQogICAgICAgICAgICA8YTp0IG5hbWU9ImRlc2NyaXB0aW9uIiB2YWx1ZT0iUmV0dXJucyBhbiBpbnRlcnZhbCByZXByZXNlbnRpbmcgdGhlIG5vcm1hbGl6ZWQgcHJldmFsZW5jZSBwZXJpb2Qgb2YgYSBnaXZlbiBDb25kaXRpb24gcmVzb3VyY2UuIi8+DQogICAgICAgICAgICA8YTp0IG5hbWU9ImNvbW1lbnQiIHZhbHVlPSJVc2VzIHRoZSBUb0ludGVydmFsIGFuZCBUb0FiYXRlbWVudEludGVydmFsIGZ1bmN0aW9ucyB0byBkZXRlcm1pbmUgdGhlIHdpZGVzdCBwb3RlbnRpYWwgaW50ZXJ2YWwgZnJvbSYjeGE7b25zZXQgdG8gYWJhdGVtZW50IGFzIHNwZWNpZmllZCBpbiB0aGUgZ2l2ZW4gQ29uZGl0aW9uLiIvPg0KICAgICAgICAgPC9hbm5vdGF0aW9uPg0KICAgICAgICAgPGV4cHJlc3Npb24gbG9jYXRvcj0iMTYyOjMtMTYyOjg3IiBsb3dDbG9zZWQ9InRydWUiIGhpZ2hDbG9zZWQ9ImZhbHNlIiB4c2k6dHlwZT0iSW50ZXJ2YWwiPg0KICAgICAgICAgICAgPGxvdyBsb2NhdG9yPSIxNjI6MTItMTYyOjQ3IiB4c2k6dHlwZT0iU3RhcnQiPg0KICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTYyOjIxLTE2Mjo0NyIgbmFtZT0iVG9JbnRlcnZhbCIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE2MjozMi0xNjI6NDYiIHBhdGg9Im9uc2V0IiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNjI6MzItMTYyOjQwIiBuYW1lPSJjb25kaXRpb24iIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICA8L2xvdz4NCiAgICAgICAgICAgIDxoaWdoIGxvY2F0b3I9IjE2Mjo1MC0xNjI6ODYiIHhzaTp0eXBlPSJFbmQiPg0KICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTYyOjU3LTE2Mjo4NiIgbmFtZT0iVG9BYmF0ZW1lbnRJbnRlcnZhbCIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE2Mjo3Ny0xNjI6ODUiIG5hbWU9ImNvbmRpdGlvbiIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgIDwvaGlnaD4NCiAgICAgICAgIDwvZXhwcmVzc2lvbj4NCiAgICAgICAgIDxvcGVyYW5kIG5hbWU9ImNvbmRpdGlvbiI+DQogICAgICAgICAgICA8b3BlcmFuZFR5cGVTcGVjaWZpZXIgbG9jYXRvcj0iMTYxOjQ4LTE2MTo1NiIgbmFtZT0iZmhpcjpDb25kaXRpb24iIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgIDwvZGVmPg0KICAgICAgPGRlZiBsb2NhdG9yPSIxNjg6MS0xNjk6MTA5IiBuYW1lPSJUb1ByZXZhbGVuY2VJbnRlcnZhbCIgY29udGV4dD0iUGF0aWVudCIgYWNjZXNzTGV2ZWw9IlB1YmxpYyIgeHNpOnR5cGU9IkZ1bmN0aW9uRGVmIj4NCiAgICAgICAgIDxhbm5vdGF0aW9uIHhzaTp0eXBlPSJhOkFubm90YXRpb24iPg0KICAgICAgICAgICAgPGE6dCBuYW1lPSJkZXNjcmlwdGlvbiIgdmFsdWU9IlJldHVybnMgYW4gaW50ZXJ2YWwgcmVwcmVzZW50aW5nIHRoZSBub3JtYWxpemVkIHByZXZhbGVuY2UgcGVyaW9kIG9mIGEgZ2l2ZW4gQWxsZXJneSBJbnRvbGVyYW5jZSByZXNvdXJjZS4iLz4NCiAgICAgICAgICAgIDxhOnQgbmFtZT0iY29tbWVudCIgdmFsdWU9IlVzZXMgdGhlIFRvSW50ZXJ2YWwgZnVuY3Rpb24gYW5kIGxhc3RPY2N1cmVuY2UgdG8gZGV0ZXJtaW5lIHRoZSB3aWRlc3QgcG90ZW50aWFsIGludGVydmFsLiIvPg0KICAgICAgICAgPC9hbm5vdGF0aW9uPg0KICAgICAgICAgPGV4cHJlc3Npb24gbG9jYXRvcj0iMTY5OjMtMTY5OjEwOSIgbG93Q2xvc2VkPSJ0cnVlIiBoaWdoQ2xvc2VkPSJ0cnVlIiB4c2k6dHlwZT0iSW50ZXJ2YWwiPg0KICAgICAgICAgICAgPGxvdyBsb2NhdG9yPSIxNjk6MTItMTY5OjU2IiB4c2k6dHlwZT0iU3RhcnQiPg0KICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTY5OjIxLTE2OTo1NiIgbmFtZT0iVG9JbnRlcnZhbCIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE2OTozMi0xNjk6NTUiIHBhdGg9Im9uc2V0IiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNjk6MzItMTY5OjQ5IiBuYW1lPSJhbGxlcmd5SW50b2xlcmFuY2UiIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICA8L2xvdz4NCiAgICAgICAgICAgIDxoaWdoIGxvY2F0b3I9IjE2OTo1OS0xNjk6MTA4IiB4c2k6dHlwZT0iQ29hbGVzY2UiPg0KICAgICAgICAgICAgICAgPG9wZXJhbmQgbmFtZT0iVG9EYXRlVGltZSIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTY5OjY4LTE2OToxMDAiIHBhdGg9Imxhc3RPY2N1cnJlbmNlIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNjk6NjgtMTY5Ojg1IiBuYW1lPSJhbGxlcmd5SW50b2xlcmFuY2UiIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxNjk6MTAzLTE2OToxMDciIHhzaTp0eXBlPSJOb3ciLz4NCiAgICAgICAgICAgIDwvaGlnaD4NCiAgICAgICAgIDwvZXhwcmVzc2lvbj4NCiAgICAgICAgIDxvcGVyYW5kIG5hbWU9ImFsbGVyZ3lJbnRvbGVyYW5jZSI+DQogICAgICAgICAgICA8b3BlcmFuZFR5cGVTcGVjaWZpZXIgbG9jYXRvcj0iMTY4OjU3LTE2ODo3NCIgbmFtZT0iZmhpcjpBbGxlcmd5SW50b2xlcmFuY2UiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgIDwvZGVmPg0KICAgICAgPGRlZiBsb2NhdG9yPSIxNzg6MS0xODE6MTAiIG5hbWU9IkV4dGVuc2lvbnMiIGNvbnRleHQ9IlBhdGllbnQiIGFjY2Vzc0xldmVsPSJQdWJsaWMiIHhzaTp0eXBlPSJGdW5jdGlvbkRlZiI+DQogICAgICAgICA8YW5ub3RhdGlvbiB4c2k6dHlwZT0iYTpBbm5vdGF0aW9uIj4NCiAgICAgICAgICAgIDxhOnQgbmFtZT0iZGVzY3JpcHRpb24iIHZhbHVlPSJSZXR1cm5zIGFueSBleHRlbnNpb25zIGRlZmluZWQgb24gdGhlIGdpdmVuIHJlc291cmNlIHdpdGggdGhlIHNwZWNpZmllZCB1cmwuIi8+DQogICAgICAgICAgICA8YTp0IG5hbWU9ImNvbW1lbnQiIHZhbHVlPSJOT1RFOiBFeHRlbnNpb25zIGFyZSBub3QgdGhlIHByZWZlcnJlZCBhcHByb2FjaCwgYnV0IGFyZSB1c2VkIGFzIGEgd2F5IHRvIGFjY2VzcyYjeGE7Y29udGVudCB0aGF0IGlzIGRlZmluZWQgYnkgZXh0ZW5zaW9ucyBidXQgbm90IHlldCBzdXJmYWNlZCBpbiB0aGUmI3hhO0NRTCBtb2RlbCBpbmZvLiIvPg0KICAgICAgICAgPC9hbm5vdGF0aW9uPg0KICAgICAgICAgPGV4cHJlc3Npb24gbG9jYXRvcj0iMTc5OjMtMTgxOjEwIiB4c2k6dHlwZT0iUXVlcnkiPg0KICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIxNzk6My0xNzk6MjgiIGFsaWFzPSJFIj4NCiAgICAgICAgICAgICAgIDxleHByZXNzaW9uIGxvY2F0b3I9IjE3OTozLTE3OToyNiIgcGF0aD0iZXh0ZW5zaW9uIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgPHNvdXJjZSBuYW1lPSJkb21haW5SZXNvdXJjZSIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgIDwvZXhwcmVzc2lvbj4NCiAgICAgICAgICAgIDwvc291cmNlPg0KICAgICAgICAgICAgPHdoZXJlIGxvY2F0b3I9IjE4MDo0LTE4MDoyMCIgeHNpOnR5cGU9IkVxdWFsIj4NCiAgICAgICAgICAgICAgIDxvcGVyYW5kIG5hbWU9IlRvU3RyaW5nIiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxODA6MTAtMTgwOjE0IiBwYXRoPSJ1cmwiIHNjb3BlPSJFIiB4c2k6dHlwZT0iUHJvcGVydHkiLz4NCiAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE4MDoxOC0xODA6MjAiIG5hbWU9InVybCIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgIDwvd2hlcmU+DQogICAgICAgICAgICA8cmV0dXJuIGxvY2F0b3I9IjE4MTozLTE4MToxMCI+DQogICAgICAgICAgICAgICA8ZXhwcmVzc2lvbiBsb2NhdG9yPSIxODE6MTAiIG5hbWU9IkUiIHhzaTp0eXBlPSJBbGlhc1JlZiIvPg0KICAgICAgICAgICAgPC9yZXR1cm4+DQogICAgICAgICA8L2V4cHJlc3Npb24+DQogICAgICAgICA8b3BlcmFuZCBuYW1lPSJkb21haW5SZXNvdXJjZSI+DQogICAgICAgICAgICA8b3BlcmFuZFR5cGVTcGVjaWZpZXIgbG9jYXRvcj0iMTc4OjQzLTE3ODo1NiIgbmFtZT0iZmhpcjpEb21haW5SZXNvdXJjZSIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgPG9wZXJhbmQgbmFtZT0idXJsIj4NCiAgICAgICAgICAgIDxvcGVyYW5kVHlwZVNwZWNpZmllciBsb2NhdG9yPSIxNzg6NjMtMTc4OjY4IiBuYW1lPSJ0OlN0cmluZyIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgPC9kZWY+DQogICAgICA8ZGVmIGxvY2F0b3I9IjE4ODoxLTE4OTo1MCIgbmFtZT0iRXh0ZW5zaW9uIiBjb250ZXh0PSJQYXRpZW50IiBhY2Nlc3NMZXZlbD0iUHVibGljIiB4c2k6dHlwZT0iRnVuY3Rpb25EZWYiPg0KICAgICAgICAgPGFubm90YXRpb24geHNpOnR5cGU9ImE6QW5ub3RhdGlvbiI+DQogICAgICAgICAgICA8YTp0IG5hbWU9ImRlc2NyaXB0aW9uIiB2YWx1ZT0iUmV0dXJucyB0aGUgc2luZ2xlIGV4dGVuc2lvbiAoaWYgcHJlc2VudCkgb24gdGhlIGdpdmVuIHJlc291cmNlIHdpdGggdGhlIHNwZWNpZmllZCB1cmwuIi8+DQogICAgICAgICAgICA8YTp0IG5hbWU9ImNvbW1lbnQiIHZhbHVlPSJUaGlzIGZ1bmN0aW9uIHVzZXMgc2luZ2xldG9uIGZyb20gdG8gZW5zdXJlIHRoYXQgYSBydW4tdGltZSBleGNlcHRpb24gaXMgdGhyb3duIGlmIHRoZXJlJiN4YTtpcyBtb3JlIHRoYW4gb25lIGV4dGVuc2lvbiBvbiB0aGUgZ2l2ZW4gcmVzb3VyY2Ugd2l0aCB0aGUgc3BlY2lmaWVkIHVybC4iLz4NCiAgICAgICAgIDwvYW5ub3RhdGlvbj4NCiAgICAgICAgIDxleHByZXNzaW9uIGxvY2F0b3I9IjE4OTozLTE4OTo1MCIgeHNpOnR5cGU9IlNpbmdsZXRvbkZyb20iPg0KICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTg5OjE4LTE4OTo1MCIgbmFtZT0iRXh0ZW5zaW9ucyIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE4OTozMS0xODk6NDQiIG5hbWU9ImRvbWFpblJlc291cmNlIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMTg5OjQ3LTE4OTo0OSIgbmFtZT0idXJsIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgPC9leHByZXNzaW9uPg0KICAgICAgICAgPG9wZXJhbmQgbmFtZT0iZG9tYWluUmVzb3VyY2UiPg0KICAgICAgICAgICAgPG9wZXJhbmRUeXBlU3BlY2lmaWVyIGxvY2F0b3I9IjE4ODo0Mi0xODg6NTUiIG5hbWU9ImZoaXI6RG9tYWluUmVzb3VyY2UiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgIDxvcGVyYW5kIG5hbWU9InVybCI+DQogICAgICAgICAgICA8b3BlcmFuZFR5cGVTcGVjaWZpZXIgbG9jYXRvcj0iMTg4OjYyLTE4ODo2NyIgbmFtZT0idDpTdHJpbmciIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgIDwvZGVmPg0KICAgICAgPGRlZiBsb2NhdG9yPSIxOTY6MS0xOTk6MTAiIG5hbWU9IkV4dGVuc2lvbnMiIGNvbnRleHQ9IlBhdGllbnQiIGFjY2Vzc0xldmVsPSJQdWJsaWMiIHhzaTp0eXBlPSJGdW5jdGlvbkRlZiI+DQogICAgICAgICA8YW5ub3RhdGlvbiB4c2k6dHlwZT0iYTpBbm5vdGF0aW9uIj4NCiAgICAgICAgICAgIDxhOnQgbmFtZT0iZGVzY3JpcHRpb24iIHZhbHVlPSJSZXR1cm5zIGFueSBleHRlbnNpb25zIGRlZmluZWQgb24gdGhlIGdpdmVuIGVsZW1lbnQgd2l0aCB0aGUgc3BlY2lmaWVkIHVybC4iLz4NCiAgICAgICAgICAgIDxhOnQgbmFtZT0iY29tbWVudCIgdmFsdWU9Ik5PVEU6IEV4dGVuc2lvbnMgYXJlIG5vdCB0aGUgcHJlZmVycmVkIGFwcHJvYWNoLCBidXQgYXJlIHVzZWQgYXMgYSB3YXkgdG8gYWNjZXNzJiN4YTtjb250ZW50IHRoYXQgaXMgZGVmaW5lZCBieSBleHRlbnNpb25zIGJ1dCBub3QgeWV0IHN1cmZhY2VkIGluIHRoZSBDUUwgbW9kZWwgaW5mby4iLz4NCiAgICAgICAgIDwvYW5ub3RhdGlvbj4NCiAgICAgICAgIDxleHByZXNzaW9uIGxvY2F0b3I9IjE5NzozLTE5OToxMCIgeHNpOnR5cGU9IlF1ZXJ5Ij4NCiAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMTk3OjMtMTk3OjIxIiBhbGlhcz0iRSI+DQogICAgICAgICAgICAgICA8ZXhwcmVzc2lvbiBsb2NhdG9yPSIxOTc6My0xOTc6MTkiIHBhdGg9ImV4dGVuc2lvbiIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbmFtZT0iZWxlbWVudCIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgIDwvZXhwcmVzc2lvbj4NCiAgICAgICAgICAgIDwvc291cmNlPg0KICAgICAgICAgICAgPHdoZXJlIGxvY2F0b3I9IjE5ODo0LTE5ODoyMCIgeHNpOnR5cGU9IkVxdWFsIj4NCiAgICAgICAgICAgICAgIDxvcGVyYW5kIG5hbWU9IlRvU3RyaW5nIiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIxOTg6MTAtMTk4OjE0IiBwYXRoPSJ1cmwiIHNjb3BlPSJFIiB4c2k6dHlwZT0iUHJvcGVydHkiLz4NCiAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjE5ODoxOC0xOTg6MjAiIG5hbWU9InVybCIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgIDwvd2hlcmU+DQogICAgICAgICAgICA8cmV0dXJuIGxvY2F0b3I9IjE5OTozLTE5OToxMCI+DQogICAgICAgICAgICAgICA8ZXhwcmVzc2lvbiBsb2NhdG9yPSIxOTk6MTAiIG5hbWU9IkUiIHhzaTp0eXBlPSJBbGlhc1JlZiIvPg0KICAgICAgICAgICAgPC9yZXR1cm4+DQogICAgICAgICA8L2V4cHJlc3Npb24+DQogICAgICAgICA8b3BlcmFuZCBuYW1lPSJlbGVtZW50Ij4NCiAgICAgICAgICAgIDxvcGVyYW5kVHlwZVNwZWNpZmllciBsb2NhdG9yPSIxOTY6MzYtMTk2OjQyIiBuYW1lPSJmaGlyOkVsZW1lbnQiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgIDxvcGVyYW5kIG5hbWU9InVybCI+DQogICAgICAgICAgICA8b3BlcmFuZFR5cGVTcGVjaWZpZXIgbG9jYXRvcj0iMTk2OjQ5LTE5Njo1NCIgbmFtZT0idDpTdHJpbmciIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgIDwvZGVmPg0KICAgICAgPGRlZiBsb2NhdG9yPSIyMDY6MS0yMDc6NDEiIG5hbWU9IkV4dGVuc2lvbiIgY29udGV4dD0iUGF0aWVudCIgYWNjZXNzTGV2ZWw9IlB1YmxpYyIgeHNpOnR5cGU9IkZ1bmN0aW9uRGVmIj4NCiAgICAgICAgIDxhbm5vdGF0aW9uIHhzaTp0eXBlPSJhOkFubm90YXRpb24iPg0KICAgICAgICAgICAgPGE6dCBuYW1lPSJkZXNjcmlwdGlvbiIgdmFsdWU9IlJldHVybnMgdGhlIHNpbmdsZSBleHRlbnNpb24gKGlmIHByZXNlbnQpIG9uIHRoZSBnaXZlbiBlbGVtZW50IHdpdGggdGhlIHNwZWNpZmllZCB1cmwuIi8+DQogICAgICAgICAgICA8YTp0IG5hbWU9ImNvbW1lbnQiIHZhbHVlPSJUaGlzIGZ1bmN0aW9uIHVzZXMgc2luZ2xldG9uIGZyb20gdG8gZW5zdXJlIHRoYXQgYSBydW4tdGltZSBleGNlcHRpb24gaXMgdGhyb3duIGlmIHRoZXJlJiN4YTtpcyBtb3JlIHRoYW4gb25lIGV4dGVuc2lvbiBvbiB0aGUgZ2l2ZW4gcmVzb3VyY2Ugd2l0aCB0aGUgc3BlY2lmaWVkIHVybC4iLz4NCiAgICAgICAgIDwvYW5ub3RhdGlvbj4NCiAgICAgICAgIDxleHByZXNzaW9uIGxvY2F0b3I9IjIwNzozLTIwNzo0MSIgeHNpOnR5cGU9IlNpbmdsZXRvbkZyb20iPg0KICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMjA3OjE4LTIwNzo0MSIgbmFtZT0iRXh0ZW5zaW9ucyIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjIwNzoyOS0yMDc6MzUiIG5hbWU9ImVsZW1lbnQiIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIyMDc6MzgtMjA3OjQwIiBuYW1lPSJ1cmwiIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICA8L2V4cHJlc3Npb24+DQogICAgICAgICA8b3BlcmFuZCBuYW1lPSJlbGVtZW50Ij4NCiAgICAgICAgICAgIDxvcGVyYW5kVHlwZVNwZWNpZmllciBsb2NhdG9yPSIyMDY6MzUtMjA2OjQxIiBuYW1lPSJmaGlyOkVsZW1lbnQiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgIDxvcGVyYW5kIG5hbWU9InVybCI+DQogICAgICAgICAgICA8b3BlcmFuZFR5cGVTcGVjaWZpZXIgbG9jYXRvcj0iMjA2OjQ4LTIwNjo1MyIgbmFtZT0idDpTdHJpbmciIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgIDwvZGVmPg0KICAgICAgPGRlZiBsb2NhdG9yPSIyMTU6MS0yMTg6MTAiIG5hbWU9Ik1vZGlmaWVyRXh0ZW5zaW9ucyIgY29udGV4dD0iUGF0aWVudCIgYWNjZXNzTGV2ZWw9IlB1YmxpYyIgeHNpOnR5cGU9IkZ1bmN0aW9uRGVmIj4NCiAgICAgICAgIDxhbm5vdGF0aW9uIHhzaTp0eXBlPSJhOkFubm90YXRpb24iPg0KICAgICAgICAgICAgPGE6dCBuYW1lPSJkZXNjcmlwdGlvbiIgdmFsdWU9IlJldHVybnMgYW55IG1vZGlmaWVyIGV4dGVuc2lvbnMgZGVmaW5lZCBvbiB0aGUgZ2l2ZW4gcmVzb3VyY2Ugd2l0aCB0aGUgc3BlY2lmaWVkIHVybC4iLz4NCiAgICAgICAgICAgIDxhOnQgbmFtZT0iY29tbWVudCIgdmFsdWU9Ik5PVEU6IEV4dGVuc2lvbnMgYXJlIG5vdCB0aGUgcHJlZmVycmVkIGFwcHJvYWNoLCBidXQgYXJlIHVzZWQgYXMgYSB3YXkgdG8gYWNjZXNzJiN4YTtjb250ZW50IHRoYXQgaXMgZGVmaW5lZCBieSBleHRlbnNpb25zIGJ1dCBub3QgeWV0IHN1cmZhY2VkIGluIHRoZSYjeGE7Q1FMIG1vZGVsIGluZm8uIi8+DQogICAgICAgICA8L2Fubm90YXRpb24+DQogICAgICAgICA8ZXhwcmVzc2lvbiBsb2NhdG9yPSIyMTY6My0yMTg6MTAiIHhzaTp0eXBlPSJRdWVyeSI+DQogICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjIxNjozLTIxNjozNiIgYWxpYXM9IkUiPg0KICAgICAgICAgICAgICAgPGV4cHJlc3Npb24gbG9jYXRvcj0iMjE2OjMtMjE2OjM0IiBwYXRoPSJtb2RpZmllckV4dGVuc2lvbiIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbmFtZT0iZG9tYWluUmVzb3VyY2UiIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICA8L2V4cHJlc3Npb24+DQogICAgICAgICAgICA8L3NvdXJjZT4NCiAgICAgICAgICAgIDx3aGVyZSBsb2NhdG9yPSIyMTc6NC0yMTc6MjAiIHhzaTp0eXBlPSJFcXVhbCI+DQogICAgICAgICAgICAgICA8b3BlcmFuZCBuYW1lPSJUb1N0cmluZyIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMjE3OjEwLTIxNzoxNCIgcGF0aD0idXJsIiBzY29wZT0iRSIgeHNpOnR5cGU9IlByb3BlcnR5Ii8+DQogICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIyMTc6MTgtMjE3OjIwIiBuYW1lPSJ1cmwiIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICA8L3doZXJlPg0KICAgICAgICAgICAgPHJldHVybiBsb2NhdG9yPSIyMTg6My0yMTg6MTAiPg0KICAgICAgICAgICAgICAgPGV4cHJlc3Npb24gbG9jYXRvcj0iMjE4OjEwIiBuYW1lPSJFIiB4c2k6dHlwZT0iQWxpYXNSZWYiLz4NCiAgICAgICAgICAgIDwvcmV0dXJuPg0KICAgICAgICAgPC9leHByZXNzaW9uPg0KICAgICAgICAgPG9wZXJhbmQgbmFtZT0iZG9tYWluUmVzb3VyY2UiPg0KICAgICAgICAgICAgPG9wZXJhbmRUeXBlU3BlY2lmaWVyIGxvY2F0b3I9IjIxNTo1MS0yMTU6NjQiIG5hbWU9ImZoaXI6RG9tYWluUmVzb3VyY2UiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgIDxvcGVyYW5kIG5hbWU9InVybCI+DQogICAgICAgICAgICA8b3BlcmFuZFR5cGVTcGVjaWZpZXIgbG9jYXRvcj0iMjE1OjcxLTIxNTo3NiIgbmFtZT0idDpTdHJpbmciIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgIDwvZGVmPg0KICAgICAgPGRlZiBsb2NhdG9yPSIyMjU6MS0yMjY6NTYiIG5hbWU9Ik1vZGlmaWVyRXh0ZW5zaW9uIiBjb250ZXh0PSJQYXRpZW50IiBhY2Nlc3NMZXZlbD0iUHVibGljIiB4c2k6dHlwZT0iRnVuY3Rpb25EZWYiPg0KICAgICAgICAgPGFubm90YXRpb24geHNpOnR5cGU9ImE6QW5ub3RhdGlvbiI+DQogICAgICAgICAgICA8YTp0IG5hbWU9ImRlc2NyaXB0aW9uIiB2YWx1ZT0iUmV0dXJucyB0aGUgc2luZ2xlIG1vZGlmaWVyIGV4dGVuc2lvbiAoaWYgcHJlc2VudCkgb24gdGhlIGdpdmVuIHJlc291cmNlIHdpdGggdGhlIHNwZWNpZmllZCB1cmwuIi8+DQogICAgICAgICAgICA8YTp0IG5hbWU9ImNvbW1lbnQiIHZhbHVlPSJUaGlzIGZ1bmN0aW9uIHVzZXMgc2luZ2xldG9uIGZyb20gdG8gZW5zdXJlIHRoYXQgYSBydW4tdGltZSBleGNlcHRpb24gaXMgdGhyb3duIGlmIHRoZXJlJiN4YTtpcyBtb3JlIHRoYW4gb25lIGV4dGVuc2lvbiBvbiB0aGUgZ2l2ZW4gcmVzb3VyY2Ugd2l0aCB0aGUgc3BlY2lmaWVkIHVybC4iLz4NCiAgICAgICAgIDwvYW5ub3RhdGlvbj4NCiAgICAgICAgIDxleHByZXNzaW9uIGxvY2F0b3I9IjIyNjozLTIyNjo1NiIgeHNpOnR5cGU9IlNpbmdsZXRvbkZyb20iPg0KICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMjI2OjE4LTIyNjo1NiIgbmFtZT0iTW9kaWZpZXJFeHRlbnNpb25zIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMjI2OjM3LTIyNjo1MCIgbmFtZT0iZG9tYWluUmVzb3VyY2UiIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIyMjY6NTMtMjI2OjU1IiBuYW1lPSJ1cmwiIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICA8L2V4cHJlc3Npb24+DQogICAgICAgICA8b3BlcmFuZCBuYW1lPSJkb21haW5SZXNvdXJjZSI+DQogICAgICAgICAgICA8b3BlcmFuZFR5cGVTcGVjaWZpZXIgbG9jYXRvcj0iMjI1OjUwLTIyNTo2MyIgbmFtZT0iZmhpcjpEb21haW5SZXNvdXJjZSIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgPG9wZXJhbmQgbmFtZT0idXJsIj4NCiAgICAgICAgICAgIDxvcGVyYW5kVHlwZVNwZWNpZmllciBsb2NhdG9yPSIyMjU6NzAtMjI1Ojc1IiBuYW1lPSJ0OlN0cmluZyIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgPC9kZWY+DQogICAgICA8ZGVmIGxvY2F0b3I9IjIzMzoxLTIzNjoxMCIgbmFtZT0iTW9kaWZpZXJFeHRlbnNpb25zIiBjb250ZXh0PSJQYXRpZW50IiBhY2Nlc3NMZXZlbD0iUHVibGljIiB4c2k6dHlwZT0iRnVuY3Rpb25EZWYiPg0KICAgICAgICAgPGFubm90YXRpb24geHNpOnR5cGU9ImE6QW5ub3RhdGlvbiI+DQogICAgICAgICAgICA8YTp0IG5hbWU9ImRlc2NyaXB0aW9uIiB2YWx1ZT0iUmV0dXJucyBhbnkgbW9kaWZpZXIgZXh0ZW5zaW9ucyBkZWZpbmVkIG9uIHRoZSBnaXZlbiBlbGVtZW50IHdpdGggdGhlIHNwZWNpZmllZCB1cmwuIi8+DQogICAgICAgICAgICA8YTp0IG5hbWU9ImNvbW1lbnQiIHZhbHVlPSJOT1RFOiBFeHRlbnNpb25zIGFyZSBub3QgdGhlIHByZWZlcnJlZCBhcHByb2FjaCwgYnV0IGFyZSB1c2VkIGFzIGEgd2F5IHRvIGFjY2VzcyYjeGE7Y29udGVudCB0aGF0IGlzIGRlZmluZWQgYnkgZXh0ZW5zaW9ucyBidXQgbm90IHlldCBzdXJmYWNlZCBpbiB0aGUgQ1FMIG1vZGVsIGluZm8uIi8+DQogICAgICAgICA8L2Fubm90YXRpb24+DQogICAgICAgICA8ZXhwcmVzc2lvbiBsb2NhdG9yPSIyMzQ6My0yMzY6MTAiIHhzaTp0eXBlPSJRdWVyeSI+DQogICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjIzNDozLTIzNDoyOSIgYWxpYXM9IkUiPg0KICAgICAgICAgICAgICAgPGV4cHJlc3Npb24gbG9jYXRvcj0iMjM0OjMtMjM0OjI3IiBwYXRoPSJtb2RpZmllckV4dGVuc2lvbiIgeHNpOnR5cGU9IlByb3BlcnR5Ij4NCiAgICAgICAgICAgICAgICAgIDxzb3VyY2UgbmFtZT0iZWxlbWVudCIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgIDwvZXhwcmVzc2lvbj4NCiAgICAgICAgICAgIDwvc291cmNlPg0KICAgICAgICAgICAgPHdoZXJlIGxvY2F0b3I9IjIzNTo0LTIzNToyMCIgeHNpOnR5cGU9IkVxdWFsIj4NCiAgICAgICAgICAgICAgIDxvcGVyYW5kIG5hbWU9IlRvU3RyaW5nIiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIyMzU6MTAtMjM1OjE0IiBwYXRoPSJ1cmwiIHNjb3BlPSJFIiB4c2k6dHlwZT0iUHJvcGVydHkiLz4NCiAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjIzNToxOC0yMzU6MjAiIG5hbWU9InVybCIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgIDwvd2hlcmU+DQogICAgICAgICAgICA8cmV0dXJuIGxvY2F0b3I9IjIzNjozLTIzNjoxMCI+DQogICAgICAgICAgICAgICA8ZXhwcmVzc2lvbiBsb2NhdG9yPSIyMzY6MTAiIG5hbWU9IkUiIHhzaTp0eXBlPSJBbGlhc1JlZiIvPg0KICAgICAgICAgICAgPC9yZXR1cm4+DQogICAgICAgICA8L2V4cHJlc3Npb24+DQogICAgICAgICA8b3BlcmFuZCBuYW1lPSJlbGVtZW50Ij4NCiAgICAgICAgICAgIDxvcGVyYW5kVHlwZVNwZWNpZmllciBsb2NhdG9yPSIyMzM6NDQtMjMzOjU4IiBuYW1lPSJmaGlyOkJhY2tib25lRWxlbWVudCIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgPG9wZXJhbmQgbmFtZT0idXJsIj4NCiAgICAgICAgICAgIDxvcGVyYW5kVHlwZVNwZWNpZmllciBsb2NhdG9yPSIyMzM6NjUtMjMzOjcwIiBuYW1lPSJ0OlN0cmluZyIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgPC9kZWY+DQogICAgICA8ZGVmIGxvY2F0b3I9IjI0MzoxLTI0NDo0OSIgbmFtZT0iTW9kaWZpZXJFeHRlbnNpb24iIGNvbnRleHQ9IlBhdGllbnQiIGFjY2Vzc0xldmVsPSJQdWJsaWMiIHhzaTp0eXBlPSJGdW5jdGlvbkRlZiI+DQogICAgICAgICA8YW5ub3RhdGlvbiB4c2k6dHlwZT0iYTpBbm5vdGF0aW9uIj4NCiAgICAgICAgICAgIDxhOnQgbmFtZT0iZGVzY3JpcHRpb24iIHZhbHVlPSJSZXR1cm5zIHRoZSBzaW5nbGUgbW9kaWZpZXIgZXh0ZW5zaW9uIChpZiBwcmVzZW50KSBvbiB0aGUgZ2l2ZW4gZWxlbWVudCB3aXRoIHRoZSBzcGVjaWZpZWQgdXJsLiIvPg0KICAgICAgICAgICAgPGE6dCBuYW1lPSJjb21tZW50IiB2YWx1ZT0iVGhpcyBmdW5jdGlvbiB1c2VzIHNpbmdsZXRvbiBmcm9tIHRvIGVuc3VyZSB0aGF0IGEgcnVuLXRpbWUgZXhjZXB0aW9uIGlzIHRocm93biBpZiB0aGVyZSYjeGE7aXMgbW9yZSB0aGFuIG9uZSBleHRlbnNpb24gb24gdGhlIGdpdmVuIHJlc291cmNlIHdpdGggdGhlIHNwZWNpZmllZCB1cmwuIi8+DQogICAgICAgICA8L2Fubm90YXRpb24+DQogICAgICAgICA8ZXhwcmVzc2lvbiBsb2NhdG9yPSIyNDQ6My0yNDQ6NDkiIHhzaTp0eXBlPSJTaW5nbGV0b25Gcm9tIj4NCiAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjI0NDoxOC0yNDQ6NDkiIG5hbWU9Ik1vZGlmaWVyRXh0ZW5zaW9ucyIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjI0NDozNy0yNDQ6NDMiIG5hbWU9ImVsZW1lbnQiIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIyNDQ6NDYtMjQ0OjQ4IiBuYW1lPSJ1cmwiIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICA8L2V4cHJlc3Npb24+DQogICAgICAgICA8b3BlcmFuZCBuYW1lPSJlbGVtZW50Ij4NCiAgICAgICAgICAgIDxvcGVyYW5kVHlwZVNwZWNpZmllciBsb2NhdG9yPSIyNDM6NDMtMjQzOjU3IiBuYW1lPSJmaGlyOkJhY2tib25lRWxlbWVudCIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgPG9wZXJhbmQgbmFtZT0idXJsIj4NCiAgICAgICAgICAgIDxvcGVyYW5kVHlwZVNwZWNpZmllciBsb2NhdG9yPSIyNDM6NjQtMjQzOjY5IiBuYW1lPSJ0OlN0cmluZyIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgPC9kZWY+DQogICAgICA8ZGVmIGxvY2F0b3I9IjI1MToxLTI1NDoxMCIgbmFtZT0iQmFzZUV4dGVuc2lvbnMiIGNvbnRleHQ9IlBhdGllbnQiIGFjY2Vzc0xldmVsPSJQdWJsaWMiIHhzaTp0eXBlPSJGdW5jdGlvbkRlZiI+DQogICAgICAgICA8YW5ub3RhdGlvbiB4c2k6dHlwZT0iYTpBbm5vdGF0aW9uIj4NCiAgICAgICAgICAgIDxhOnQgbmFtZT0iZGVzY3JpcHRpb24iIHZhbHVlPSJSZXR1cm5zIGFueSBiYXNlLUZISVIgZXh0ZW5zaW9ucyBkZWZpbmVkIG9uIHRoZSBnaXZlbiByZXNvdXJjZSB3aXRoIHRoZSBzcGVjaWZpZWQgaWQuIi8+DQogICAgICAgICAgICA8YTp0IG5hbWU9ImNvbW1lbnQiIHZhbHVlPSJOT1RFOiBFeHRlbnNpb25zIGFyZSBub3QgdGhlIHByZWZlcnJlZCBhcHByb2FjaCwgYnV0IGFyZSB1c2VkIGFzIGEgd2F5IHRvIGFjY2VzcyYjeGE7Y29udGVudCB0aGF0IGlzIGRlZmluZWQgYnkgZXh0ZW5zaW9ucyBidXQgbm90IHlldCBzdXJmYWNlZCBpbiB0aGUgQ1FMIG1vZGVsIGluZm8uIi8+DQogICAgICAgICA8L2Fubm90YXRpb24+DQogICAgICAgICA8ZXhwcmVzc2lvbiBsb2NhdG9yPSIyNTI6My0yNTQ6MTAiIHhzaTp0eXBlPSJRdWVyeSI+DQogICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjI1MjozLTI1MjoyOCIgYWxpYXM9IkUiPg0KICAgICAgICAgICAgICAgPGV4cHJlc3Npb24gbG9jYXRvcj0iMjUyOjMtMjUyOjI2IiBwYXRoPSJleHRlbnNpb24iIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICA8c291cmNlIG5hbWU9ImRvbWFpblJlc291cmNlIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgPC9leHByZXNzaW9uPg0KICAgICAgICAgICAgPC9zb3VyY2U+DQogICAgICAgICAgICA8d2hlcmUgbG9jYXRvcj0iMjUzOjQtMjUzOjY2IiB4c2k6dHlwZT0iRXF1YWwiPg0KICAgICAgICAgICAgICAgPG9wZXJhbmQgbmFtZT0iVG9TdHJpbmciIGxpYnJhcnlOYW1lPSJGSElSSGVscGVycyIgeHNpOnR5cGU9IkZ1bmN0aW9uUmVmIj4NCiAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjI1MzoxMC0yNTM6MTQiIHBhdGg9InVybCIgc2NvcGU9IkUiIHhzaTp0eXBlPSJQcm9wZXJ0eSIvPg0KICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMjUzOjE4LTI1Mzo2NiIgeHNpOnR5cGU9IkNvbmNhdGVuYXRlIj4NCiAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjI1MzoxOS0yNTM6NjAiIHZhbHVlVHlwZT0idDpTdHJpbmciIHZhbHVlPSJodHRwOi8vaGw3Lm9yZy9maGlyL1N0cnVjdHVyZURlZmluaXRpb24vIiB4c2k6dHlwZT0iTGl0ZXJhbCIvPg0KICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMjUzOjY0LTI1Mzo2NSIgbmFtZT0iaWQiIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICA8L3doZXJlPg0KICAgICAgICAgICAgPHJldHVybiBsb2NhdG9yPSIyNTQ6My0yNTQ6MTAiPg0KICAgICAgICAgICAgICAgPGV4cHJlc3Npb24gbG9jYXRvcj0iMjU0OjEwIiBuYW1lPSJFIiB4c2k6dHlwZT0iQWxpYXNSZWYiLz4NCiAgICAgICAgICAgIDwvcmV0dXJuPg0KICAgICAgICAgPC9leHByZXNzaW9uPg0KICAgICAgICAgPG9wZXJhbmQgbmFtZT0iZG9tYWluUmVzb3VyY2UiPg0KICAgICAgICAgICAgPG9wZXJhbmRUeXBlU3BlY2lmaWVyIGxvY2F0b3I9IjI1MTo0Ny0yNTE6NjAiIG5hbWU9ImZoaXI6RG9tYWluUmVzb3VyY2UiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgIDxvcGVyYW5kIG5hbWU9ImlkIj4NCiAgICAgICAgICAgIDxvcGVyYW5kVHlwZVNwZWNpZmllciBsb2NhdG9yPSIyNTE6NjYtMjUxOjcxIiBuYW1lPSJ0OlN0cmluZyIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgPC9kZWY+DQogICAgICA8ZGVmIGxvY2F0b3I9IjI2MToxLTI2Mjo1MSIgbmFtZT0iQmFzZUV4dGVuc2lvbiIgY29udGV4dD0iUGF0aWVudCIgYWNjZXNzTGV2ZWw9IlB1YmxpYyIgeHNpOnR5cGU9IkZ1bmN0aW9uRGVmIj4NCiAgICAgICAgIDxhbm5vdGF0aW9uIHhzaTp0eXBlPSJhOkFubm90YXRpb24iPg0KICAgICAgICAgICAgPGE6dCBuYW1lPSJkZXNjcmlwdGlvbiIgdmFsdWU9IlJldHVybnMgdGhlIHNpbmdsZSBiYXNlLUZISVIgZXh0ZW5zaW9uIChpZiBwcmVzZW50KSBvbiB0aGUgZ2l2ZW4gcmVzb3VyY2Ugd2l0aCB0aGUgc3BlY2lmaWVkIGlkLiIvPg0KICAgICAgICAgICAgPGE6dCBuYW1lPSJjb21tZW50IiB2YWx1ZT0iVGhpcyBmdW5jdGlvbiB1c2VzIHNpbmdsZXRvbiBmcm9tIHRvIGVuc3VyZSB0aGF0IGEgcnVuLXRpbWUgZXhjZXB0aW9uIGlzIHRocm93biBpZiB0aGVyZSYjeGE7aXMgbW9yZSB0aGFuIG9uZSBleHRlbnNpb24gb24gdGhlIGdpdmVuIHJlc291cmNlIHdpdGggdGhlIHNwZWNpZmllZCB1cmwuIi8+DQogICAgICAgICA8L2Fubm90YXRpb24+DQogICAgICAgICA8ZXhwcmVzc2lvbiBsb2NhdG9yPSIyNjI6My0yNjI6NTEiIHhzaTp0eXBlPSJTaW5nbGV0b25Gcm9tIj4NCiAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjI2MjoxOC0yNjI6NTEiIG5hbWU9IkJhc2VFeHRlbnNpb25zIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMjYyOjMzLTI2Mjo0NiIgbmFtZT0iZG9tYWluUmVzb3VyY2UiIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIyNjI6NDktMjYyOjUwIiBuYW1lPSJpZCIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgIDwvZXhwcmVzc2lvbj4NCiAgICAgICAgIDxvcGVyYW5kIG5hbWU9ImRvbWFpblJlc291cmNlIj4NCiAgICAgICAgICAgIDxvcGVyYW5kVHlwZVNwZWNpZmllciBsb2NhdG9yPSIyNjE6NDYtMjYxOjU5IiBuYW1lPSJmaGlyOkRvbWFpblJlc291cmNlIiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICA8b3BlcmFuZCBuYW1lPSJpZCI+DQogICAgICAgICAgICA8b3BlcmFuZFR5cGVTcGVjaWZpZXIgbG9jYXRvcj0iMjYxOjY1LTI2MTo3MCIgbmFtZT0idDpTdHJpbmciIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgIDwvZGVmPg0KICAgICAgPGRlZiBsb2NhdG9yPSIyNjk6MS0yNzI6MTAiIG5hbWU9IkJhc2VFeHRlbnNpb25zIiBjb250ZXh0PSJQYXRpZW50IiBhY2Nlc3NMZXZlbD0iUHVibGljIiB4c2k6dHlwZT0iRnVuY3Rpb25EZWYiPg0KICAgICAgICAgPGFubm90YXRpb24geHNpOnR5cGU9ImE6QW5ub3RhdGlvbiI+DQogICAgICAgICAgICA8YTp0IG5hbWU9ImRlc2NyaXB0aW9uIiB2YWx1ZT0iUmV0dXJucyBhbnkgYmFzZS1GSElSIGV4dGVuc2lvbnMgZGVmaW5lZCBvbiB0aGUgZ2l2ZW4gZWxlbWVudCB3aXRoIHRoZSBzcGVjaWZpZWQgaWQuIi8+DQogICAgICAgICAgICA8YTp0IG5hbWU9ImNvbW1lbnQiIHZhbHVlPSJOT1RFOiBFeHRlbnNpb25zIGFyZSBub3QgdGhlIHByZWZlcnJlZCBhcHByb2FjaCwgYnV0IGFyZSB1c2VkIGFzIGEgd2F5IHRvIGFjY2VzcyYjeGE7Y29udGVudCB0aGF0IGlzIGRlZmluZWQgYnkgZXh0ZW5zaW9ucyBidXQgbm90IHlldCBzdXJmYWNlZCBpbiB0aGUgQ1FMIG1vZGVsIGluZm8uIi8+DQogICAgICAgICA8L2Fubm90YXRpb24+DQogICAgICAgICA8ZXhwcmVzc2lvbiBsb2NhdG9yPSIyNzA6My0yNzI6MTAiIHhzaTp0eXBlPSJRdWVyeSI+DQogICAgICAgICAgICA8c291cmNlIGxvY2F0b3I9IjI3MDozLTI3MDoyMSIgYWxpYXM9IkUiPg0KICAgICAgICAgICAgICAgPGV4cHJlc3Npb24gbG9jYXRvcj0iMjcwOjMtMjcwOjE5IiBwYXRoPSJleHRlbnNpb24iIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICA8c291cmNlIG5hbWU9ImVsZW1lbnQiIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICA8L2V4cHJlc3Npb24+DQogICAgICAgICAgICA8L3NvdXJjZT4NCiAgICAgICAgICAgIDx3aGVyZSBsb2NhdG9yPSIyNzE6NC0yNzE6NjYiIHhzaTp0eXBlPSJFcXVhbCI+DQogICAgICAgICAgICAgICA8b3BlcmFuZCBuYW1lPSJUb1N0cmluZyIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMjcxOjEwLTI3MToxNCIgcGF0aD0idXJsIiBzY29wZT0iRSIgeHNpOnR5cGU9IlByb3BlcnR5Ii8+DQogICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIyNzE6MTgtMjcxOjY2IiB4c2k6dHlwZT0iQ29uY2F0ZW5hdGUiPg0KICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMjcxOjE5LTI3MTo2MCIgdmFsdWVUeXBlPSJ0OlN0cmluZyIgdmFsdWU9Imh0dHA6Ly9obDcub3JnL2ZoaXIvU3RydWN0dXJlRGVmaW5pdGlvbi8iIHhzaTp0eXBlPSJMaXRlcmFsIi8+DQogICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIyNzE6NjQtMjcxOjY1IiBuYW1lPSJpZCIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgIDwvd2hlcmU+DQogICAgICAgICAgICA8cmV0dXJuIGxvY2F0b3I9IjI3MjozLTI3MjoxMCI+DQogICAgICAgICAgICAgICA8ZXhwcmVzc2lvbiBsb2NhdG9yPSIyNzI6MTAiIG5hbWU9IkUiIHhzaTp0eXBlPSJBbGlhc1JlZiIvPg0KICAgICAgICAgICAgPC9yZXR1cm4+DQogICAgICAgICA8L2V4cHJlc3Npb24+DQogICAgICAgICA8b3BlcmFuZCBuYW1lPSJlbGVtZW50Ij4NCiAgICAgICAgICAgIDxvcGVyYW5kVHlwZVNwZWNpZmllciBsb2NhdG9yPSIyNjk6NDAtMjY5OjQ2IiBuYW1lPSJmaGlyOkVsZW1lbnQiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgIDxvcGVyYW5kIG5hbWU9ImlkIj4NCiAgICAgICAgICAgIDxvcGVyYW5kVHlwZVNwZWNpZmllciBsb2NhdG9yPSIyNjk6NTItMjY5OjU3IiBuYW1lPSJ0OlN0cmluZyIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgPC9kZWY+DQogICAgICA8ZGVmIGxvY2F0b3I9IjI3OToxLTI4MDo0NCIgbmFtZT0iQmFzZUV4dGVuc2lvbiIgY29udGV4dD0iUGF0aWVudCIgYWNjZXNzTGV2ZWw9IlB1YmxpYyIgeHNpOnR5cGU9IkZ1bmN0aW9uRGVmIj4NCiAgICAgICAgIDxhbm5vdGF0aW9uIHhzaTp0eXBlPSJhOkFubm90YXRpb24iPg0KICAgICAgICAgICAgPGE6dCBuYW1lPSJkZXNjcmlwdGlvbiIgdmFsdWU9IlJldHVybnMgdGhlIHNpbmdsZSBiYXNlLUZISVIgZXh0ZW5zaW9uIChpZiBwcmVzZW50KSBvbiB0aGUgZ2l2ZW4gZWxlbWVudCB3aXRoIHRoZSBzcGVjaWZpZWQgaWQuIi8+DQogICAgICAgICAgICA8YTp0IG5hbWU9ImNvbW1lbnQiIHZhbHVlPSJUaGlzIGZ1bmN0aW9uIHVzZXMgc2luZ2xldG9uIGZyb20gdG8gZW5zdXJlIHRoYXQgYSBydW4tdGltZSBleGNlcHRpb24gaXMgdGhyb3duIGlmIHRoZXJlJiN4YTtpcyBtb3JlIHRoYW4gb25lIGV4dGVuc2lvbiBvbiB0aGUgZ2l2ZW4gcmVzb3VyY2Ugd2l0aCB0aGUgc3BlY2lmaWVkIHVybC4iLz4NCiAgICAgICAgIDwvYW5ub3RhdGlvbj4NCiAgICAgICAgIDxleHByZXNzaW9uIGxvY2F0b3I9IjI4MDozLTI4MDo0NCIgeHNpOnR5cGU9IlNpbmdsZXRvbkZyb20iPg0KICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMjgwOjE4LTI4MDo0NCIgbmFtZT0iQmFzZUV4dGVuc2lvbnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIyODA6MzMtMjgwOjM5IiBuYW1lPSJlbGVtZW50IiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMjgwOjQyLTI4MDo0MyIgbmFtZT0iaWQiIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICA8L2V4cHJlc3Npb24+DQogICAgICAgICA8b3BlcmFuZCBuYW1lPSJlbGVtZW50Ij4NCiAgICAgICAgICAgIDxvcGVyYW5kVHlwZVNwZWNpZmllciBsb2NhdG9yPSIyNzk6MzktMjc5OjQ1IiBuYW1lPSJmaGlyOkVsZW1lbnQiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgIDxvcGVyYW5kIG5hbWU9ImlkIj4NCiAgICAgICAgICAgIDxvcGVyYW5kVHlwZVNwZWNpZmllciBsb2NhdG9yPSIyNzk6NTEtMjc5OjU2IiBuYW1lPSJ0OlN0cmluZyIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgPC9kZWY+DQogICAgICA8ZGVmIGxvY2F0b3I9IjI4NzoxLTI5MDoxMCIgbmFtZT0iQmFzZU1vZGlmaWVyRXh0ZW5zaW9ucyIgY29udGV4dD0iUGF0aWVudCIgYWNjZXNzTGV2ZWw9IlB1YmxpYyIgeHNpOnR5cGU9IkZ1bmN0aW9uRGVmIj4NCiAgICAgICAgIDxhbm5vdGF0aW9uIHhzaTp0eXBlPSJhOkFubm90YXRpb24iPg0KICAgICAgICAgICAgPGE6dCBuYW1lPSJkZXNjcmlwdGlvbiIgdmFsdWU9IlJldHVybnMgYW55IGJhc2UtRkhJUiBtb2RpZmllciBleHRlbnNpb25zIGRlZmluZWQgb24gdGhlIGdpdmVuIHJlc291cmNlIHdpdGggdGhlIHNwZWNpZmllZCBpZC4iLz4NCiAgICAgICAgICAgIDxhOnQgbmFtZT0iY29tbWVudCIgdmFsdWU9Ik5PVEU6IEV4dGVuc2lvbnMgYXJlIG5vdCB0aGUgcHJlZmVycmVkIGFwcHJvYWNoLCBidXQgYXJlIHVzZWQgYXMgYSB3YXkgdG8gYWNjZXNzJiN4YTtjb250ZW50IHRoYXQgaXMgZGVmaW5lZCBieSBleHRlbnNpb25zIGJ1dCBub3QgeWV0IHN1cmZhY2VkIGluIHRoZSBDUUwgbW9kZWwgaW5mby4iLz4NCiAgICAgICAgIDwvYW5ub3RhdGlvbj4NCiAgICAgICAgIDxleHByZXNzaW9uIGxvY2F0b3I9IjI4ODozLTI5MDoxMCIgeHNpOnR5cGU9IlF1ZXJ5Ij4NCiAgICAgICAgICAgIDxzb3VyY2UgbG9jYXRvcj0iMjg4OjMtMjg4OjM2IiBhbGlhcz0iRSI+DQogICAgICAgICAgICAgICA8ZXhwcmVzc2lvbiBsb2NhdG9yPSIyODg6My0yODg6MzQiIHBhdGg9Im1vZGlmaWVyRXh0ZW5zaW9uIiB4c2k6dHlwZT0iUHJvcGVydHkiPg0KICAgICAgICAgICAgICAgICAgPHNvdXJjZSBuYW1lPSJkb21haW5SZXNvdXJjZSIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgIDwvZXhwcmVzc2lvbj4NCiAgICAgICAgICAgIDwvc291cmNlPg0KICAgICAgICAgICAgPHdoZXJlIGxvY2F0b3I9IjI4OTo0LTI4OTo2NiIgeHNpOnR5cGU9IkVxdWFsIj4NCiAgICAgICAgICAgICAgIDxvcGVyYW5kIG5hbWU9IlRvU3RyaW5nIiBsaWJyYXJ5TmFtZT0iRkhJUkhlbHBlcnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIyODk6MTAtMjg5OjE0IiBwYXRoPSJ1cmwiIHNjb3BlPSJFIiB4c2k6dHlwZT0iUHJvcGVydHkiLz4NCiAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjI4OToxOC0yODk6NjYiIHhzaTp0eXBlPSJDb25jYXRlbmF0ZSI+DQogICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIyODk6MTktMjg5OjYwIiB2YWx1ZVR5cGU9InQ6U3RyaW5nIiB2YWx1ZT0iaHR0cDovL2hsNy5vcmcvZmhpci9TdHJ1Y3R1cmVEZWZpbml0aW9uLyIgeHNpOnR5cGU9IkxpdGVyYWwiLz4NCiAgICAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjI4OTo2NC0yODk6NjUiIG5hbWU9ImlkIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgICAgPC93aGVyZT4NCiAgICAgICAgICAgIDxyZXR1cm4gbG9jYXRvcj0iMjkwOjMtMjkwOjEwIj4NCiAgICAgICAgICAgICAgIDxleHByZXNzaW9uIGxvY2F0b3I9IjI5MDoxMCIgbmFtZT0iRSIgeHNpOnR5cGU9IkFsaWFzUmVmIi8+DQogICAgICAgICAgICA8L3JldHVybj4NCiAgICAgICAgIDwvZXhwcmVzc2lvbj4NCiAgICAgICAgIDxvcGVyYW5kIG5hbWU9ImRvbWFpblJlc291cmNlIj4NCiAgICAgICAgICAgIDxvcGVyYW5kVHlwZVNwZWNpZmllciBsb2NhdG9yPSIyODc6NTUtMjg3OjY4IiBuYW1lPSJmaGlyOkRvbWFpblJlc291cmNlIiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICA8b3BlcmFuZCBuYW1lPSJpZCI+DQogICAgICAgICAgICA8b3BlcmFuZFR5cGVTcGVjaWZpZXIgbG9jYXRvcj0iMjg3Ojc0LTI4Nzo3OSIgbmFtZT0idDpTdHJpbmciIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgIDwvZGVmPg0KICAgICAgPGRlZiBsb2NhdG9yPSIyOTc6MS0yOTg6NTkiIG5hbWU9IkJhc2VNb2RpZmllckV4dGVuc2lvbiIgY29udGV4dD0iUGF0aWVudCIgYWNjZXNzTGV2ZWw9IlB1YmxpYyIgeHNpOnR5cGU9IkZ1bmN0aW9uRGVmIj4NCiAgICAgICAgIDxhbm5vdGF0aW9uIHhzaTp0eXBlPSJhOkFubm90YXRpb24iPg0KICAgICAgICAgICAgPGE6dCBuYW1lPSJkZXNjcmlwdGlvbiIgdmFsdWU9IlJldHVybnMgdGhlIHNpbmdsZSBiYXNlLUZISVIgbW9kaWZpZXIgZXh0ZW5zaW9uIChpZiBwcmVzZW50KSBvbiB0aGUgZ2l2ZW4gcmVzb3VyY2Ugd2l0aCB0aGUgc3BlY2lmaWVkIGlkLiIvPg0KICAgICAgICAgICAgPGE6dCBuYW1lPSJjb21tZW50IiB2YWx1ZT0iVGhpcyBmdW5jdGlvbiB1c2VzIHNpbmdsZXRvbiBmcm9tIHRvIGVuc3VyZSB0aGF0IGEgcnVuLXRpbWUgZXhjZXB0aW9uIGlzIHRocm93biBpZiB0aGVyZSYjeGE7aXMgbW9yZSB0aGFuIG9uZSBleHRlbnNpb24gb24gdGhlIGdpdmVuIHJlc291cmNlIHdpdGggdGhlIHNwZWNpZmllZCB1cmwuIi8+DQogICAgICAgICA8L2Fubm90YXRpb24+DQogICAgICAgICA8ZXhwcmVzc2lvbiBsb2NhdG9yPSIyOTg6My0yOTg6NTkiIHhzaTp0eXBlPSJTaW5nbGV0b25Gcm9tIj4NCiAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjI5ODoxOC0yOTg6NTkiIG5hbWU9IkJhc2VNb2RpZmllckV4dGVuc2lvbnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIyOTg6NDEtMjk4OjU0IiBuYW1lPSJkb21haW5SZXNvdXJjZSIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjI5ODo1Ny0yOTg6NTgiIG5hbWU9ImlkIiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgPC9leHByZXNzaW9uPg0KICAgICAgICAgPG9wZXJhbmQgbmFtZT0iZG9tYWluUmVzb3VyY2UiPg0KICAgICAgICAgICAgPG9wZXJhbmRUeXBlU3BlY2lmaWVyIGxvY2F0b3I9IjI5Nzo1NC0yOTc6NjciIG5hbWU9ImZoaXI6RG9tYWluUmVzb3VyY2UiIHhzaTp0eXBlPSJOYW1lZFR5cGVTcGVjaWZpZXIiLz4NCiAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgIDxvcGVyYW5kIG5hbWU9ImlkIj4NCiAgICAgICAgICAgIDxvcGVyYW5kVHlwZVNwZWNpZmllciBsb2NhdG9yPSIyOTc6NzMtMjk3Ojc4IiBuYW1lPSJ0OlN0cmluZyIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgPC9kZWY+DQogICAgICA8ZGVmIGxvY2F0b3I9IjMwNToxLTMwODoxMCIgbmFtZT0iQmFzZU1vZGlmaWVyRXh0ZW5zaW9ucyIgY29udGV4dD0iUGF0aWVudCIgYWNjZXNzTGV2ZWw9IlB1YmxpYyIgeHNpOnR5cGU9IkZ1bmN0aW9uRGVmIj4NCiAgICAgICAgIDxhbm5vdGF0aW9uIHhzaTp0eXBlPSJhOkFubm90YXRpb24iPg0KICAgICAgICAgICAgPGE6dCBuYW1lPSJkZXNjcmlwdGlvbiIgdmFsdWU9IlJldHVybnMgYW55IGJhc2UtRkhJUiBtb2RpZmllciBleHRlbnNpb25zIGRlZmluZWQgb24gdGhlIGdpdmVuIGVsZW1lbnQgd2l0aCB0aGUgc3BlY2lmaWVkIGlkLiIvPg0KICAgICAgICAgICAgPGE6dCBuYW1lPSJjb21tZW50IiB2YWx1ZT0iTk9URTogRXh0ZW5zaW9ucyBhcmUgbm90IHRoZSBwcmVmZXJyZWQgYXBwcm9hY2gsIGJ1dCBhcmUgdXNlZCBhcyBhIHdheSB0byBhY2Nlc3MmI3hhO2NvbnRlbnQgdGhhdCBpcyBkZWZpbmVkIGJ5IGV4dGVuc2lvbnMgYnV0IG5vdCB5ZXQgc3VyZmFjZWQgaW4gdGhlIENRTCBtb2RlbCBpbmZvLiIvPg0KICAgICAgICAgPC9hbm5vdGF0aW9uPg0KICAgICAgICAgPGV4cHJlc3Npb24gbG9jYXRvcj0iMzA2OjMtMzA4OjEwIiB4c2k6dHlwZT0iUXVlcnkiPg0KICAgICAgICAgICAgPHNvdXJjZSBsb2NhdG9yPSIzMDY6My0zMDY6MjkiIGFsaWFzPSJFIj4NCiAgICAgICAgICAgICAgIDxleHByZXNzaW9uIGxvY2F0b3I9IjMwNjozLTMwNjoyNyIgcGF0aD0ibW9kaWZpZXJFeHRlbnNpb24iIHhzaTp0eXBlPSJQcm9wZXJ0eSI+DQogICAgICAgICAgICAgICAgICA8c291cmNlIG5hbWU9ImVsZW1lbnQiIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICAgICA8L2V4cHJlc3Npb24+DQogICAgICAgICAgICA8L3NvdXJjZT4NCiAgICAgICAgICAgIDx3aGVyZSBsb2NhdG9yPSIzMDc6NC0zMDc6NjYiIHhzaTp0eXBlPSJFcXVhbCI+DQogICAgICAgICAgICAgICA8b3BlcmFuZCBuYW1lPSJUb1N0cmluZyIgbGlicmFyeU5hbWU9IkZISVJIZWxwZXJzIiB4c2k6dHlwZT0iRnVuY3Rpb25SZWYiPg0KICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMzA3OjEwLTMwNzoxNCIgcGF0aD0idXJsIiBzY29wZT0iRSIgeHNpOnR5cGU9IlByb3BlcnR5Ii8+DQogICAgICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIzMDc6MTgtMzA3OjY2IiB4c2k6dHlwZT0iQ29uY2F0ZW5hdGUiPg0KICAgICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMzA3OjE5LTMwNzo2MCIgdmFsdWVUeXBlPSJ0OlN0cmluZyIgdmFsdWU9Imh0dHA6Ly9obDcub3JnL2ZoaXIvU3RydWN0dXJlRGVmaW5pdGlvbi8iIHhzaTp0eXBlPSJMaXRlcmFsIi8+DQogICAgICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIzMDc6NjQtMzA3OjY1IiBuYW1lPSJpZCIgeHNpOnR5cGU9Ik9wZXJhbmRSZWYiLz4NCiAgICAgICAgICAgICAgIDwvb3BlcmFuZD4NCiAgICAgICAgICAgIDwvd2hlcmU+DQogICAgICAgICAgICA8cmV0dXJuIGxvY2F0b3I9IjMwODozLTMwODoxMCI+DQogICAgICAgICAgICAgICA8ZXhwcmVzc2lvbiBsb2NhdG9yPSIzMDg6MTAiIG5hbWU9IkUiIHhzaTp0eXBlPSJBbGlhc1JlZiIvPg0KICAgICAgICAgICAgPC9yZXR1cm4+DQogICAgICAgICA8L2V4cHJlc3Npb24+DQogICAgICAgICA8b3BlcmFuZCBuYW1lPSJlbGVtZW50Ij4NCiAgICAgICAgICAgIDxvcGVyYW5kVHlwZVNwZWNpZmllciBsb2NhdG9yPSIzMDU6NDgtMzA1OjYyIiBuYW1lPSJmaGlyOkJhY2tib25lRWxlbWVudCIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgPG9wZXJhbmQgbmFtZT0iaWQiPg0KICAgICAgICAgICAgPG9wZXJhbmRUeXBlU3BlY2lmaWVyIGxvY2F0b3I9IjMwNTo2OC0zMDU6NzMiIG5hbWU9InQ6U3RyaW5nIiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICA8L29wZXJhbmQ+DQogICAgICA8L2RlZj4NCiAgICAgIDxkZWYgbG9jYXRvcj0iMzE1OjEtMzE2OjUyIiBuYW1lPSJCYXNlTW9kaWZpZXJFeHRlbnNpb24iIGNvbnRleHQ9IlBhdGllbnQiIGFjY2Vzc0xldmVsPSJQdWJsaWMiIHhzaTp0eXBlPSJGdW5jdGlvbkRlZiI+DQogICAgICAgICA8YW5ub3RhdGlvbiB4c2k6dHlwZT0iYTpBbm5vdGF0aW9uIj4NCiAgICAgICAgICAgIDxhOnQgbmFtZT0iZGVzY3JpcHRpb24iIHZhbHVlPSJSZXR1cm5zIHRoZSBzaW5nbGUgYmFzZS1GSElSIGV4dGVuc2lvbiAoaWYgcHJlc2VudCkgb24gdGhlIGdpdmVuIGVsZW1lbnQgd2l0aCB0aGUgc3BlY2lmaWVkIGlkLiIvPg0KICAgICAgICAgICAgPGE6dCBuYW1lPSJjb21tZW50IiB2YWx1ZT0iVGhpcyBmdW5jdGlvbiB1c2VzIHNpbmdsZXRvbiBmcm9tIHRvIGVuc3VyZSB0aGF0IGEgcnVuLXRpbWUgZXhjZXB0aW9uIGlzIHRocm93biBpZiB0aGVyZSYjeGE7aXMgbW9yZSB0aGFuIG9uZSBleHRlbnNpb24gb24gdGhlIGdpdmVuIHJlc291cmNlIHdpdGggdGhlIHNwZWNpZmllZCB1cmwuIi8+DQogICAgICAgICA8L2Fubm90YXRpb24+DQogICAgICAgICA8ZXhwcmVzc2lvbiBsb2NhdG9yPSIzMTY6My0zMTY6NTIiIHhzaTp0eXBlPSJTaW5nbGV0b25Gcm9tIj4NCiAgICAgICAgICAgIDxvcGVyYW5kIGxvY2F0b3I9IjMxNjoxOC0zMTY6NTIiIG5hbWU9IkJhc2VNb2RpZmllckV4dGVuc2lvbnMiIHhzaTp0eXBlPSJGdW5jdGlvblJlZiI+DQogICAgICAgICAgICAgICA8b3BlcmFuZCBsb2NhdG9yPSIzMTY6NDEtMzE2OjQ3IiBuYW1lPSJlbGVtZW50IiB4c2k6dHlwZT0iT3BlcmFuZFJlZiIvPg0KICAgICAgICAgICAgICAgPG9wZXJhbmQgbG9jYXRvcj0iMzE2OjUwLTMxNjo1MSIgbmFtZT0iaWQiIHhzaTp0eXBlPSJPcGVyYW5kUmVmIi8+DQogICAgICAgICAgICA8L29wZXJhbmQ+DQogICAgICAgICA8L2V4cHJlc3Npb24+DQogICAgICAgICA8b3BlcmFuZCBuYW1lPSJlbGVtZW50Ij4NCiAgICAgICAgICAgIDxvcGVyYW5kVHlwZVNwZWNpZmllciBsb2NhdG9yPSIzMTU6NDctMzE1OjYxIiBuYW1lPSJmaGlyOkJhY2tib25lRWxlbWVudCIgeHNpOnR5cGU9Ik5hbWVkVHlwZVNwZWNpZmllciIvPg0KICAgICAgICAgPC9vcGVyYW5kPg0KICAgICAgICAgPG9wZXJhbmQgbmFtZT0iaWQiPg0KICAgICAgICAgICAgPG9wZXJhbmRUeXBlU3BlY2lmaWVyIGxvY2F0b3I9IjMxNTo2Ny0zMTU6NzIiIG5hbWU9InQ6U3RyaW5nIiB4c2k6dHlwZT0iTmFtZWRUeXBlU3BlY2lmaWVyIi8+DQogICAgICAgICA8L29wZXJhbmQ+DQogICAgICA8L2RlZj4NCiAgIDwvc3RhdGVtZW50cz4NCjwvbGlicmFyeT4NCg==" + }, + { + "contentType": "application/elm+json", + "data": "ew0KICAgImxpYnJhcnkiIDogew0KICAgICAgImFubm90YXRpb24iIDogWyB7DQogICAgICAgICAidHJhbnNsYXRvck9wdGlvbnMiIDogIkVuYWJsZUxvY2F0b3JzLERpc2FibGVMaXN0RGVtb3Rpb24sRGlzYWJsZUxpc3RQcm9tb3Rpb24iLA0KICAgICAgICAgInR5cGUiIDogIkNxbFRvRWxtSW5mbyINCiAgICAgIH0sIHsNCiAgICAgICAgICJ0eXBlIiA6ICJBbm5vdGF0aW9uIiwNCiAgICAgICAgICJ0IiA6IFsgew0KICAgICAgICAgICAgIm5hbWUiIDogImF1dGhvciIsDQogICAgICAgICAgICAidmFsdWUiIDogIkJyeW4gUmhvZGVzIg0KICAgICAgICAgfSwgew0KICAgICAgICAgICAgIm5hbWUiIDogImRlc2NyaXB0aW9uIiwNCiAgICAgICAgICAgICJ2YWx1ZSIgOiAiQ29tbW9uIHRlcm1pbm9sb2dpZXMgYW5kIGZ1bmN0aW9ucyB1c2VkIGluIEZISVItYmFzZWQgQ1FMIGFydGlmYWN0cyINCiAgICAgICAgIH0gXQ0KICAgICAgfSBdLA0KICAgICAgImlkZW50aWZpZXIiIDogew0KICAgICAgICAgImlkIiA6ICJGSElSQ29tbW9uIiwNCiAgICAgICAgICJzeXN0ZW0iIDogImh0dHA6Ly9jb250ZW50LmFscGhvcmEuY29tL2ZoaXIvZHFtIiwNCiAgICAgICAgICJ2ZXJzaW9uIiA6ICI0LjAuMSINCiAgICAgIH0sDQogICAgICAic2NoZW1hSWRlbnRpZmllciIgOiB7DQogICAgICAgICAiaWQiIDogInVybjpobDctb3JnOmVsbSIsDQogICAgICAgICAidmVyc2lvbiIgOiAicjEiDQogICAgICB9LA0KICAgICAgInVzaW5ncyIgOiB7DQogICAgICAgICAiZGVmIiA6IFsgew0KICAgICAgICAgICAgImxvY2FsSWRlbnRpZmllciIgOiAiU3lzdGVtIiwNCiAgICAgICAgICAgICJ1cmkiIDogInVybjpobDctb3JnOmVsbS10eXBlczpyMSINCiAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4OjEtODoyNiIsDQogICAgICAgICAgICAibG9jYWxJZGVudGlmaWVyIiA6ICJGSElSIiwNCiAgICAgICAgICAgICJ1cmkiIDogImh0dHA6Ly9obDcub3JnL2ZoaXIiLA0KICAgICAgICAgICAgInZlcnNpb24iIDogIjQuMC4xIg0KICAgICAgICAgfSBdDQogICAgICB9LA0KICAgICAgImluY2x1ZGVzIiA6IHsNCiAgICAgICAgICJkZWYiIDogWyB7DQogICAgICAgICAgICAibG9jYXRvciIgOiAiMTA6MS0xMDozNSIsDQogICAgICAgICAgICAibG9jYWxJZGVudGlmaWVyIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAicGF0aCIgOiAiaHR0cDovL2NvbnRlbnQuYWxwaG9yYS5jb20vZmhpci9kcW0vRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgInZlcnNpb24iIDogIjQuMC4xIg0KICAgICAgICAgfSBdDQogICAgICB9LA0KICAgICAgImNvZGVTeXN0ZW1zIiA6IHsNCiAgICAgICAgICJkZWYiIDogWyB7DQogICAgICAgICAgICAibG9jYXRvciIgOiAiMTI6MS0xMjozOCIsDQogICAgICAgICAgICAibmFtZSIgOiAiTE9JTkMiLA0KICAgICAgICAgICAgImlkIiA6ICJodHRwOi8vbG9pbmMub3JnIiwNCiAgICAgICAgICAgICJhY2Nlc3NMZXZlbCIgOiAiUHVibGljIg0KICAgICAgICAgfSwgew0KICAgICAgICAgICAgImxvY2F0b3IiIDogIjEzOjEtMTM6NDciLA0KICAgICAgICAgICAgIm5hbWUiIDogIlNOT01FRENUIiwNCiAgICAgICAgICAgICJpZCIgOiAiaHR0cDovL3Nub21lZC5pbmZvL3NjdCIsDQogICAgICAgICAgICAiYWNjZXNzTGV2ZWwiIDogIlB1YmxpYyINCiAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDoxLTE0Ojc0IiwNCiAgICAgICAgICAgICJuYW1lIiA6ICJSb2xlQ29kZSIsDQogICAgICAgICAgICAiaWQiIDogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vdjMtUm9sZUNvZGUiLA0KICAgICAgICAgICAgImFjY2Vzc0xldmVsIiA6ICJQdWJsaWMiDQogICAgICAgICB9LCB7DQogICAgICAgICAgICAibG9jYXRvciIgOiAiMTU6MS0xNTo4MyIsDQogICAgICAgICAgICAibmFtZSIgOiAiRGlhZ25vc2lzIFJvbGUiLA0KICAgICAgICAgICAgImlkIiA6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL2RpYWdub3Npcy1yb2xlIiwNCiAgICAgICAgICAgICJhY2Nlc3NMZXZlbCIgOiAiUHVibGljIg0KICAgICAgICAgfSwgew0KICAgICAgICAgICAgImxvY2F0b3IiIDogIjE2OjEtMTY6ODIiLA0KICAgICAgICAgICAgIm5hbWUiIDogIlJlcXVlc3RJbnRlbnQiLA0KICAgICAgICAgICAgImlkIiA6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL3JlcXVlc3QtaW50ZW50IiwNCiAgICAgICAgICAgICJhY2Nlc3NMZXZlbCIgOiAiUHVibGljIg0KICAgICAgICAgfSwgew0KICAgICAgICAgICAgImxvY2F0b3IiIDogIjE3OjEtMTc6MTA2IiwNCiAgICAgICAgICAgICJuYW1lIiA6ICJNZWRpY2F0aW9uUmVxdWVzdENhdGVnb3J5IiwNCiAgICAgICAgICAgICJpZCIgOiAiaHR0cDovL3Rlcm1pbm9sb2d5LmhsNy5vcmcvQ29kZVN5c3RlbS9tZWRpY2F0aW9ucmVxdWVzdC1jYXRlZ29yeSIsDQogICAgICAgICAgICAiYWNjZXNzTGV2ZWwiIDogIlB1YmxpYyINCiAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxODoxLTE4OjEwMSIsDQogICAgICAgICAgICAibmFtZSIgOiAiQ29uZGl0aW9uQ2xpbmljYWxTdGF0dXNDb2RlcyIsDQogICAgICAgICAgICAiaWQiIDogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vY29uZGl0aW9uLWNsaW5pY2FsIiwNCiAgICAgICAgICAgICJhY2Nlc3NMZXZlbCIgOiAiUHVibGljIg0KICAgICAgICAgfSwgew0KICAgICAgICAgICAgImxvY2F0b3IiIDogIjE5OjEtMTk6MTA3IiwNCiAgICAgICAgICAgICJuYW1lIiA6ICJDb25kaXRpb25WZXJpZmljYXRpb25TdGF0dXNDb2RlcyIsDQogICAgICAgICAgICAiaWQiIDogImh0dHA6Ly90ZXJtaW5vbG9neS5obDcub3JnL0NvZGVTeXN0ZW0vY29uZGl0aW9uLXZlci1zdGF0dXMiLA0KICAgICAgICAgICAgImFjY2Vzc0xldmVsIiA6ICJQdWJsaWMiDQogICAgICAgICB9LCB7DQogICAgICAgICAgICAibG9jYXRvciIgOiAiMjA6MS0yMDoxMTkiLA0KICAgICAgICAgICAgIm5hbWUiIDogIkFsbGVyZ3lJbnRvbGVyYW5jZUNsaW5pY2FsU3RhdHVzQ29kZXMiLA0KICAgICAgICAgICAgImlkIiA6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL2FsbGVyZ3lpbnRvbGVyYW5jZS1jbGluaWNhbCIsDQogICAgICAgICAgICAiYWNjZXNzTGV2ZWwiIDogIlB1YmxpYyINCiAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyMToxLTIxOjEyNyIsDQogICAgICAgICAgICAibmFtZSIgOiAiQWxsZXJneUludG9sZXJhbmNlVmVyaWZpY2F0aW9uU3RhdHVzQ29kZXMiLA0KICAgICAgICAgICAgImlkIiA6ICJodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL2FsbGVyZ3lpbnRvbGVyYW5jZS12ZXJpZmljYXRpb24iLA0KICAgICAgICAgICAgImFjY2Vzc0xldmVsIiA6ICJQdWJsaWMiDQogICAgICAgICB9IF0NCiAgICAgIH0sDQogICAgICAiY29kZXMiIDogew0KICAgICAgICAgImRlZiIgOiBbIHsNCiAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyMzoxLTIzOjYxIiwNCiAgICAgICAgICAgICJuYW1lIiA6ICJCaXJ0aGRhdGUiLA0KICAgICAgICAgICAgImlkIiA6ICIyMTExMi04IiwNCiAgICAgICAgICAgICJkaXNwbGF5IiA6ICJCaXJ0aCBkYXRlIiwNCiAgICAgICAgICAgICJhY2Nlc3NMZXZlbCIgOiAiUHVibGljIiwNCiAgICAgICAgICAgICJjb2RlU3lzdGVtIiA6IHsNCiAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyMzozNC0yMzo0MCIsDQogICAgICAgICAgICAgICAibmFtZSIgOiAiTE9JTkMiDQogICAgICAgICAgICB9DQogICAgICAgICB9LCB7DQogICAgICAgICAgICAibG9jYXRvciIgOiAiMjQ6MS0yNDo1NSIsDQogICAgICAgICAgICAibmFtZSIgOiAiRGVhZCIsDQogICAgICAgICAgICAiaWQiIDogIjQxOTA5OTAwOSIsDQogICAgICAgICAgICAiZGlzcGxheSIgOiAiRGVhZCIsDQogICAgICAgICAgICAiYWNjZXNzTGV2ZWwiIDogIlB1YmxpYyIsDQogICAgICAgICAgICAiY29kZVN5c3RlbSIgOiB7DQogICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjQ6MzEtMjQ6NDAiLA0KICAgICAgICAgICAgICAgIm5hbWUiIDogIlNOT01FRENUIg0KICAgICAgICAgICAgfQ0KICAgICAgICAgfSwgew0KICAgICAgICAgICAgImxvY2F0b3IiIDogIjI1OjEtMjU6NTYiLA0KICAgICAgICAgICAgIm5hbWUiIDogIkVSIiwNCiAgICAgICAgICAgICJpZCIgOiAiRVIiLA0KICAgICAgICAgICAgImRpc3BsYXkiIDogIkVtZXJnZW5jeSByb29tIiwNCiAgICAgICAgICAgICJhY2Nlc3NMZXZlbCIgOiAiUHVibGljIiwNCiAgICAgICAgICAgICJjb2RlU3lzdGVtIiA6IHsNCiAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyNToyMi0yNTozMSIsDQogICAgICAgICAgICAgICAibmFtZSIgOiAiUm9sZUNvZGUiDQogICAgICAgICAgICB9DQogICAgICAgICB9LCB7DQogICAgICAgICAgICAibG9jYXRvciIgOiAiMjY6MS0yNjo2MyIsDQogICAgICAgICAgICAibmFtZSIgOiAiSUNVIiwNCiAgICAgICAgICAgICJpZCIgOiAiSUNVIiwNCiAgICAgICAgICAgICJkaXNwbGF5IiA6ICJJbnRlbnNpdmUgY2FyZSB1bml0IiwNCiAgICAgICAgICAgICJhY2Nlc3NMZXZlbCIgOiAiUHVibGljIiwNCiAgICAgICAgICAgICJjb2RlU3lzdGVtIiA6IHsNCiAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyNjoyNC0yNjozMyIsDQogICAgICAgICAgICAgICAibmFtZSIgOiAiUm9sZUNvZGUiDQogICAgICAgICAgICB9DQogICAgICAgICB9LCB7DQogICAgICAgICAgICAibG9jYXRvciIgOiAiMjc6MS0yNzo2NSIsDQogICAgICAgICAgICAibmFtZSIgOiAiQmlsbGluZyIsDQogICAgICAgICAgICAiaWQiIDogImJpbGxpbmciLA0KICAgICAgICAgICAgImRpc3BsYXkiIDogIkJpbGxpbmciLA0KICAgICAgICAgICAgImFjY2Vzc0xldmVsIiA6ICJQdWJsaWMiLA0KICAgICAgICAgICAgImNvZGVTeXN0ZW0iIDogew0KICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjI3OjMyLTI3OjQ3IiwNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJEaWFnbm9zaXMgUm9sZSINCiAgICAgICAgICAgIH0NCiAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICJsb2NhdG9yIiA6ICIzMDoxLTMwOjU5IiwNCiAgICAgICAgICAgICJuYW1lIiA6ICJhY3RpdmUiLA0KICAgICAgICAgICAgImlkIiA6ICJhY3RpdmUiLA0KICAgICAgICAgICAgImFjY2Vzc0xldmVsIiA6ICJQdWJsaWMiLA0KICAgICAgICAgICAgImNvZGVTeXN0ZW0iIDogew0KICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjMwOjMwLTMwOjU5IiwNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJDb25kaXRpb25DbGluaWNhbFN0YXR1c0NvZGVzIg0KICAgICAgICAgICAgfQ0KICAgICAgICAgfSwgew0KICAgICAgICAgICAgImxvY2F0b3IiIDogIjMxOjEtMzE6NjciLA0KICAgICAgICAgICAgIm5hbWUiIDogInJlY3VycmVuY2UiLA0KICAgICAgICAgICAgImlkIiA6ICJyZWN1cnJlbmNlIiwNCiAgICAgICAgICAgICJhY2Nlc3NMZXZlbCIgOiAiUHVibGljIiwNCiAgICAgICAgICAgICJjb2RlU3lzdGVtIiA6IHsNCiAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIzMTozOC0zMTo2NyIsDQogICAgICAgICAgICAgICAibmFtZSIgOiAiQ29uZGl0aW9uQ2xpbmljYWxTdGF0dXNDb2RlcyINCiAgICAgICAgICAgIH0NCiAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICJsb2NhdG9yIiA6ICIzMjoxLTMyOjYxIiwNCiAgICAgICAgICAgICJuYW1lIiA6ICJyZWxhcHNlIiwNCiAgICAgICAgICAgICJpZCIgOiAicmVsYXBzZSIsDQogICAgICAgICAgICAiYWNjZXNzTGV2ZWwiIDogIlB1YmxpYyIsDQogICAgICAgICAgICAiY29kZVN5c3RlbSIgOiB7DQogICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMzI6MzItMzI6NjEiLA0KICAgICAgICAgICAgICAgIm5hbWUiIDogIkNvbmRpdGlvbkNsaW5pY2FsU3RhdHVzQ29kZXMiDQogICAgICAgICAgICB9DQogICAgICAgICB9LCB7DQogICAgICAgICAgICAibG9jYXRvciIgOiAiMzM6MS0zMzo2MyIsDQogICAgICAgICAgICAibmFtZSIgOiAiaW5hY3RpdmUiLA0KICAgICAgICAgICAgImlkIiA6ICJpbmFjdGl2ZSIsDQogICAgICAgICAgICAiYWNjZXNzTGV2ZWwiIDogIlB1YmxpYyIsDQogICAgICAgICAgICAiY29kZVN5c3RlbSIgOiB7DQogICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMzM6MzQtMzM6NjMiLA0KICAgICAgICAgICAgICAgIm5hbWUiIDogIkNvbmRpdGlvbkNsaW5pY2FsU3RhdHVzQ29kZXMiDQogICAgICAgICAgICB9DQogICAgICAgICB9LCB7DQogICAgICAgICAgICAibG9jYXRvciIgOiAiMzQ6MS0zNDo2NSIsDQogICAgICAgICAgICAibmFtZSIgOiAicmVtaXNzaW9uIiwNCiAgICAgICAgICAgICJpZCIgOiAicmVtaXNzaW9uIiwNCiAgICAgICAgICAgICJhY2Nlc3NMZXZlbCIgOiAiUHVibGljIiwNCiAgICAgICAgICAgICJjb2RlU3lzdGVtIiA6IHsNCiAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIzNDozNi0zNDo2NSIsDQogICAgICAgICAgICAgICAibmFtZSIgOiAiQ29uZGl0aW9uQ2xpbmljYWxTdGF0dXNDb2RlcyINCiAgICAgICAgICAgIH0NCiAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICJsb2NhdG9yIiA6ICIzNToxLTM1OjYzIiwNCiAgICAgICAgICAgICJuYW1lIiA6ICJyZXNvbHZlZCIsDQogICAgICAgICAgICAiaWQiIDogInJlc29sdmVkIiwNCiAgICAgICAgICAgICJhY2Nlc3NMZXZlbCIgOiAiUHVibGljIiwNCiAgICAgICAgICAgICJjb2RlU3lzdGVtIiA6IHsNCiAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIzNTozNC0zNTo2MyIsDQogICAgICAgICAgICAgICAibmFtZSIgOiAiQ29uZGl0aW9uQ2xpbmljYWxTdGF0dXNDb2RlcyINCiAgICAgICAgICAgIH0NCiAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICJsb2NhdG9yIiA6ICIzODoxLTM4OjcxIiwNCiAgICAgICAgICAgICJuYW1lIiA6ICJ1bmNvbmZpcm1lZCIsDQogICAgICAgICAgICAiaWQiIDogInVuY29uZmlybWVkIiwNCiAgICAgICAgICAgICJhY2Nlc3NMZXZlbCIgOiAiUHVibGljIiwNCiAgICAgICAgICAgICJjb2RlU3lzdGVtIiA6IHsNCiAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIzODo0MC0zODo3MSIsDQogICAgICAgICAgICAgICAibmFtZSIgOiAiQ29uZGl0aW9uVmVyaWZpY2F0aW9uU3RhdHVzQ29kZXMiDQogICAgICAgICAgICB9DQogICAgICAgICB9LCB7DQogICAgICAgICAgICAibG9jYXRvciIgOiAiMzk6MS0zOTo3MSIsDQogICAgICAgICAgICAibmFtZSIgOiAicHJvdmlzaW9uYWwiLA0KICAgICAgICAgICAgImlkIiA6ICJwcm92aXNpb25hbCIsDQogICAgICAgICAgICAiYWNjZXNzTGV2ZWwiIDogIlB1YmxpYyIsDQogICAgICAgICAgICAiY29kZVN5c3RlbSIgOiB7DQogICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMzk6NDAtMzk6NzEiLA0KICAgICAgICAgICAgICAgIm5hbWUiIDogIkNvbmRpdGlvblZlcmlmaWNhdGlvblN0YXR1c0NvZGVzIg0KICAgICAgICAgICAgfQ0KICAgICAgICAgfSwgew0KICAgICAgICAgICAgImxvY2F0b3IiIDogIjQwOjEtNDA6NzMiLA0KICAgICAgICAgICAgIm5hbWUiIDogImRpZmZlcmVudGlhbCIsDQogICAgICAgICAgICAiaWQiIDogImRpZmZlcmVudGlhbCIsDQogICAgICAgICAgICAiYWNjZXNzTGV2ZWwiIDogIlB1YmxpYyIsDQogICAgICAgICAgICAiY29kZVN5c3RlbSIgOiB7DQogICAgICAgICAgICAgICAibG9jYXRvciIgOiAiNDA6NDItNDA6NzMiLA0KICAgICAgICAgICAgICAgIm5hbWUiIDogIkNvbmRpdGlvblZlcmlmaWNhdGlvblN0YXR1c0NvZGVzIg0KICAgICAgICAgICAgfQ0KICAgICAgICAgfSwgew0KICAgICAgICAgICAgImxvY2F0b3IiIDogIjQxOjEtNDE6NjciLA0KICAgICAgICAgICAgIm5hbWUiIDogImNvbmZpcm1lZCIsDQogICAgICAgICAgICAiaWQiIDogImNvbmZpcm1lZCIsDQogICAgICAgICAgICAiYWNjZXNzTGV2ZWwiIDogIlB1YmxpYyIsDQogICAgICAgICAgICAiY29kZVN5c3RlbSIgOiB7DQogICAgICAgICAgICAgICAibG9jYXRvciIgOiAiNDE6MzYtNDE6NjciLA0KICAgICAgICAgICAgICAgIm5hbWUiIDogIkNvbmRpdGlvblZlcmlmaWNhdGlvblN0YXR1c0NvZGVzIg0KICAgICAgICAgICAgfQ0KICAgICAgICAgfSwgew0KICAgICAgICAgICAgImxvY2F0b3IiIDogIjQyOjEtNDI6NjMiLA0KICAgICAgICAgICAgIm5hbWUiIDogInJlZnV0ZWQiLA0KICAgICAgICAgICAgImlkIiA6ICJyZWZ1dGVkIiwNCiAgICAgICAgICAgICJhY2Nlc3NMZXZlbCIgOiAiUHVibGljIiwNCiAgICAgICAgICAgICJjb2RlU3lzdGVtIiA6IHsNCiAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI0MjozMi00Mjo2MyIsDQogICAgICAgICAgICAgICAibmFtZSIgOiAiQ29uZGl0aW9uVmVyaWZpY2F0aW9uU3RhdHVzQ29kZXMiDQogICAgICAgICAgICB9DQogICAgICAgICB9LCB7DQogICAgICAgICAgICAibG9jYXRvciIgOiAiNDM6MS00Mzo4MSIsDQogICAgICAgICAgICAibmFtZSIgOiAiZW50ZXJlZC1pbi1lcnJvciIsDQogICAgICAgICAgICAiaWQiIDogImVudGVyZWQtaW4tZXJyb3IiLA0KICAgICAgICAgICAgImFjY2Vzc0xldmVsIiA6ICJQdWJsaWMiLA0KICAgICAgICAgICAgImNvZGVTeXN0ZW0iIDogew0KICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjQzOjUwLTQzOjgxIiwNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJDb25kaXRpb25WZXJpZmljYXRpb25TdGF0dXNDb2RlcyINCiAgICAgICAgICAgIH0NCiAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICJsb2NhdG9yIiA6ICI0NjoxLTQ2Ojc2IiwNCiAgICAgICAgICAgICJuYW1lIiA6ICJhbGxlcmd5LWFjdGl2ZSIsDQogICAgICAgICAgICAiaWQiIDogImFjdGl2ZSIsDQogICAgICAgICAgICAiYWNjZXNzTGV2ZWwiIDogIlB1YmxpYyIsDQogICAgICAgICAgICAiY29kZVN5c3RlbSIgOiB7DQogICAgICAgICAgICAgICAibG9jYXRvciIgOiAiNDY6MzgtNDY6NzYiLA0KICAgICAgICAgICAgICAgIm5hbWUiIDogIkFsbGVyZ3lJbnRvbGVyYW5jZUNsaW5pY2FsU3RhdHVzQ29kZXMiDQogICAgICAgICAgICB9DQogICAgICAgICB9LCB7DQogICAgICAgICAgICAibG9jYXRvciIgOiAiNDc6MS00Nzo4MCIsDQogICAgICAgICAgICAibmFtZSIgOiAiYWxsZXJneS1pbmFjdGl2ZSIsDQogICAgICAgICAgICAiaWQiIDogImluYWN0aXZlIiwNCiAgICAgICAgICAgICJhY2Nlc3NMZXZlbCIgOiAiUHVibGljIiwNCiAgICAgICAgICAgICJjb2RlU3lzdGVtIiA6IHsNCiAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI0Nzo0Mi00Nzo4MCIsDQogICAgICAgICAgICAgICAibmFtZSIgOiAiQWxsZXJneUludG9sZXJhbmNlQ2xpbmljYWxTdGF0dXNDb2RlcyINCiAgICAgICAgICAgIH0NCiAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICJsb2NhdG9yIiA6ICI0ODoxLTQ4OjgwIiwNCiAgICAgICAgICAgICJuYW1lIiA6ICJhbGxlcmd5LXJlc29sdmVkIiwNCiAgICAgICAgICAgICJpZCIgOiAicmVzb2x2ZWQiLA0KICAgICAgICAgICAgImFjY2Vzc0xldmVsIiA6ICJQdWJsaWMiLA0KICAgICAgICAgICAgImNvZGVTeXN0ZW0iIDogew0KICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjQ4OjQyLTQ4OjgwIiwNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJBbGxlcmd5SW50b2xlcmFuY2VDbGluaWNhbFN0YXR1c0NvZGVzIg0KICAgICAgICAgICAgfQ0KICAgICAgICAgfSwgew0KICAgICAgICAgICAgImxvY2F0b3IiIDogIjUxOjEtNTE6ODgiLA0KICAgICAgICAgICAgIm5hbWUiIDogImFsbGVyZ3ktdW5jb25maXJtZWQiLA0KICAgICAgICAgICAgImlkIiA6ICJ1bmNvbmZpcm1lZCIsDQogICAgICAgICAgICAiYWNjZXNzTGV2ZWwiIDogIlB1YmxpYyIsDQogICAgICAgICAgICAiY29kZVN5c3RlbSIgOiB7DQogICAgICAgICAgICAgICAibG9jYXRvciIgOiAiNTE6NDgtNTE6ODgiLA0KICAgICAgICAgICAgICAgIm5hbWUiIDogIkFsbGVyZ3lJbnRvbGVyYW5jZVZlcmlmaWNhdGlvblN0YXR1c0NvZGVzIg0KICAgICAgICAgICAgfQ0KICAgICAgICAgfSwgew0KICAgICAgICAgICAgImxvY2F0b3IiIDogIjUyOjEtNTI6ODQiLA0KICAgICAgICAgICAgIm5hbWUiIDogImFsbGVyZ3ktY29uZmlybWVkIiwNCiAgICAgICAgICAgICJpZCIgOiAiY29uZmlybWVkIiwNCiAgICAgICAgICAgICJhY2Nlc3NMZXZlbCIgOiAiUHVibGljIiwNCiAgICAgICAgICAgICJjb2RlU3lzdGVtIiA6IHsNCiAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI1Mjo0NC01Mjo4NCIsDQogICAgICAgICAgICAgICAibmFtZSIgOiAiQWxsZXJneUludG9sZXJhbmNlVmVyaWZpY2F0aW9uU3RhdHVzQ29kZXMiDQogICAgICAgICAgICB9DQogICAgICAgICB9LCB7DQogICAgICAgICAgICAibG9jYXRvciIgOiAiNTM6MS01Mzo4MCIsDQogICAgICAgICAgICAibmFtZSIgOiAiYWxsZXJneS1yZWZ1dGVkIiwNCiAgICAgICAgICAgICJpZCIgOiAicmVmdXRlZCIsDQogICAgICAgICAgICAiYWNjZXNzTGV2ZWwiIDogIlB1YmxpYyIsDQogICAgICAgICAgICAiY29kZVN5c3RlbSIgOiB7DQogICAgICAgICAgICAgICAibG9jYXRvciIgOiAiNTM6NDAtNTM6ODAiLA0KICAgICAgICAgICAgICAgIm5hbWUiIDogIkFsbGVyZ3lJbnRvbGVyYW5jZVZlcmlmaWNhdGlvblN0YXR1c0NvZGVzIg0KICAgICAgICAgICAgfQ0KICAgICAgICAgfSwgew0KICAgICAgICAgICAgImxvY2F0b3IiIDogIjU2OjEtNTY6ODIiLA0KICAgICAgICAgICAgIm5hbWUiIDogIkNvbW11bml0eSIsDQogICAgICAgICAgICAiaWQiIDogImNvbW11bml0eSIsDQogICAgICAgICAgICAiZGlzcGxheSIgOiAiQ29tbXVuaXR5IiwNCiAgICAgICAgICAgICJhY2Nlc3NMZXZlbCIgOiAiUHVibGljIiwNCiAgICAgICAgICAgICJjb2RlU3lzdGVtIiA6IHsNCiAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI1NjozNi01Njo2MiIsDQogICAgICAgICAgICAgICAibmFtZSIgOiAiTWVkaWNhdGlvblJlcXVlc3RDYXRlZ29yeSINCiAgICAgICAgICAgIH0NCiAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICJsb2NhdG9yIiA6ICI1NzoxLTU3OjgyIiwNCiAgICAgICAgICAgICJuYW1lIiA6ICJEaXNjaGFyZ2UiLA0KICAgICAgICAgICAgImlkIiA6ICJkaXNjaGFyZ2UiLA0KICAgICAgICAgICAgImRpc3BsYXkiIDogIkRpc2NoYXJnZSIsDQogICAgICAgICAgICAiYWNjZXNzTGV2ZWwiIDogIlB1YmxpYyIsDQogICAgICAgICAgICAiY29kZVN5c3RlbSIgOiB7DQogICAgICAgICAgICAgICAibG9jYXRvciIgOiAiNTc6MzYtNTc6NjIiLA0KICAgICAgICAgICAgICAgIm5hbWUiIDogIk1lZGljYXRpb25SZXF1ZXN0Q2F0ZWdvcnkiDQogICAgICAgICAgICB9DQogICAgICAgICB9LCB7DQogICAgICAgICAgICAibG9jYXRvciIgOiAiNjA6MS02MDo2NyIsDQogICAgICAgICAgICAibmFtZSIgOiAiQUQiLA0KICAgICAgICAgICAgImlkIiA6ICJBRCIsDQogICAgICAgICAgICAiZGlzcGxheSIgOiAiQWRtaXNzaW9uIGRpYWdub3NpcyIsDQogICAgICAgICAgICAiYWNjZXNzTGV2ZWwiIDogIlB1YmxpYyIsDQogICAgICAgICAgICAiY29kZVN5c3RlbSIgOiB7DQogICAgICAgICAgICAgICAibG9jYXRvciIgOiAiNjA6MjItNjA6MzciLA0KICAgICAgICAgICAgICAgIm5hbWUiIDogIkRpYWdub3NpcyBSb2xlIg0KICAgICAgICAgICAgfQ0KICAgICAgICAgfSwgew0KICAgICAgICAgICAgImxvY2F0b3IiIDogIjYxOjEtNjE6NjciLA0KICAgICAgICAgICAgIm5hbWUiIDogIkREIiwNCiAgICAgICAgICAgICJpZCIgOiAiREQiLA0KICAgICAgICAgICAgImRpc3BsYXkiIDogIkRpc2NoYXJnZSBkaWFnbm9zaXMiLA0KICAgICAgICAgICAgImFjY2Vzc0xldmVsIiA6ICJQdWJsaWMiLA0KICAgICAgICAgICAgImNvZGVTeXN0ZW0iIDogew0KICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjYxOjIyLTYxOjM3IiwNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJEaWFnbm9zaXMgUm9sZSINCiAgICAgICAgICAgIH0NCiAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICJsb2NhdG9yIiA6ICI2MjoxLTYyOjYzIiwNCiAgICAgICAgICAgICJuYW1lIiA6ICJDQyIsDQogICAgICAgICAgICAiaWQiIDogIkNDIiwNCiAgICAgICAgICAgICJkaXNwbGF5IiA6ICJDaGllZiBjb21wbGFpbnQiLA0KICAgICAgICAgICAgImFjY2Vzc0xldmVsIiA6ICJQdWJsaWMiLA0KICAgICAgICAgICAgImNvZGVTeXN0ZW0iIDogew0KICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjYyOjIyLTYyOjM3IiwNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJEaWFnbm9zaXMgUm9sZSINCiAgICAgICAgICAgIH0NCiAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICJsb2NhdG9yIiA6ICI2MzoxLTYzOjY5IiwNCiAgICAgICAgICAgICJuYW1lIiA6ICJDTSIsDQogICAgICAgICAgICAiaWQiIDogIkNNIiwNCiAgICAgICAgICAgICJkaXNwbGF5IiA6ICJDb21vcmJpZGl0eSBkaWFnbm9zaXMiLA0KICAgICAgICAgICAgImFjY2Vzc0xldmVsIiA6ICJQdWJsaWMiLA0KICAgICAgICAgICAgImNvZGVTeXN0ZW0iIDogew0KICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjYzOjIyLTYzOjM3IiwNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJEaWFnbm9zaXMgUm9sZSINCiAgICAgICAgICAgIH0NCiAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICJsb2NhdG9yIiA6ICI2NDoxLTY0OjcyIiwNCiAgICAgICAgICAgICJuYW1lIiA6ICJwcmUtb3AiLA0KICAgICAgICAgICAgImlkIiA6ICJwcmUtb3AiLA0KICAgICAgICAgICAgImRpc3BsYXkiIDogInByZS1vcCBkaWFnbm9zaXMiLA0KICAgICAgICAgICAgImFjY2Vzc0xldmVsIiA6ICJQdWJsaWMiLA0KICAgICAgICAgICAgImNvZGVTeXN0ZW0iIDogew0KICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjY0OjMwLTY0OjQ1IiwNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJEaWFnbm9zaXMgUm9sZSINCiAgICAgICAgICAgIH0NCiAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICJsb2NhdG9yIiA6ICI2NToxLTY1Ojc1IiwNCiAgICAgICAgICAgICJuYW1lIiA6ICJwb3N0LW9wIiwNCiAgICAgICAgICAgICJpZCIgOiAicG9zdC1vcCIsDQogICAgICAgICAgICAiZGlzcGxheSIgOiAicG9zdC1vcCBkaWFnbm9zaXMiLA0KICAgICAgICAgICAgImFjY2Vzc0xldmVsIiA6ICJQdWJsaWMiLA0KICAgICAgICAgICAgImNvZGVTeXN0ZW0iIDogew0KICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjY1OjMyLTY1OjQ3IiwNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJEaWFnbm9zaXMgUm9sZSINCiAgICAgICAgICAgIH0NCiAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICJsb2NhdG9yIiA6ICI2NjoxLTY2Ojc1IiwNCiAgICAgICAgICAgICJuYW1lIiA6ICJiaWxsaW5nIiwNCiAgICAgICAgICAgICJpZCIgOiAiYmlsbGluZyIsDQogICAgICAgICAgICAiZGlzcGxheSIgOiAiYmlsbGluZyBkaWFnbm9zaXMiLA0KICAgICAgICAgICAgImFjY2Vzc0xldmVsIiA6ICJQdWJsaWMiLA0KICAgICAgICAgICAgImNvZGVTeXN0ZW0iIDogew0KICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjY2OjMyLTY2OjQ3IiwNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJEaWFnbm9zaXMgUm9sZSINCiAgICAgICAgICAgIH0NCiAgICAgICAgIH0gXQ0KICAgICAgfSwNCiAgICAgICJjb250ZXh0cyIgOiB7DQogICAgICAgICAiZGVmIiA6IFsgew0KICAgICAgICAgICAgImxvY2F0b3IiIDogIjY4OjEtNjg6MTUiLA0KICAgICAgICAgICAgIm5hbWUiIDogIlBhdGllbnQiDQogICAgICAgICB9IF0NCiAgICAgIH0sDQogICAgICAic3RhdGVtZW50cyIgOiB7DQogICAgICAgICAiZGVmIiA6IFsgew0KICAgICAgICAgICAgImxvY2F0b3IiIDogIjY4OjEtNjg6MTUiLA0KICAgICAgICAgICAgIm5hbWUiIDogIlBhdGllbnQiLA0KICAgICAgICAgICAgImNvbnRleHQiIDogIlBhdGllbnQiLA0KICAgICAgICAgICAgImV4cHJlc3Npb24iIDogew0KICAgICAgICAgICAgICAgInR5cGUiIDogIlNpbmdsZXRvbkZyb20iLA0KICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjY4OjEtNjg6MTUiLA0KICAgICAgICAgICAgICAgICAgImRhdGFUeXBlIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1QYXRpZW50IiwNCiAgICAgICAgICAgICAgICAgICJ0ZW1wbGF0ZUlkIiA6ICJodHRwOi8vaGw3Lm9yZy9maGlyL1N0cnVjdHVyZURlZmluaXRpb24vUGF0aWVudCIsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUmV0cmlldmUiDQogICAgICAgICAgICAgICB9DQogICAgICAgICAgICB9DQogICAgICAgICB9LCB7DQogICAgICAgICAgICAibG9jYXRvciIgOiAiNzk6MS05OTo0IiwNCiAgICAgICAgICAgICJuYW1lIiA6ICJUb0ludGVydmFsIiwNCiAgICAgICAgICAgICJjb250ZXh0IiA6ICJQYXRpZW50IiwNCiAgICAgICAgICAgICJhY2Nlc3NMZXZlbCIgOiAiUHVibGljIiwNCiAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvbkRlZiIsDQogICAgICAgICAgICAiYW5ub3RhdGlvbiIgOiBbIHsNCiAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBbm5vdGF0aW9uIiwNCiAgICAgICAgICAgICAgICJ0IiA6IFsgew0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImRlc2NyaXB0aW9uIiwNCiAgICAgICAgICAgICAgICAgICJ2YWx1ZSIgOiAiTm9ybWFsaXplcyBhIHZhbHVlIHRoYXQgaXMgYSBjaG9pY2Ugb2YgdGltaW5nLXZhbHVlZCB0eXBlcyB0byBhbiBlcXVpdmFsZW50IGludGVydmFsIg0KICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNvbW1lbnQiLA0KICAgICAgICAgICAgICAgICAgInZhbHVlIiA6ICJOb3JtYWxpemVzIGEgY2hvaWNlIHR5cGUgb2YgRkhJUi5kYXRlVGltZSwgRkhJUi5QZXJpb2QsIEZISVIuVGltaW5nLCBGSElSLmluc3RhbmNlLCBGSElSLnN0cmluZywgRkhJUi5BZ2UsIG9yIEZISVIuUmFuZ2UgdHlwZXNcbnRvIGFuIGVxdWl2YWxlbnQgaW50ZXJ2YWwuIFRoaXMgc2VsZWN0aW9uIG9mIGNob2ljZSB0eXBlcyBpcyBhIHN1cGVyc2V0IG9mIHRoZSBtYWpvcml0eSBvZiBjaG9pY2UgdHlwZXMgdGhhdCBhcmUgdXNlZCBhcyBwb3NzaWJsZVxucmVwcmVzZW50YXRpb25zIGZvciB0aW1pbmctdmFsdWVkIGVsZW1lbnRzIGluIEZISVIsIGFsbG93aW5nIHRoaXMgZnVuY3Rpb24gdG8gYmUgdXNlZCBhY3Jvc3MgYW55IHJlc291cmNlLiBOT1RFOiBEdWUgdG8gdGhlXG5jb21wbGV4aXR5IG9mIGRldGVybWluaW5nIGEgc2luZ2xlIGludGVydmFsIGZyb20gYSBUaW1pbmcgb3IgU3RyaW5nIHR5cGUsIHRoaXMgZnVuY3Rpb24gd2lsbCB0aHJvdyBhIHJ1bi10aW1lIGV4Y2VwdGlvbiBpZiBpdCBpcyB1c2VkXG53aXRoIGEgVGltaW5nIG9yIFN0cmluZy4gTk9URTogVGltaW5nIGhhcyBiZWVuIG1vdmVkIHRvIFRvVGltaW5nSW50ZXJ2YWwuIg0KICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICB9IF0sDQogICAgICAgICAgICAiZXhwcmVzc2lvbiIgOiB7DQogICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODA6My05OTo0IiwNCiAgICAgICAgICAgICAgICJ0eXBlIiA6ICJDYXNlIiwNCiAgICAgICAgICAgICAgICJjYXNlSXRlbSIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4MTo0LTgyOjExMSIsDQogICAgICAgICAgICAgICAgICAid2hlbiIgOiB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODE6OS04MTozMSIsDQogICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiSXMiLA0KICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjgxOjktODE6MTQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNob2ljZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAiaXNUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4MToxOS04MTozMSIsDQogICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9ZGF0ZVRpbWUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAidGhlbiIgOiB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODI6Ni04MjoxMTEiLA0KICAgICAgICAgICAgICAgICAgICAgImxvd0Nsb3NlZCIgOiB0cnVlLA0KICAgICAgICAgICAgICAgICAgICAgImhpZ2hDbG9zZWQiIDogdHJ1ZSwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJJbnRlcnZhbCIsDQogICAgICAgICAgICAgICAgICAgICAibG93IiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4MjoxNS04Mjo2MSIsDQogICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9EYXRlVGltZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4MjozOC04Mjo2MCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAic3RyaWN0IiA6IGZhbHNlLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4MjozOC04Mjo0MyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY2hvaWNlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJhc1R5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjgyOjQ4LTgyOjYwIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1kYXRlVGltZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgImhpZ2giIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjgyOjY0LTgyOjExMCIsDQogICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9EYXRlVGltZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4Mjo4Ny04MjoxMDkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgInN0cmljdCIgOiBmYWxzZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBcyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODI6ODctODI6OTIiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNob2ljZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAiYXNUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4Mjo5Ny04MjoxMDkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfWRhdGVUaW1lIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4MzozLTg0OjQ5IiwNCiAgICAgICAgICAgICAgICAgICJ3aGVuIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4Mzo4LTgzOjI4IiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJJcyIsDQogICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODM6OC04MzoxMyIsDQogICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY2hvaWNlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICJpc1R5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjgzOjE4LTgzOjI4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1QZXJpb2QiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAidGhlbiIgOiB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODQ6NS04NDo0OSIsDQogICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9JbnRlcnZhbCIsDQogICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4NDoyOC04NDo0OCIsDQogICAgICAgICAgICAgICAgICAgICAgICAic3RyaWN0IiA6IGZhbHNlLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4NDoyOC04NDozMyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY2hvaWNlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICJhc1R5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg0OjM4LTg0OjQ4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1QZXJpb2QiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg1OjMtODY6MTA3IiwNCiAgICAgICAgICAgICAgICAgICJ3aGVuIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4NTo4LTg1OjI5IiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJJcyIsDQogICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODU6OC04NToxMyIsDQogICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY2hvaWNlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICJpc1R5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg1OjE4LTg1OjI5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1pbnN0YW50IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgInRoZW4iIDogew0KICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg2OjQtODY6MTA3IiwNCiAgICAgICAgICAgICAgICAgICAgICJsb3dDbG9zZWQiIDogdHJ1ZSwNCiAgICAgICAgICAgICAgICAgICAgICJoaWdoQ2xvc2VkIiA6IHRydWUsDQogICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiSW50ZXJ2YWwiLA0KICAgICAgICAgICAgICAgICAgICAgImxvdyIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODY6MTMtODY6NTgiLA0KICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvRGF0ZVRpbWUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODY6MzYtODY6NTciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgInN0cmljdCIgOiBmYWxzZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBcyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODY6MzYtODY6NDEiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNob2ljZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAiYXNUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4Njo0Ni04Njo1NyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9aW5zdGFudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgImhpZ2giIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg2OjYxLTg2OjEwNiIsDQogICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9EYXRlVGltZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4Njo4NC04NjoxMDUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgInN0cmljdCIgOiBmYWxzZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBcyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODY6ODQtODY6ODkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNob2ljZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAiYXNUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4Njo5NC04NjoxMDUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfWluc3RhbnQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg3OjMtODk6OTciLA0KICAgICAgICAgICAgICAgICAgIndoZW4iIDogew0KICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg3OjgtODc6MjUiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIklzIiwNCiAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4Nzo4LTg3OjEzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjaG9pY2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgImlzVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODc6MTgtODc6MjUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfUFnZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICJ0aGVuIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJJbnRlcnZhbCIsDQogICAgICAgICAgICAgICAgICAgICAibG93IiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJUb0RhdGVUaW1lIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJsb3ciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg4OjUtODk6OTciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvd0Nsb3NlZCIgOiB0cnVlLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImhpZ2hDbG9zZWQiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiSW50ZXJ2YWwiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvdyIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODg6MTQtODg6OTUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFkZCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4ODoxNC04ODo1MCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9EYXRlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg4OjMzLTg4OjQ5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJiaXJ0aERhdGUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg4OjMzLTg4OjM5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJQYXRpZW50IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJFeHByZXNzaW9uUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODg6NTQtODg6OTUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvUXVhbnRpdHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODg6NzctODg6OTQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInN0cmljdCIgOiBmYWxzZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBcyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODg6NzctODg6ODIiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNob2ljZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiYXNUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4ODo4Ny04ODo5NCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9QWdlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJoaWdoIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4OTo2LTg5Ojk2IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBZGQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODk6Ni04OTo4NyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQWRkIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg5OjYtODk6NDIiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvRGF0ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4OToyNS04OTo0MSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiYmlydGhEYXRlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4OToyNS04OTozMSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiUGF0aWVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRXhwcmVzc2lvblJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg5OjQ2LTg5Ojg3IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb1F1YW50aXR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg5OjY5LTg5Ojg2IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzdHJpY3QiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQXMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg5OjY5LTg5Ojc0IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjaG9pY2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImFzVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODk6NzktODk6ODYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfUFnZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4OTo5MS04OTo5NiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidmFsdWUiIDogMSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ1bml0IiA6ICJ5ZWFyIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJRdWFudGl0eSINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICJsb3dDbG9zZWRFeHByZXNzaW9uIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJsb3dDbG9zZWQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg4OjUtODk6OTciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvd0Nsb3NlZCIgOiB0cnVlLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgImhpZ2hDbG9zZWQiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiSW50ZXJ2YWwiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvdyIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODg6MTQtODg6OTUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFkZCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4ODoxNC04ODo1MCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9EYXRlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg4OjMzLTg4OjQ5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJiaXJ0aERhdGUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg4OjMzLTg4OjM5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJQYXRpZW50IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJFeHByZXNzaW9uUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODg6NTQtODg6OTUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvUXVhbnRpdHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODg6NzctODg6OTQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInN0cmljdCIgOiBmYWxzZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBcyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODg6NzctODg6ODIiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNob2ljZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiYXNUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4ODo4Ny04ODo5NCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9QWdlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJoaWdoIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4OTo2LTg5Ojk2IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBZGQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODk6Ni04OTo4NyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQWRkIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg5OjYtODk6NDIiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvRGF0ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4OToyNS04OTo0MSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiYmlydGhEYXRlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4OToyNS04OTozMSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiUGF0aWVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRXhwcmVzc2lvblJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg5OjQ2LTg5Ojg3IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb1F1YW50aXR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg5OjY5LTg5Ojg2IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzdHJpY3QiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQXMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg5OjY5LTg5Ojc0IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjaG9pY2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImFzVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODk6NzktODk6ODYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfUFnZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4OTo5MS04OTo5NiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidmFsdWUiIDogMSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ1bml0IiA6ICJ5ZWFyIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJRdWFudGl0eSINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICJoaWdoIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJUb0RhdGVUaW1lIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJoaWdoIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4ODo1LTg5Ojk3IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb3dDbG9zZWQiIDogdHJ1ZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJoaWdoQ2xvc2VkIiA6IGZhbHNlLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkludGVydmFsIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb3ciIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg4OjE0LTg4Ojk1IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBZGQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODg6MTQtODg6NTAiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvRGF0ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4ODozMy04ODo0OSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiYmlydGhEYXRlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4ODozMy04ODozOSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiUGF0aWVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRXhwcmVzc2lvblJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg4OjU0LTg4Ojk1IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb1F1YW50aXR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg4Ojc3LTg4Ojk0IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzdHJpY3QiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQXMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg4Ojc3LTg4OjgyIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjaG9pY2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImFzVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODg6ODctODg6OTQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfUFnZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiaGlnaCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODk6Ni04OTo5NiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQWRkIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg5OjYtODk6ODciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFkZCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4OTo2LTg5OjQyIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb0RhdGUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODk6MjUtODk6NDEiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImJpcnRoRGF0ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODk6MjUtODk6MzEiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlBhdGllbnQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkV4cHJlc3Npb25SZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4OTo0Ni04OTo4NyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9RdWFudGl0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4OTo2OS04OTo4NiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic3RyaWN0IiA6IGZhbHNlLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4OTo2OS04OTo3NCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY2hvaWNlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJhc1R5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg5Ojc5LTg5Ojg2IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1BZ2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODk6OTEtODk6OTYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInZhbHVlIiA6IDEsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidW5pdCIgOiAieWVhciIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUXVhbnRpdHkiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAiaGlnaENsb3NlZEV4cHJlc3Npb24iIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImhpZ2hDbG9zZWQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg4OjUtODk6OTciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvd0Nsb3NlZCIgOiB0cnVlLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgImhpZ2hDbG9zZWQiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiSW50ZXJ2YWwiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvdyIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODg6MTQtODg6OTUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFkZCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4ODoxNC04ODo1MCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9EYXRlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg4OjMzLTg4OjQ5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJiaXJ0aERhdGUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg4OjMzLTg4OjM5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJQYXRpZW50IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJFeHByZXNzaW9uUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODg6NTQtODg6OTUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvUXVhbnRpdHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODg6NzctODg6OTQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInN0cmljdCIgOiBmYWxzZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBcyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODg6NzctODg6ODIiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNob2ljZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiYXNUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4ODo4Ny04ODo5NCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9QWdlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJoaWdoIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4OTo2LTg5Ojk2IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBZGQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODk6Ni04OTo4NyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQWRkIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg5OjYtODk6NDIiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvRGF0ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4OToyNS04OTo0MSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiYmlydGhEYXRlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4OToyNS04OTozMSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiUGF0aWVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRXhwcmVzc2lvblJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg5OjQ2LTg5Ojg3IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb1F1YW50aXR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg5OjY5LTg5Ojg2IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzdHJpY3QiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQXMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjg5OjY5LTg5Ojc0IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjaG9pY2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImFzVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiODk6NzktODk6ODYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfUFnZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI4OTo5MS04OTo5NiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidmFsdWUiIDogMSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ1bml0IiA6ICJ5ZWFyIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJRdWFudGl0eSINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkwOjMtOTI6MTA2IiwNCiAgICAgICAgICAgICAgICAgICJ3aGVuIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5MDo4LTkwOjI3IiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJJcyIsDQogICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTA6OC05MDoxMyIsDQogICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY2hvaWNlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICJpc1R5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkwOjE4LTkwOjI3IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1SYW5nZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICJ0aGVuIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJJbnRlcnZhbCIsDQogICAgICAgICAgICAgICAgICAgICAibG93IiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJUb0RhdGVUaW1lIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJsb3ciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkxOjUtOTI6MTA2IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb3dDbG9zZWQiIDogdHJ1ZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJoaWdoQ2xvc2VkIiA6IGZhbHNlLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkludGVydmFsIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb3ciIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkxOjE0LTkxOjEwMyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQWRkIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkxOjE0LTkxOjUwIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb0RhdGUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTE6MzMtOTE6NDkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImJpcnRoRGF0ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTE6MzMtOTE6MzkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlBhdGllbnQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkV4cHJlc3Npb25SZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5MTo1NC05MToxMDMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvUXVhbnRpdHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTE6NzctOTE6MTAyIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJsb3ciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkxOjc3LTkxOjk4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzdHJpY3QiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQXMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkxOjc4LTkxOjgzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjaG9pY2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImFzVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTE6ODgtOTE6OTciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfVJhbmdlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJoaWdoIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5Mjo2LTkyOjEwNSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQWRkIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkyOjYtOTI6OTYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFkZCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5Mjo2LTkyOjQyIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb0RhdGUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTI6MjUtOTI6NDEiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImJpcnRoRGF0ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTI6MjUtOTI6MzEiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlBhdGllbnQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkV4cHJlc3Npb25SZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5Mjo0Ni05Mjo5NiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9RdWFudGl0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5Mjo2OS05Mjo5NSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiaGlnaCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTI6NjktOTI6OTAiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInN0cmljdCIgOiBmYWxzZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBcyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTI6NzAtOTI6NzUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNob2ljZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiYXNUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5Mjo4MC05Mjo4OSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9UmFuZ2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTI6MTAwLTkyOjEwNSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidmFsdWUiIDogMSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ1bml0IiA6ICJ5ZWFyIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJRdWFudGl0eSINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICJsb3dDbG9zZWRFeHByZXNzaW9uIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJsb3dDbG9zZWQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkxOjUtOTI6MTA2IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb3dDbG9zZWQiIDogdHJ1ZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJoaWdoQ2xvc2VkIiA6IGZhbHNlLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkludGVydmFsIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb3ciIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkxOjE0LTkxOjEwMyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQWRkIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkxOjE0LTkxOjUwIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb0RhdGUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTE6MzMtOTE6NDkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImJpcnRoRGF0ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTE6MzMtOTE6MzkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlBhdGllbnQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkV4cHJlc3Npb25SZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5MTo1NC05MToxMDMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvUXVhbnRpdHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTE6NzctOTE6MTAyIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJsb3ciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkxOjc3LTkxOjk4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzdHJpY3QiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQXMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkxOjc4LTkxOjgzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjaG9pY2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImFzVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTE6ODgtOTE6OTciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfVJhbmdlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJoaWdoIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5Mjo2LTkyOjEwNSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQWRkIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkyOjYtOTI6OTYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFkZCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5Mjo2LTkyOjQyIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb0RhdGUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTI6MjUtOTI6NDEiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImJpcnRoRGF0ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTI6MjUtOTI6MzEiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlBhdGllbnQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkV4cHJlc3Npb25SZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5Mjo0Ni05Mjo5NiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9RdWFudGl0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5Mjo2OS05Mjo5NSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiaGlnaCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTI6NjktOTI6OTAiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInN0cmljdCIgOiBmYWxzZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBcyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTI6NzAtOTI6NzUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNob2ljZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiYXNUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5Mjo4MC05Mjo4OSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9UmFuZ2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTI6MTAwLTkyOjEwNSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidmFsdWUiIDogMSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ1bml0IiA6ICJ5ZWFyIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJRdWFudGl0eSINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICJoaWdoIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJUb0RhdGVUaW1lIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJoaWdoIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5MTo1LTkyOjEwNiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG93Q2xvc2VkIiA6IHRydWUsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiaGlnaENsb3NlZCIgOiBmYWxzZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJJbnRlcnZhbCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG93IiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5MToxNC05MToxMDMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFkZCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5MToxNC05MTo1MCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9EYXRlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkxOjMzLTkxOjQ5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJiaXJ0aERhdGUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkxOjMzLTkxOjM5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJQYXRpZW50IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJFeHByZXNzaW9uUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTE6NTQtOTE6MTAzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb1F1YW50aXR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkxOjc3LTkxOjEwMiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAibG93IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5MTo3Ny05MTo5OCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic3RyaWN0IiA6IGZhbHNlLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5MTo3OC05MTo4MyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY2hvaWNlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJhc1R5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkxOjg4LTkxOjk3IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1SYW5nZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiaGlnaCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTI6Ni05MjoxMDUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFkZCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5Mjo2LTkyOjk2IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBZGQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTI6Ni05Mjo0MiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9EYXRlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkyOjI1LTkyOjQxIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJiaXJ0aERhdGUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkyOjI1LTkyOjMxIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJQYXRpZW50IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJFeHByZXNzaW9uUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTI6NDYtOTI6OTYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvUXVhbnRpdHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTI6NjktOTI6OTUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImhpZ2giLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkyOjY5LTkyOjkwIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzdHJpY3QiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQXMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkyOjcwLTkyOjc1IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjaG9pY2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImFzVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTI6ODAtOTI6ODkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfVJhbmdlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkyOjEwMC05MjoxMDUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInZhbHVlIiA6IDEsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidW5pdCIgOiAieWVhciIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUXVhbnRpdHkiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAiaGlnaENsb3NlZEV4cHJlc3Npb24iIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImhpZ2hDbG9zZWQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkxOjUtOTI6MTA2IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb3dDbG9zZWQiIDogdHJ1ZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJoaWdoQ2xvc2VkIiA6IGZhbHNlLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkludGVydmFsIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb3ciIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkxOjE0LTkxOjEwMyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQWRkIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkxOjE0LTkxOjUwIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb0RhdGUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTE6MzMtOTE6NDkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImJpcnRoRGF0ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTE6MzMtOTE6MzkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlBhdGllbnQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkV4cHJlc3Npb25SZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5MTo1NC05MToxMDMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvUXVhbnRpdHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTE6NzctOTE6MTAyIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJsb3ciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkxOjc3LTkxOjk4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzdHJpY3QiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQXMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkxOjc4LTkxOjgzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjaG9pY2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImFzVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTE6ODgtOTE6OTciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfVJhbmdlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJoaWdoIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5Mjo2LTkyOjEwNSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQWRkIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkyOjYtOTI6OTYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFkZCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5Mjo2LTkyOjQyIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb0RhdGUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTI6MjUtOTI6NDEiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImJpcnRoRGF0ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTI6MjUtOTI6MzEiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlBhdGllbnQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkV4cHJlc3Npb25SZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5Mjo0Ni05Mjo5NiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9RdWFudGl0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5Mjo2OS05Mjo5NSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiaGlnaCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTI6NjktOTI6OTAiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInN0cmljdCIgOiBmYWxzZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBcyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTI6NzAtOTI6NzUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNob2ljZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiYXNUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5Mjo4MC05Mjo4OSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9UmFuZ2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTI6MTAwLTkyOjEwNSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidmFsdWUiIDogMSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ1bml0IiA6ICJ5ZWFyIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJRdWFudGl0eSINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkzOjUtOTQ6MTE0IiwNCiAgICAgICAgICAgICAgICAgICJ3aGVuIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5MzoxMC05MzozMCIsDQogICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiSXMiLA0KICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjkzOjEwLTkzOjE1IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjaG9pY2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgImlzVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTM6MjAtOTM6MzAiLA0KICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfVRpbWluZyIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICJ0aGVuIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5NDo1LTk0OjExNCIsDQogICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTWVzc2FnZSIsDQogICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5NDoxMy05NDozOCIsDQogICAgICAgICAgICAgICAgICAgICAgICAic3RyaWN0IiA6IGZhbHNlLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5NDoxMy05NDoxNiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTnVsbCINCiAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAiYXNUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5NDoyMS05NDozOCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiSW50ZXJ2YWxUeXBlU3BlY2lmaWVyIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJwb2ludFR5cGUiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjk0OjMwLTk0OjM3IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7dXJuOmhsNy1vcmc6ZWxtLXR5cGVzOnIxfURhdGVUaW1lIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgImNvbmRpdGlvbiIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTQ6NDEtOTQ6NDQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInZhbHVlVHlwZSIgOiAie3VybjpobDctb3JnOmVsbS10eXBlczpyMX1Cb29sZWFuIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ2YWx1ZSIgOiAidHJ1ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTGl0ZXJhbCINCiAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAiY29kZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTQ6NDctOTQ6NDkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInZhbHVlVHlwZSIgOiAie3VybjpobDctb3JnOmVsbS10eXBlczpyMX1TdHJpbmciLA0KICAgICAgICAgICAgICAgICAgICAgICAgInZhbHVlIiA6ICIxIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJMaXRlcmFsIg0KICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICJzZXZlcml0eSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTQ6NTItOTQ6NTgiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInZhbHVlVHlwZSIgOiAie3VybjpobDctb3JnOmVsbS10eXBlczpyMX1TdHJpbmciLA0KICAgICAgICAgICAgICAgICAgICAgICAgInZhbHVlIiA6ICJFcnJvciIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTGl0ZXJhbCINCiAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAibWVzc2FnZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTQ6NjEtOTQ6MTEzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ2YWx1ZVR5cGUiIDogInt1cm46aGw3LW9yZzplbG0tdHlwZXM6cjF9U3RyaW5nIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ2YWx1ZSIgOiAiQ2Fubm90IGNvbXB1dGUgYSBzaW5nbGUgaW50ZXJ2YWwgZnJvbSBhIFRpbWluZyB0eXBlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJMaXRlcmFsIg0KICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjk1OjUtOTY6MTExIiwNCiAgICAgICAgICAgICAgICAgICJ3aGVuIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5NToxMC05NTozMCIsDQogICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiSXMiLA0KICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjk1OjEwLTk1OjE1IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjaG9pY2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgImlzVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTU6MjAtOTU6MzAiLA0KICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfXN0cmluZyIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICJ0aGVuIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5Njo3LTk2OjExMSIsDQogICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTWVzc2FnZSIsDQogICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5NjoxNS05Njo0MCIsDQogICAgICAgICAgICAgICAgICAgICAgICAic3RyaWN0IiA6IGZhbHNlLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5NjoxNS05NjoxOCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTnVsbCINCiAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAiYXNUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5NjoyMy05Njo0MCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiSW50ZXJ2YWxUeXBlU3BlY2lmaWVyIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJwb2ludFR5cGUiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjk2OjMyLTk2OjM5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7dXJuOmhsNy1vcmc6ZWxtLXR5cGVzOnIxfURhdGVUaW1lIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgImNvbmRpdGlvbiIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTY6NDMtOTY6NDYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInZhbHVlVHlwZSIgOiAie3VybjpobDctb3JnOmVsbS10eXBlczpyMX1Cb29sZWFuIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ2YWx1ZSIgOiAidHJ1ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTGl0ZXJhbCINCiAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAiY29kZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTY6NDktOTY6NTEiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInZhbHVlVHlwZSIgOiAie3VybjpobDctb3JnOmVsbS10eXBlczpyMX1TdHJpbmciLA0KICAgICAgICAgICAgICAgICAgICAgICAgInZhbHVlIiA6ICIxIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJMaXRlcmFsIg0KICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICJzZXZlcml0eSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTY6NTQtOTY6NjAiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInZhbHVlVHlwZSIgOiAie3VybjpobDctb3JnOmVsbS10eXBlczpyMX1TdHJpbmciLA0KICAgICAgICAgICAgICAgICAgICAgICAgInZhbHVlIiA6ICJFcnJvciIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTGl0ZXJhbCINCiAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAibWVzc2FnZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTY6NjMtOTY6MTEwIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ2YWx1ZVR5cGUiIDogInt1cm46aGw3LW9yZzplbG0tdHlwZXM6cjF9U3RyaW5nIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ2YWx1ZSIgOiAiQ2Fubm90IGNvbXB1dGUgYW4gaW50ZXJ2YWwgZnJvbSBhIFN0cmluZyB2YWx1ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTGl0ZXJhbCINCiAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgIH0gXSwNCiAgICAgICAgICAgICAgICJlbHNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5ODo3LTk4OjMyIiwNCiAgICAgICAgICAgICAgICAgICJzdHJpY3QiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQXMiLA0KICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjk4OjctOTg6MTAiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk51bGwiDQogICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgImFzVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiOTg6MTUtOTg6MzIiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkludGVydmFsVHlwZVNwZWNpZmllciIsDQogICAgICAgICAgICAgICAgICAgICAicG9pbnRUeXBlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI5ODoyNC05ODozMSIsDQogICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie3VybjpobDctb3JnOmVsbS10eXBlczpyMX1EYXRlVGltZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgIm5hbWUiIDogImNob2ljZSIsDQogICAgICAgICAgICAgICAib3BlcmFuZFR5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjc5OjM1LTc5OjEzMCIsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQ2hvaWNlVHlwZVNwZWNpZmllciIsDQogICAgICAgICAgICAgICAgICAiY2hvaWNlIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjc5OjQyLTc5OjU0IiwNCiAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1kYXRlVGltZSIsDQogICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjc5OjU3LTc5OjY3IiwNCiAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1QZXJpb2QiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI3OTo3MC03OTo4MCIsDQogICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9VGltaW5nIiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiNzk6ODMtNzk6OTQiLA0KICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfWluc3RhbnQiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICI3OTo5Ny03OToxMDciLA0KICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfXN0cmluZyIsDQogICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjc5OjExMC03OToxMTciLA0KICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfUFnZSIsDQogICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjc5OjEyMC03OToxMjkiLA0KICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfVJhbmdlIiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0gXQ0KICAgICAgICAgfSwgew0KICAgICAgICAgICAgImxvY2F0b3IiIDogIjEwNzoxLTEwOToyNCIsDQogICAgICAgICAgICAibmFtZSIgOiAiVG9JbnRlcnZhbEZyb21MaXN0IiwNCiAgICAgICAgICAgICJjb250ZXh0IiA6ICJQYXRpZW50IiwNCiAgICAgICAgICAgICJhY2Nlc3NMZXZlbCIgOiAiUHVibGljIiwNCiAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvbkRlZiIsDQogICAgICAgICAgICAiYW5ub3RhdGlvbiIgOiBbIHsNCiAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBbm5vdGF0aW9uIiwNCiAgICAgICAgICAgICAgICJ0IiA6IFsgew0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImRlc2NyaXB0aW9uIiwNCiAgICAgICAgICAgICAgICAgICJ2YWx1ZSIgOiAiUmV0dXJucyBhIGxpc3Qgb2YgaW50ZXJ2YWxzIHJlcHJlc2VudGluZyB0aGUgbm9ybWFsaXplZCBFdmVudCBvciBCb3VuZHMgb2YgYSBUaW1pbmcgcmVzb3VyY2UuIg0KICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNvbW1lbnQiLA0KICAgICAgICAgICAgICAgICAgInZhbHVlIiA6ICJOT1RFOiBUaW1pbmcuQm91bmRzIGlzIHJlc3RyaWN0ZWQgdG8gYSBQZXJpb2QuIg0KICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICB9IF0sDQogICAgICAgICAgICAiZXhwcmVzc2lvbiIgOiB7DQogICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTA4OjMtMTA5OjI0IiwNCiAgICAgICAgICAgICAgICJ0eXBlIiA6ICJRdWVyeSIsDQogICAgICAgICAgICAgICAic291cmNlIiA6IFsgew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjEwODozLTEwODo5IiwNCiAgICAgICAgICAgICAgICAgICJhbGlhcyIgOiAidiIsDQogICAgICAgICAgICAgICAgICAiZXhwcmVzc2lvbiIgOiB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTA4OjMtMTA4OjciLA0KICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogInZhbHVlIiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgfSBdLA0KICAgICAgICAgICAgICAgInJlbGF0aW9uc2hpcCIgOiBbIF0sDQogICAgICAgICAgICAgICAicmV0dXJuIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxMDk6NS0xMDk6MjQiLA0KICAgICAgICAgICAgICAgICAgImV4cHJlc3Npb24iIDogew0KICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjEwOToxMi0xMDk6MjQiLA0KICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvSW50ZXJ2YWwiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxMDk6MjMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogInYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFsaWFzUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICJhc1R5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkNob2ljZVR5cGVTcGVjaWZpZXIiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgImNob2ljZSIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1kYXRlVGltZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfVBlcmlvZCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfVRpbWluZyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfWluc3RhbnQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1zdHJpbmciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1BZ2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1SYW5nZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0sDQogICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJ2YWx1ZSIsDQogICAgICAgICAgICAgICAib3BlcmFuZFR5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjEwNzo0Mi0xMDc6NjAiLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkxpc3RUeXBlU3BlY2lmaWVyIiwNCiAgICAgICAgICAgICAgICAgICJlbGVtZW50VHlwZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTA3OjQ3LTEwNzo1OSIsDQogICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9ZGF0ZVRpbWUiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0gXQ0KICAgICAgICAgfSwgew0KICAgICAgICAgICAgImxvY2F0b3IiIDogIjExMToxLTExMjo0MiIsDQogICAgICAgICAgICAibmFtZSIgOiAiTnVsbFRvRW1wdHlJbnRlcnZhbCIsDQogICAgICAgICAgICAiY29udGV4dCIgOiAiUGF0aWVudCIsDQogICAgICAgICAgICAiYWNjZXNzTGV2ZWwiIDogIlB1YmxpYyIsDQogICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25EZWYiLA0KICAgICAgICAgICAgImV4cHJlc3Npb24iIDogew0KICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjExMjozLTExMjo0MiIsDQogICAgICAgICAgICAgICAidHlwZSIgOiAiSWYiLA0KICAgICAgICAgICAgICAgImNvbmRpdGlvbiIgOiB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTEyOjYtMTEyOjIyIiwNCiAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOb3QiLA0KICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjExMjo2LTExMjoyMiIsDQogICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiSXNOdWxsIiwNCiAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxMTI6Ni0xMTI6MTAiLA0KICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogInZhbHVlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICJ0aGVuIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxMTI6MjktMTEyOjMzIiwNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ2YWx1ZSIsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAiZWxzZSIgOiB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTEyOjQwLTExMjo0MiIsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTGlzdCINCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0sDQogICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJ2YWx1ZSIsDQogICAgICAgICAgICAgICAib3BlcmFuZFR5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjExMTo0My0xMTE6NjYiLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkxpc3RUeXBlU3BlY2lmaWVyIiwNCiAgICAgICAgICAgICAgICAgICJlbGVtZW50VHlwZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTExOjQ4LTExMTo2NSIsDQogICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiSW50ZXJ2YWxUeXBlU3BlY2lmaWVyIiwNCiAgICAgICAgICAgICAgICAgICAgICJwb2ludFR5cGUiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjExMTo1Ny0xMTE6NjQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogInt1cm46aGw3LW9yZzplbG0tdHlwZXM6cjF9RGF0ZVRpbWUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0gXQ0KICAgICAgICAgfSwgew0KICAgICAgICAgICAgImxvY2F0b3IiIDogIjExNDoxLTExODo0NyIsDQogICAgICAgICAgICAibmFtZSIgOiAiVG9UaW1pbmdJbnRlcnZhbCIsDQogICAgICAgICAgICAiY29udGV4dCIgOiAiUGF0aWVudCIsDQogICAgICAgICAgICAiYWNjZXNzTGV2ZWwiIDogIlB1YmxpYyIsDQogICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25EZWYiLA0KICAgICAgICAgICAgImV4cHJlc3Npb24iIDogew0KICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjExNTozLTExODo0NyIsDQogICAgICAgICAgICAgICAidHlwZSIgOiAiRXhjZXB0IiwNCiAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjExNTozLTExODozMSIsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUXVlcnkiLA0KICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICJhbGlhcyIgOiAiWCIsDQogICAgICAgICAgICAgICAgICAgICAiZXhwcmVzc2lvbiIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTE1OjExLTExODozIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJVbmlvbiIsDQogICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxMTY6NS0xMTY6NTciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIk51bGxUb0VtcHR5SW50ZXJ2YWwiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjExNjoyNS0xMTY6NTYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvSW50ZXJ2YWxGcm9tTGlzdCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTE2OjQ0LTExNjo1NSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiZXZlbnQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjExNjo0NC0xMTY6NDkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogInRpbWluZyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTE3OjExLTExNzo4MCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiTnVsbFRvRW1wdHlJbnRlcnZhbCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTE3OjMxLTExNzo3OSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTGlzdCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiZWxlbWVudCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxMTc6MzItMTE3Ojc4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb0ludGVydmFsIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBcyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTE3OjQzLTExNzo3NyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic3RyaWN0IiA6IGZhbHNlLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxMTc6NDMtMTE3OjYyIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJib3VuZHMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjExNzo0My0xMTc6NTUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogInJlcGVhdCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTE3OjQzLTExNzo0OCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAidGltaW5nIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJhc1R5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjExNzo2Ny0xMTc6NzciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfVBlcmlvZCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJhc1R5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkNob2ljZVR5cGVTcGVjaWZpZXIiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImNob2ljZSIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1kYXRlVGltZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfVBlcmlvZCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfVRpbWluZyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfWluc3RhbnQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1zdHJpbmciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1BZ2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1SYW5nZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgIH0gXSwNCiAgICAgICAgICAgICAgICAgICJyZXR1cm4iIDogew0KICAgICAgICAgICAgICAgICAgICAgImRpc3RpbmN0IiA6IGZhbHNlLA0KICAgICAgICAgICAgICAgICAgICAgImV4cHJlc3Npb24iIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJYIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBbGlhc1JlZiINCiAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAiYXNUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJJbnRlcnZhbFR5cGVTcGVjaWZpZXIiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgInBvaW50VHlwZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie3VybjpobDctb3JnOmVsbS10eXBlczpyMX1EYXRlVGltZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlF1ZXJ5IiwNCiAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAiYWxpYXMiIDogIlgiLA0KICAgICAgICAgICAgICAgICAgICAgImV4cHJlc3Npb24iIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjExODo0MC0xMTg6NDciLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkxpc3QiLA0KICAgICAgICAgICAgICAgICAgICAgICAgImVsZW1lbnQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTE4OjQyLTExODo0NSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTnVsbCINCiAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgfSBdLA0KICAgICAgICAgICAgICAgICAgInJldHVybiIgOiB7DQogICAgICAgICAgICAgICAgICAgICAiZGlzdGluY3QiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAgICAiZXhwcmVzc2lvbiIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQXMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlgiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFsaWFzUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICJhc1R5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkludGVydmFsVHlwZVNwZWNpZmllciIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAicG9pbnRUeXBlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7dXJuOmhsNy1vcmc6ZWxtLXR5cGVzOnIxfURhdGVUaW1lIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgIH0sDQogICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJ0aW1pbmciLA0KICAgICAgICAgICAgICAgIm9wZXJhbmRUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxMTQ6NDEtMTE0OjUxIiwNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1UaW1pbmciLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0gXQ0KICAgICAgICAgfSwgew0KICAgICAgICAgICAgImxvY2F0b3IiIDogIjEzNToxLTE1NDoxMCIsDQogICAgICAgICAgICAibmFtZSIgOiAiVG9BYmF0ZW1lbnRJbnRlcnZhbCIsDQogICAgICAgICAgICAiY29udGV4dCIgOiAiUGF0aWVudCIsDQogICAgICAgICAgICAiYWNjZXNzTGV2ZWwiIDogIlB1YmxpYyIsDQogICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25EZWYiLA0KICAgICAgICAgICAgImFubm90YXRpb24iIDogWyB7DQogICAgICAgICAgICAgICAidHlwZSIgOiAiQW5ub3RhdGlvbiIsDQogICAgICAgICAgICAgICAidCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJkZXNjcmlwdGlvbiIsDQogICAgICAgICAgICAgICAgICAidmFsdWUiIDogInJldHVybnMgdGhlIGV4aXN0aW5nIHBvc3NpYmxlIHRpbWVzdGFtcCBmb3Igb2JzZXJ2YXRpb24gcmVzb3VyY2VzLCBwcmVmZXJyaW5nIGVmZmVjdGl2ZSBvdmVyIGlzc3VlZC4iDQogICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY29tbWVudCIsDQogICAgICAgICAgICAgICAgICAidmFsdWUiIDogIk5PVEU6IG5laXRoZXIgZWZmZWN0aXZlIG5vciBpc3N1ZWQgYXJlIHJlcXVpcmVkIGZpZWxkcyBpbiBRSS1Db3JlXG5OT1RFOiBGdW5jdGlvbiBvdmVybG9hZHMgaW5jb25zaXN0ZW50bHkgZXJyIGluIENRTCAxLjUsIHRoaXMgaXMgY29tbWVudGVkIHVudGlsIGEgZml4IGlzIGZvdW5kXG5kZWZpbmUgZnVuY3Rpb24gVG9JbnRlcnZhbChvYnNlcnZhdGlvbiBGSElSLk9ic2VydmF0aW9uKTpcbiAgb2JzZXJ2YXRpb24gb1xuICAgIHJldHVybiBDb2FsZXNjZShUb0ludGVydmFsKG8uZWZmZWN0aXZlKSwgVG9JbnRlcnZhbChvLmlzc3VlZCkpIg0KICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImRlc2NyaXB0aW9uIiwNCiAgICAgICAgICAgICAgICAgICJ2YWx1ZSIgOiAiUmV0dXJucyBhbiBpbnRlcnZhbCByZXByZXNlbnRpbmcgdGhlIG5vcm1hbGl6ZWQgQWJhdGVtZW50IG9mIGEgZ2l2ZW4gQ29uZGl0aW9uIHJlc291cmNlLiINCiAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjb21tZW50IiwNCiAgICAgICAgICAgICAgICAgICJ2YWx1ZSIgOiAiTk9URTogRHVlIHRvIHRoZSBjb21wbGV4aXR5IG9mIGRldGVybWluaW5nIGFuIGludGVydmFsIGZyb20gYSBTdHJpbmcsIHRoaXMgZnVuY3Rpb24gd2lsbCB0aHJvd1xuYSBydW4tdGltZSBleGNlcHRpb24gaWYgdXNlZCB3aXRoIGEgQ29uZGl0aW9uIGluc3RhbmNlIHRoYXQgaGFzIGEgU3RyaW5nIGFzIHRoZSBhYmF0ZW1lbnQgdmFsdWUuIg0KICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICB9IF0sDQogICAgICAgICAgICAiZXhwcmVzc2lvbiIgOiB7DQogICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTM2OjMtMTU0OjEwIiwNCiAgICAgICAgICAgICAgICJ0eXBlIiA6ICJJZiIsDQogICAgICAgICAgICAgICAiY29uZGl0aW9uIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxMzY6Ni0xMzg6NDQiLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFuZCIsDQogICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxMzY6Ni0xMzY6NjQiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFuZCIsDQogICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxMzY6Ni0xMzY6MzIiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5vdCIsDQogICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTM2OjYtMTM2OjMyIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJJc051bGwiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjEzNjo2LTEzNjoyMCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAib25zZXQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjEzNjo2LTEzNjoxNCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY29uZGl0aW9uIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjEzNjozOC0xMzY6NjQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIklzTnVsbCIsDQogICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTM2OjM4LTEzNjo1NiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiYWJhdGVtZW50IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxMzY6MzgtMTM2OjQ2IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjb25kaXRpb24iLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxMzY6NzAtMTM4OjQ0IiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPciIsDQogICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxMzY6NzEtMTM3OjQ2IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPciIsDQogICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxMzY6NzEtMTM2OjEwNSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRXF1aXZhbGVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb0NvbmNlcHQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTM2OjcxLTEzNjo5NCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiY2xpbmljYWxTdGF0dXMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjEzNjo3MS0xMzY6NzkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNvbmRpdGlvbiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlRvQ29uY2VwdCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTM2Ojk4LTEzNjoxMDUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImFjdGl2ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQ29kZVJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjEzNzo4LTEzNzo0NiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRXF1aXZhbGVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb0NvbmNlcHQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTM3OjgtMTM3OjMxIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJjbGluaWNhbFN0YXR1cyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTM3OjgtMTM3OjE2IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjb25kaXRpb24iLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJUb0NvbmNlcHQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjEzNzozNS0xMzc6NDYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogInJlY3VycmVuY2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkNvZGVSZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjEzODo4LTEzODo0MyIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRXF1aXZhbGVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb0NvbmNlcHQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTM4OjgtMTM4OjMxIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJjbGluaWNhbFN0YXR1cyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTM4OjgtMTM4OjE2IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjb25kaXRpb24iLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJUb0NvbmNlcHQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjEzODozNS0xMzg6NDMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogInJlbGFwc2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkNvZGVSZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgInRoZW4iIDogew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjEzOTo1LTEzOToyNiIsDQogICAgICAgICAgICAgICAgICAibG93Q2xvc2VkIiA6IHRydWUsDQogICAgICAgICAgICAgICAgICAiaGlnaENsb3NlZCIgOiB0cnVlLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkludGVydmFsIiwNCiAgICAgICAgICAgICAgICAgICJsb3ciIDogew0KICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjEzOToxNC0xMzk6MTgiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5vdyINCiAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAiaGlnaCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTM5OjIxLTEzOToyNSIsDQogICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTm93Ig0KICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICJlbHNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDA6OC0xNTQ6MTAiLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIklmIiwNCiAgICAgICAgICAgICAgICAgICJjb25kaXRpb24iIDogew0KICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0MDoxMS0xNDA6NDYiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIklzIiwNCiAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDA6MTEtMTQwOjI5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJhYmF0ZW1lbnQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0MDoxMS0xNDA6MTkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNvbmRpdGlvbiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAiaXNUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDA6MzQtMTQwOjQ2IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1kYXRlVGltZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICJ0aGVuIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDE6NC0xNDE6MTM1IiwNCiAgICAgICAgICAgICAgICAgICAgICJsb3dDbG9zZWQiIDogdHJ1ZSwNCiAgICAgICAgICAgICAgICAgICAgICJoaWdoQ2xvc2VkIiA6IHRydWUsDQogICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiSW50ZXJ2YWwiLA0KICAgICAgICAgICAgICAgICAgICAgImxvdyIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQxOjEzLTE0MTo3MiIsDQogICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9EYXRlVGltZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDE6MzYtMTQxOjcxIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJzdHJpY3QiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQXMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0MTozNi0xNDE6NTQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImFiYXRlbWVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQxOjM2LTE0MTo0NCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY29uZGl0aW9uIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJhc1R5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0MTo1OS0xNDE6NzEiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfWRhdGVUaW1lIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAiaGlnaCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQxOjc1LTE0MToxMzQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvRGF0ZVRpbWUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQxOjk4LTE0MToxMzMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgInN0cmljdCIgOiBmYWxzZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBcyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQxOjk4LTE0MToxMTYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImFiYXRlbWVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQxOjk4LTE0MToxMDYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNvbmRpdGlvbiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAiYXNUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDE6MTIxLTE0MToxMzMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfWRhdGVUaW1lIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAiZWxzZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQyOjctMTU0OjEwIiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJJZiIsDQogICAgICAgICAgICAgICAgICAgICAiY29uZGl0aW9uIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDI6MTAtMTQyOjQzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJJcyIsDQogICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQyOjEwLTE0MjoyOCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiYWJhdGVtZW50IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDI6MTAtMTQyOjE4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjb25kaXRpb24iLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgICAgImlzVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQyOjMzLTE0Mjo0MyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9UGVyaW9kIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgInRoZW4iIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0Mzo0LTE0Mzo2MSIsDQogICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9JbnRlcnZhbCIsDQogICAgICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDM6MjctMTQzOjYwIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJzdHJpY3QiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQXMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0MzoyNy0xNDM6NDUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImFiYXRlbWVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQzOjI3LTE0MzozNSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY29uZGl0aW9uIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJhc1R5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0Mzo1MC0xNDM6NjAiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfVBlcmlvZCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgImVsc2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0NDo3LTE1NDoxMCIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiSWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgImNvbmRpdGlvbiIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ0OjEwLTE0NDo0MyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiSXMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0NDoxMC0xNDQ6MjgiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImFiYXRlbWVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ0OjEwLTE0NDoxOCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY29uZGl0aW9uIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJpc1R5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0NDozMy0xNDQ6NDMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfXN0cmluZyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0aGVuIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDU6NS0xNDU6MTA5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJNZXNzYWdlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0NToxMy0xNDU6MzgiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInN0cmljdCIgOiBmYWxzZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBcyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ1OjEzLTE0NToxNiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTnVsbCINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiYXNUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDU6MjEtMTQ1OjM4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJJbnRlcnZhbFR5cGVTcGVjaWZpZXIiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBvaW50VHlwZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ1OjMwLTE0NTozNyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie3VybjpobDctb3JnOmVsbS10eXBlczpyMX1EYXRlVGltZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJjb25kaXRpb24iIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0NTo0MS0xNDU6NDQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInZhbHVlVHlwZSIgOiAie3VybjpobDctb3JnOmVsbS10eXBlczpyMX1Cb29sZWFuIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ2YWx1ZSIgOiAidHJ1ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTGl0ZXJhbCINCiAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAiY29kZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ1OjQ3LTE0NTo0OSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidmFsdWVUeXBlIiA6ICJ7dXJuOmhsNy1vcmc6ZWxtLXR5cGVzOnIxfVN0cmluZyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidmFsdWUiIDogIjEiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkxpdGVyYWwiDQogICAgICAgICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgInNldmVyaXR5IiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDU6NTItMTQ1OjU4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ2YWx1ZVR5cGUiIDogInt1cm46aGw3LW9yZzplbG0tdHlwZXM6cjF9U3RyaW5nIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ2YWx1ZSIgOiAiRXJyb3IiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkxpdGVyYWwiDQogICAgICAgICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgIm1lc3NhZ2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0NTo2MS0xNDU6MTA4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ2YWx1ZVR5cGUiIDogInt1cm46aGw3LW9yZzplbG0tdHlwZXM6cjF9U3RyaW5nIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ2YWx1ZSIgOiAiQ2Fubm90IGNvbXB1dGUgYW4gaW50ZXJ2YWwgZnJvbSBhIFN0cmluZyB2YWx1ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTGl0ZXJhbCINCiAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAiZWxzZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ2OjctMTU0OjEwIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJJZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAiY29uZGl0aW9uIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDY6MTAtMTQ2OjQwIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJJcyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ2OjEwLTE0NjoyOCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiYWJhdGVtZW50IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDY6MTAtMTQ2OjE4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjb25kaXRpb24iLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImlzVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ2OjMzLTE0Njo0MCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9QWdlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgInRoZW4iIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkludGVydmFsIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb3ciIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlRvRGF0ZVRpbWUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImxvdyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ3OjMtMTQ4OjEwOCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG93Q2xvc2VkIiA6IHRydWUsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiaGlnaENsb3NlZCIgOiBmYWxzZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJJbnRlcnZhbCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG93IiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDc6MTItMTQ3OjEwNiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQWRkIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0NzoxMi0xNDc6NDgiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvRGF0ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDc6MzEtMTQ3OjQ3IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJiaXJ0aERhdGUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0NzozMS0xNDc6MzciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlBhdGllbnQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkV4cHJlc3Npb25SZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDc6NTItMTQ3OjEwNiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9RdWFudGl0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDc6NzUtMTQ3OjEwNSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic3RyaWN0IiA6IGZhbHNlLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDc6NzUtMTQ3OjkzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJhYmF0ZW1lbnQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0Nzo3NS0xNDc6ODMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNvbmRpdGlvbiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiYXNUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDc6OTgtMTQ3OjEwNSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9QWdlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJoaWdoIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDg6NC0xNDg6MTA3IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBZGQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ4OjQtMTQ4Ojk4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBZGQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ4OjQtMTQ4OjQwIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb0RhdGUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ4OjIzLTE0ODozOSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiYmlydGhEYXRlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDg6MjMtMTQ4OjI5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJQYXRpZW50IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJFeHByZXNzaW9uUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ4OjQ0LTE0ODo5OCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9RdWFudGl0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDg6NjctMTQ4Ojk3IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzdHJpY3QiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQXMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0ODo2Ny0xNDg6ODUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImFiYXRlbWVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ4OjY3LTE0ODo3NSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY29uZGl0aW9uIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJhc1R5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0ODo5MC0xNDg6OTciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfUFnZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDg6MTAyLTE0ODoxMDciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInZhbHVlIiA6IDEsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidW5pdCIgOiAieWVhciIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUXVhbnRpdHkiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG93Q2xvc2VkRXhwcmVzc2lvbiIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAibG93Q2xvc2VkIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDc6My0xNDg6MTA4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb3dDbG9zZWQiIDogdHJ1ZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJoaWdoQ2xvc2VkIiA6IGZhbHNlLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkludGVydmFsIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb3ciIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0NzoxMi0xNDc6MTA2IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBZGQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ3OjEyLTE0Nzo0OCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9EYXRlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0NzozMS0xNDc6NDciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImJpcnRoRGF0ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ3OjMxLTE0NzozNyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiUGF0aWVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRXhwcmVzc2lvblJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0Nzo1Mi0xNDc6MTA2IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb1F1YW50aXR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0Nzo3NS0xNDc6MTA1IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzdHJpY3QiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQXMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0Nzo3NS0xNDc6OTMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImFiYXRlbWVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ3Ojc1LTE0Nzo4MyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY29uZGl0aW9uIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJhc1R5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0Nzo5OC0xNDc6MTA1IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1BZ2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImhpZ2giIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0ODo0LTE0ODoxMDciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFkZCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDg6NC0xNDg6OTgiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFkZCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDg6NC0xNDg6NDAiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvRGF0ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDg6MjMtMTQ4OjM5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJiaXJ0aERhdGUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0ODoyMy0xNDg6MjkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlBhdGllbnQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkV4cHJlc3Npb25SZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDg6NDQtMTQ4Ojk4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb1F1YW50aXR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0ODo2Ny0xNDg6OTciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInN0cmljdCIgOiBmYWxzZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBcyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ4OjY3LTE0ODo4NSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiYWJhdGVtZW50IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDg6NjctMTQ4Ojc1IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjb25kaXRpb24iLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImFzVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ4OjkwLTE0ODo5NyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9QWdlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0ODoxMDItMTQ4OjEwNyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidmFsdWUiIDogMSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ1bml0IiA6ICJ5ZWFyIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJRdWFudGl0eSINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJoaWdoIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJUb0RhdGVUaW1lIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJoaWdoIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDc6My0xNDg6MTA4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb3dDbG9zZWQiIDogdHJ1ZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJoaWdoQ2xvc2VkIiA6IGZhbHNlLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkludGVydmFsIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb3ciIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0NzoxMi0xNDc6MTA2IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBZGQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ3OjEyLTE0Nzo0OCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9EYXRlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0NzozMS0xNDc6NDciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImJpcnRoRGF0ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ3OjMxLTE0NzozNyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiUGF0aWVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRXhwcmVzc2lvblJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0Nzo1Mi0xNDc6MTA2IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb1F1YW50aXR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0Nzo3NS0xNDc6MTA1IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzdHJpY3QiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQXMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0Nzo3NS0xNDc6OTMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImFiYXRlbWVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ3Ojc1LTE0Nzo4MyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY29uZGl0aW9uIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJhc1R5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0Nzo5OC0xNDc6MTA1IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1BZ2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImhpZ2giIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0ODo0LTE0ODoxMDciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFkZCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDg6NC0xNDg6OTgiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFkZCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDg6NC0xNDg6NDAiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvRGF0ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDg6MjMtMTQ4OjM5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJiaXJ0aERhdGUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0ODoyMy0xNDg6MjkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlBhdGllbnQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkV4cHJlc3Npb25SZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDg6NDQtMTQ4Ojk4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb1F1YW50aXR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0ODo2Ny0xNDg6OTciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInN0cmljdCIgOiBmYWxzZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBcyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ4OjY3LTE0ODo4NSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiYWJhdGVtZW50IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDg6NjctMTQ4Ojc1IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjb25kaXRpb24iLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImFzVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ4OjkwLTE0ODo5NyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9QWdlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0ODoxMDItMTQ4OjEwNyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidmFsdWUiIDogMSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ1bml0IiA6ICJ5ZWFyIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJRdWFudGl0eSINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJoaWdoQ2xvc2VkRXhwcmVzc2lvbiIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiaGlnaENsb3NlZCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ3OjMtMTQ4OjEwOCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG93Q2xvc2VkIiA6IHRydWUsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiaGlnaENsb3NlZCIgOiBmYWxzZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJJbnRlcnZhbCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG93IiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDc6MTItMTQ3OjEwNiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQWRkIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0NzoxMi0xNDc6NDgiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvRGF0ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDc6MzEtMTQ3OjQ3IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJiaXJ0aERhdGUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0NzozMS0xNDc6MzciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlBhdGllbnQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkV4cHJlc3Npb25SZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDc6NTItMTQ3OjEwNiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9RdWFudGl0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDc6NzUtMTQ3OjEwNSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic3RyaWN0IiA6IGZhbHNlLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDc6NzUtMTQ3OjkzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJhYmF0ZW1lbnQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0Nzo3NS0xNDc6ODMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNvbmRpdGlvbiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiYXNUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDc6OTgtMTQ3OjEwNSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9QWdlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJoaWdoIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDg6NC0xNDg6MTA3IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBZGQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ4OjQtMTQ4Ojk4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBZGQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ4OjQtMTQ4OjQwIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb0RhdGUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ4OjIzLTE0ODozOSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiYmlydGhEYXRlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDg6MjMtMTQ4OjI5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJQYXRpZW50IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJFeHByZXNzaW9uUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ4OjQ0LTE0ODo5OCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9RdWFudGl0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDg6NjctMTQ4Ojk3IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzdHJpY3QiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQXMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0ODo2Ny0xNDg6ODUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImFiYXRlbWVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ4OjY3LTE0ODo3NSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY29uZGl0aW9uIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJhc1R5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE0ODo5MC0xNDg6OTciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfUFnZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDg6MTAyLTE0ODoxMDciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInZhbHVlIiA6IDEsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidW5pdCIgOiAieWVhciIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUXVhbnRpdHkiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAiZWxzZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ5OjctMTU0OjEwIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJJZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiY29uZGl0aW9uIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDk6MTAtMTQ5OjQyIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJJcyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ5OjEwLTE0OToyOCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiYWJhdGVtZW50IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNDk6MTAtMTQ5OjE4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjb25kaXRpb24iLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImlzVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTQ5OjMzLTE0OTo0MiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9UmFuZ2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidGhlbiIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiSW50ZXJ2YWwiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvdyIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiVG9EYXRlVGltZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAibG93IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTA6NC0xNTE6MTE4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb3dDbG9zZWQiIDogdHJ1ZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJoaWdoQ2xvc2VkIiA6IGZhbHNlLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkludGVydmFsIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb3ciIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MDoxMy0xNTA6MTE1IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBZGQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUwOjEzLTE1MDo0OSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9EYXRlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MDozMi0xNTA6NDgiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImJpcnRoRGF0ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUwOjMyLTE1MDozOCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiUGF0aWVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRXhwcmVzc2lvblJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MDo1My0xNTA6MTE1IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb1F1YW50aXR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MDo3Ni0xNTA6MTE0IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJsb3ciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MDo3Ni0xNTA6MTEwIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzdHJpY3QiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQXMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MDo3Ny0xNTA6OTUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImFiYXRlbWVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUwOjc3LTE1MDo4NSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY29uZGl0aW9uIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJhc1R5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MDoxMDAtMTUwOjEwOSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9UmFuZ2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImhpZ2giIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MTo1LTE1MToxMTciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFkZCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTE6NS0xNTE6MTA4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBZGQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUxOjUtMTUxOjQxIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb0RhdGUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUxOjI0LTE1MTo0MCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiYmlydGhEYXRlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTE6MjQtMTUxOjMwIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJQYXRpZW50IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJFeHByZXNzaW9uUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUxOjQ1LTE1MToxMDgiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvUXVhbnRpdHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUxOjY4LTE1MToxMDciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImhpZ2giLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MTo2OC0xNTE6MTAyIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzdHJpY3QiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQXMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MTo2OS0xNTE6ODciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImFiYXRlbWVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUxOjY5LTE1MTo3NyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY29uZGl0aW9uIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJhc1R5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MTo5Mi0xNTE6MTAxIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1SYW5nZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTE6MTEyLTE1MToxMTciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInZhbHVlIiA6IDEsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidW5pdCIgOiAieWVhciIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUXVhbnRpdHkiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG93Q2xvc2VkRXhwcmVzc2lvbiIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAibG93Q2xvc2VkIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTA6NC0xNTE6MTE4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb3dDbG9zZWQiIDogdHJ1ZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJoaWdoQ2xvc2VkIiA6IGZhbHNlLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkludGVydmFsIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb3ciIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MDoxMy0xNTA6MTE1IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBZGQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUwOjEzLTE1MDo0OSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9EYXRlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MDozMi0xNTA6NDgiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImJpcnRoRGF0ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUwOjMyLTE1MDozOCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiUGF0aWVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRXhwcmVzc2lvblJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MDo1My0xNTA6MTE1IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb1F1YW50aXR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MDo3Ni0xNTA6MTE0IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJsb3ciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MDo3Ni0xNTA6MTEwIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzdHJpY3QiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQXMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MDo3Ny0xNTA6OTUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImFiYXRlbWVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUwOjc3LTE1MDo4NSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY29uZGl0aW9uIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJhc1R5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MDoxMDAtMTUwOjEwOSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9UmFuZ2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImhpZ2giIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MTo1LTE1MToxMTciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFkZCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTE6NS0xNTE6MTA4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBZGQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUxOjUtMTUxOjQxIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb0RhdGUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUxOjI0LTE1MTo0MCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiYmlydGhEYXRlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTE6MjQtMTUxOjMwIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJQYXRpZW50IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJFeHByZXNzaW9uUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUxOjQ1LTE1MToxMDgiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvUXVhbnRpdHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUxOjY4LTE1MToxMDciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImhpZ2giLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MTo2OC0xNTE6MTAyIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzdHJpY3QiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQXMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MTo2OS0xNTE6ODciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImFiYXRlbWVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUxOjY5LTE1MTo3NyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY29uZGl0aW9uIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJhc1R5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MTo5Mi0xNTE6MTAxIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1SYW5nZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTE6MTEyLTE1MToxMTciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInZhbHVlIiA6IDEsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidW5pdCIgOiAieWVhciIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUXVhbnRpdHkiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiaGlnaCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiVG9EYXRlVGltZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiaGlnaCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUwOjQtMTUxOjExOCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG93Q2xvc2VkIiA6IHRydWUsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiaGlnaENsb3NlZCIgOiBmYWxzZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJJbnRlcnZhbCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG93IiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTA6MTMtMTUwOjExNSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQWRkIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MDoxMy0xNTA6NDkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvRGF0ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTA6MzItMTUwOjQ4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJiaXJ0aERhdGUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MDozMi0xNTA6MzgiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlBhdGllbnQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkV4cHJlc3Npb25SZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTA6NTMtMTUwOjExNSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9RdWFudGl0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTA6NzYtMTUwOjExNCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAibG93IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTA6NzYtMTUwOjExMCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic3RyaWN0IiA6IGZhbHNlLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTA6NzctMTUwOjk1IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJhYmF0ZW1lbnQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MDo3Ny0xNTA6ODUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNvbmRpdGlvbiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiYXNUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTA6MTAwLTE1MDoxMDkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfVJhbmdlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJoaWdoIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTE6NS0xNTE6MTE3IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBZGQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUxOjUtMTUxOjEwOCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQWRkIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MTo1LTE1MTo0MSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9EYXRlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MToyNC0xNTE6NDAiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImJpcnRoRGF0ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUxOjI0LTE1MTozMCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiUGF0aWVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRXhwcmVzc2lvblJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MTo0NS0xNTE6MTA4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb1F1YW50aXR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MTo2OC0xNTE6MTA3IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJoaWdoIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTE6NjgtMTUxOjEwMiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic3RyaWN0IiA6IGZhbHNlLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFzIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTE6NjktMTUxOjg3IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJhYmF0ZW1lbnQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MTo2OS0xNTE6NzciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNvbmRpdGlvbiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiYXNUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTE6OTItMTUxOjEwMSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9UmFuZ2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUxOjExMi0xNTE6MTE3IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ2YWx1ZSIgOiAxLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInVuaXQiIDogInllYXIiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlF1YW50aXR5Ig0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImhpZ2hDbG9zZWRFeHByZXNzaW9uIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJoaWdoQ2xvc2VkIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTA6NC0xNTE6MTE4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb3dDbG9zZWQiIDogdHJ1ZSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJoaWdoQ2xvc2VkIiA6IGZhbHNlLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkludGVydmFsIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb3ciIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MDoxMy0xNTA6MTE1IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBZGQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUwOjEzLTE1MDo0OSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9EYXRlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MDozMi0xNTA6NDgiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImJpcnRoRGF0ZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUwOjMyLTE1MDozOCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiUGF0aWVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRXhwcmVzc2lvblJlZiINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MDo1My0xNTA6MTE1IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb1F1YW50aXR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MDo3Ni0xNTA6MTE0IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJsb3ciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MDo3Ni0xNTA6MTEwIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzdHJpY3QiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQXMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MDo3Ny0xNTA6OTUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImFiYXRlbWVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUwOjc3LTE1MDo4NSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY29uZGl0aW9uIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJhc1R5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MDoxMDAtMTUwOjEwOSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9UmFuZ2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImhpZ2giIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MTo1LTE1MToxMTciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFkZCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTE6NS0xNTE6MTA4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBZGQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUxOjUtMTUxOjQxIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb0RhdGUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUxOjI0LTE1MTo0MCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiYmlydGhEYXRlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTE6MjQtMTUxOjMwIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJQYXRpZW50IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJFeHByZXNzaW9uUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUxOjQ1LTE1MToxMDgiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvUXVhbnRpdHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUxOjY4LTE1MToxMDciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImhpZ2giLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MTo2OC0xNTE6MTAyIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJzdHJpY3QiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQXMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MTo2OS0xNTE6ODciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogImFiYXRlbWVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUxOjY5LTE1MTo3NyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY29uZGl0aW9uIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJhc1R5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1MTo5Mi0xNTE6MTAxIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1SYW5nZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTE6MTEyLTE1MToxMTciLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInZhbHVlIiA6IDEsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidW5pdCIgOiAieWVhciIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUXVhbnRpdHkiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiZWxzZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUyOjctMTU0OjEwIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJJZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiY29uZGl0aW9uIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTI6MTAtMTUyOjQ0IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJJcyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUyOjEwLTE1MjoyOCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiYWJhdGVtZW50IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTI6MTAtMTUyOjE4IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjb25kaXRpb24iLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImlzVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUyOjMzLTE1Mjo0NCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9Ym9vbGVhbiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0aGVuIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTM6NC0xNTM6NzEiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvd0Nsb3NlZCIgOiB0cnVlLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImhpZ2hDbG9zZWQiIDogZmFsc2UsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiSW50ZXJ2YWwiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvdyIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUzOjEzLTE1Mzo0NiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRW5kIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTM6MjAtMTUzOjQ2IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb0ludGVydmFsIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTM6MzEtMTUzOjQ1IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJvbnNldCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUzOjMxLTE1MzozOSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY29uZGl0aW9uIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImhpZ2giIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvRGF0ZVRpbWUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTUzOjQ5LTE1Mzo3MCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAicmVjb3JkZWREYXRlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNTM6NDktMTUzOjU3IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjb25kaXRpb24iLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiZWxzZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQXMiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE1NDo3LTE1NDoxMCIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTnVsbCINCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiYXNUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJJbnRlcnZhbFR5cGVTcGVjaWZpZXIiLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgInBvaW50VHlwZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAie3VybjpobDctb3JnOmVsbS10eXBlczpyMX1EYXRlVGltZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgIm5hbWUiIDogImNvbmRpdGlvbiIsDQogICAgICAgICAgICAgICAib3BlcmFuZFR5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjEzNTo0Ny0xMzU6NTUiLA0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfUNvbmRpdGlvbiIsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgfSBdDQogICAgICAgICB9LCB7DQogICAgICAgICAgICAibG9jYXRvciIgOiAiMTYxOjEtMTYyOjg3IiwNCiAgICAgICAgICAgICJuYW1lIiA6ICJUb1ByZXZhbGVuY2VJbnRlcnZhbCIsDQogICAgICAgICAgICAiY29udGV4dCIgOiAiUGF0aWVudCIsDQogICAgICAgICAgICAiYWNjZXNzTGV2ZWwiIDogIlB1YmxpYyIsDQogICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25EZWYiLA0KICAgICAgICAgICAgImFubm90YXRpb24iIDogWyB7DQogICAgICAgICAgICAgICAidHlwZSIgOiAiQW5ub3RhdGlvbiIsDQogICAgICAgICAgICAgICAidCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJkZXNjcmlwdGlvbiIsDQogICAgICAgICAgICAgICAgICAidmFsdWUiIDogIlJldHVybnMgYW4gaW50ZXJ2YWwgcmVwcmVzZW50aW5nIHRoZSBub3JtYWxpemVkIHByZXZhbGVuY2UgcGVyaW9kIG9mIGEgZ2l2ZW4gQ29uZGl0aW9uIHJlc291cmNlLiINCiAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjb21tZW50IiwNCiAgICAgICAgICAgICAgICAgICJ2YWx1ZSIgOiAiVXNlcyB0aGUgVG9JbnRlcnZhbCBhbmQgVG9BYmF0ZW1lbnRJbnRlcnZhbCBmdW5jdGlvbnMgdG8gZGV0ZXJtaW5lIHRoZSB3aWRlc3QgcG90ZW50aWFsIGludGVydmFsIGZyb21cbm9uc2V0IHRvIGFiYXRlbWVudCBhcyBzcGVjaWZpZWQgaW4gdGhlIGdpdmVuIENvbmRpdGlvbi4iDQogICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgIH0gXSwNCiAgICAgICAgICAgICJleHByZXNzaW9uIiA6IHsNCiAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNjI6My0xNjI6ODciLA0KICAgICAgICAgICAgICAgImxvd0Nsb3NlZCIgOiB0cnVlLA0KICAgICAgICAgICAgICAgImhpZ2hDbG9zZWQiIDogZmFsc2UsDQogICAgICAgICAgICAgICAidHlwZSIgOiAiSW50ZXJ2YWwiLA0KICAgICAgICAgICAgICAgImxvdyIgOiB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTYyOjEyLTE2Mjo0NyIsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiU3RhcnQiLA0KICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE2MjoyMS0xNjI6NDciLA0KICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvSW50ZXJ2YWwiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE2MjozMi0xNjI6NDYiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogIm9uc2V0IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNjI6MzItMTYyOjQwIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjb25kaXRpb24iLA0KICAgICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAiaGlnaCIgOiB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTYyOjUwLTE2Mjo4NiIsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRW5kIiwNCiAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNjI6NTctMTYyOjg2IiwNCiAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb0FiYXRlbWVudEludGVydmFsIiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNjI6NzctMTYyOjg1IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjb25kaXRpb24iLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0sDQogICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJjb25kaXRpb24iLA0KICAgICAgICAgICAgICAgIm9wZXJhbmRUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNjE6NDgtMTYxOjU2IiwNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1Db25kaXRpb24iLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0gXQ0KICAgICAgICAgfSwgew0KICAgICAgICAgICAgImxvY2F0b3IiIDogIjE2ODoxLTE2OToxMDkiLA0KICAgICAgICAgICAgIm5hbWUiIDogIlRvUHJldmFsZW5jZUludGVydmFsIiwNCiAgICAgICAgICAgICJjb250ZXh0IiA6ICJQYXRpZW50IiwNCiAgICAgICAgICAgICJhY2Nlc3NMZXZlbCIgOiAiUHVibGljIiwNCiAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvbkRlZiIsDQogICAgICAgICAgICAiYW5ub3RhdGlvbiIgOiBbIHsNCiAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBbm5vdGF0aW9uIiwNCiAgICAgICAgICAgICAgICJ0IiA6IFsgew0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImRlc2NyaXB0aW9uIiwNCiAgICAgICAgICAgICAgICAgICJ2YWx1ZSIgOiAiUmV0dXJucyBhbiBpbnRlcnZhbCByZXByZXNlbnRpbmcgdGhlIG5vcm1hbGl6ZWQgcHJldmFsZW5jZSBwZXJpb2Qgb2YgYSBnaXZlbiBBbGxlcmd5IEludG9sZXJhbmNlIHJlc291cmNlLiINCiAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjb21tZW50IiwNCiAgICAgICAgICAgICAgICAgICJ2YWx1ZSIgOiAiVXNlcyB0aGUgVG9JbnRlcnZhbCBmdW5jdGlvbiBhbmQgbGFzdE9jY3VyZW5jZSB0byBkZXRlcm1pbmUgdGhlIHdpZGVzdCBwb3RlbnRpYWwgaW50ZXJ2YWwuIg0KICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICB9IF0sDQogICAgICAgICAgICAiZXhwcmVzc2lvbiIgOiB7DQogICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTY5OjMtMTY5OjEwOSIsDQogICAgICAgICAgICAgICAibG93Q2xvc2VkIiA6IHRydWUsDQogICAgICAgICAgICAgICAiaGlnaENsb3NlZCIgOiB0cnVlLA0KICAgICAgICAgICAgICAgInR5cGUiIDogIkludGVydmFsIiwNCiAgICAgICAgICAgICAgICJsb3ciIDogew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE2OToxMi0xNjk6NTYiLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlN0YXJ0IiwNCiAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNjk6MjEtMTY5OjU2IiwNCiAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb0ludGVydmFsIiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNjk6MzItMTY5OjU1IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJvbnNldCIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTY5OjMyLTE2OTo0OSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiYWxsZXJneUludG9sZXJhbmNlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgImhpZ2giIDogew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE2OTo1OS0xNjk6MTA4IiwNCiAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJDb2FsZXNjZSIsDQogICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb0RhdGVUaW1lIiwNCiAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE2OTo2OC0xNjk6MTAwIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJsYXN0T2NjdXJyZW5jZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTY5OjY4LTE2OTo4NSIsDQogICAgICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiYWxsZXJneUludG9sZXJhbmNlIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTY5OjEwMy0xNjk6MTA3IiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOb3ciDQogICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0sDQogICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJhbGxlcmd5SW50b2xlcmFuY2UiLA0KICAgICAgICAgICAgICAgIm9wZXJhbmRUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNjg6NTctMTY4Ojc0IiwNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1BbGxlcmd5SW50b2xlcmFuY2UiLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0gXQ0KICAgICAgICAgfSwgew0KICAgICAgICAgICAgImxvY2F0b3IiIDogIjE3ODoxLTE4MToxMCIsDQogICAgICAgICAgICAibmFtZSIgOiAiRXh0ZW5zaW9ucyIsDQogICAgICAgICAgICAiY29udGV4dCIgOiAiUGF0aWVudCIsDQogICAgICAgICAgICAiYWNjZXNzTGV2ZWwiIDogIlB1YmxpYyIsDQogICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25EZWYiLA0KICAgICAgICAgICAgImFubm90YXRpb24iIDogWyB7DQogICAgICAgICAgICAgICAidHlwZSIgOiAiQW5ub3RhdGlvbiIsDQogICAgICAgICAgICAgICAidCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJkZXNjcmlwdGlvbiIsDQogICAgICAgICAgICAgICAgICAidmFsdWUiIDogIlJldHVybnMgYW55IGV4dGVuc2lvbnMgZGVmaW5lZCBvbiB0aGUgZ2l2ZW4gcmVzb3VyY2Ugd2l0aCB0aGUgc3BlY2lmaWVkIHVybC4iDQogICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY29tbWVudCIsDQogICAgICAgICAgICAgICAgICAidmFsdWUiIDogIk5PVEU6IEV4dGVuc2lvbnMgYXJlIG5vdCB0aGUgcHJlZmVycmVkIGFwcHJvYWNoLCBidXQgYXJlIHVzZWQgYXMgYSB3YXkgdG8gYWNjZXNzXG5jb250ZW50IHRoYXQgaXMgZGVmaW5lZCBieSBleHRlbnNpb25zIGJ1dCBub3QgeWV0IHN1cmZhY2VkIGluIHRoZVxuQ1FMIG1vZGVsIGluZm8uIg0KICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICB9IF0sDQogICAgICAgICAgICAiZXhwcmVzc2lvbiIgOiB7DQogICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTc5OjMtMTgxOjEwIiwNCiAgICAgICAgICAgICAgICJ0eXBlIiA6ICJRdWVyeSIsDQogICAgICAgICAgICAgICAic291cmNlIiA6IFsgew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE3OTozLTE3OToyOCIsDQogICAgICAgICAgICAgICAgICAiYWxpYXMiIDogIkUiLA0KICAgICAgICAgICAgICAgICAgImV4cHJlc3Npb24iIDogew0KICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE3OTozLTE3OToyNiIsDQogICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiZXh0ZW5zaW9uIiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJkb21haW5SZXNvdXJjZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgIH0gXSwNCiAgICAgICAgICAgICAgICJyZWxhdGlvbnNoaXAiIDogWyBdLA0KICAgICAgICAgICAgICAgIndoZXJlIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxODA6NC0xODA6MjAiLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkVxdWFsIiwNCiAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvU3RyaW5nIiwNCiAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE4MDoxMC0xODA6MTQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogInVybCIsDQogICAgICAgICAgICAgICAgICAgICAgICAic2NvcGUiIDogIkUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5Ig0KICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTgwOjE4LTE4MDoyMCIsDQogICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAidXJsIiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgInJldHVybiIgOiB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTgxOjMtMTgxOjEwIiwNCiAgICAgICAgICAgICAgICAgICJleHByZXNzaW9uIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxODE6MTAiLA0KICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIkUiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFsaWFzUmVmIg0KICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgIm5hbWUiIDogImRvbWFpblJlc291cmNlIiwNCiAgICAgICAgICAgICAgICJvcGVyYW5kVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTc4OjQzLTE3ODo1NiIsDQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9RG9tYWluUmVzb3VyY2UiLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJ1cmwiLA0KICAgICAgICAgICAgICAgIm9wZXJhbmRUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxNzg6NjMtMTc4OjY4IiwNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7dXJuOmhsNy1vcmc6ZWxtLXR5cGVzOnIxfVN0cmluZyIsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgfSBdDQogICAgICAgICB9LCB7DQogICAgICAgICAgICAibG9jYXRvciIgOiAiMTg4OjEtMTg5OjUwIiwNCiAgICAgICAgICAgICJuYW1lIiA6ICJFeHRlbnNpb24iLA0KICAgICAgICAgICAgImNvbnRleHQiIDogIlBhdGllbnQiLA0KICAgICAgICAgICAgImFjY2Vzc0xldmVsIiA6ICJQdWJsaWMiLA0KICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uRGVmIiwNCiAgICAgICAgICAgICJhbm5vdGF0aW9uIiA6IFsgew0KICAgICAgICAgICAgICAgInR5cGUiIDogIkFubm90YXRpb24iLA0KICAgICAgICAgICAgICAgInQiIDogWyB7DQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAiZGVzY3JpcHRpb24iLA0KICAgICAgICAgICAgICAgICAgInZhbHVlIiA6ICJSZXR1cm5zIHRoZSBzaW5nbGUgZXh0ZW5zaW9uIChpZiBwcmVzZW50KSBvbiB0aGUgZ2l2ZW4gcmVzb3VyY2Ugd2l0aCB0aGUgc3BlY2lmaWVkIHVybC4iDQogICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY29tbWVudCIsDQogICAgICAgICAgICAgICAgICAidmFsdWUiIDogIlRoaXMgZnVuY3Rpb24gdXNlcyBzaW5nbGV0b24gZnJvbSB0byBlbnN1cmUgdGhhdCBhIHJ1bi10aW1lIGV4Y2VwdGlvbiBpcyB0aHJvd24gaWYgdGhlcmVcbmlzIG1vcmUgdGhhbiBvbmUgZXh0ZW5zaW9uIG9uIHRoZSBnaXZlbiByZXNvdXJjZSB3aXRoIHRoZSBzcGVjaWZpZWQgdXJsLiINCiAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgfSBdLA0KICAgICAgICAgICAgImV4cHJlc3Npb24iIDogew0KICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE4OTozLTE4OTo1MCIsDQogICAgICAgICAgICAgICAidHlwZSIgOiAiU2luZ2xldG9uRnJvbSIsDQogICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTg5OjE4LTE4OTo1MCIsDQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAiRXh0ZW5zaW9ucyIsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTg5OjMxLTE4OTo0NCIsDQogICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiZG9tYWluUmVzb3VyY2UiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTg5OjQ3LTE4OTo0OSIsDQogICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAidXJsIiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICB9DQogICAgICAgICAgICB9LA0KICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAibmFtZSIgOiAiZG9tYWluUmVzb3VyY2UiLA0KICAgICAgICAgICAgICAgIm9wZXJhbmRUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxODg6NDItMTg4OjU1IiwNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1Eb21haW5SZXNvdXJjZSIsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgIm5hbWUiIDogInVybCIsDQogICAgICAgICAgICAgICAib3BlcmFuZFR5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE4ODo2Mi0xODg6NjciLA0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogInt1cm46aGw3LW9yZzplbG0tdHlwZXM6cjF9U3RyaW5nIiwNCiAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICB9DQogICAgICAgICAgICB9IF0NCiAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxOTY6MS0xOTk6MTAiLA0KICAgICAgICAgICAgIm5hbWUiIDogIkV4dGVuc2lvbnMiLA0KICAgICAgICAgICAgImNvbnRleHQiIDogIlBhdGllbnQiLA0KICAgICAgICAgICAgImFjY2Vzc0xldmVsIiA6ICJQdWJsaWMiLA0KICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uRGVmIiwNCiAgICAgICAgICAgICJhbm5vdGF0aW9uIiA6IFsgew0KICAgICAgICAgICAgICAgInR5cGUiIDogIkFubm90YXRpb24iLA0KICAgICAgICAgICAgICAgInQiIDogWyB7DQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAiZGVzY3JpcHRpb24iLA0KICAgICAgICAgICAgICAgICAgInZhbHVlIiA6ICJSZXR1cm5zIGFueSBleHRlbnNpb25zIGRlZmluZWQgb24gdGhlIGdpdmVuIGVsZW1lbnQgd2l0aCB0aGUgc3BlY2lmaWVkIHVybC4iDQogICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY29tbWVudCIsDQogICAgICAgICAgICAgICAgICAidmFsdWUiIDogIk5PVEU6IEV4dGVuc2lvbnMgYXJlIG5vdCB0aGUgcHJlZmVycmVkIGFwcHJvYWNoLCBidXQgYXJlIHVzZWQgYXMgYSB3YXkgdG8gYWNjZXNzXG5jb250ZW50IHRoYXQgaXMgZGVmaW5lZCBieSBleHRlbnNpb25zIGJ1dCBub3QgeWV0IHN1cmZhY2VkIGluIHRoZSBDUUwgbW9kZWwgaW5mby4iDQogICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgIH0gXSwNCiAgICAgICAgICAgICJleHByZXNzaW9uIiA6IHsNCiAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxOTc6My0xOTk6MTAiLA0KICAgICAgICAgICAgICAgInR5cGUiIDogIlF1ZXJ5IiwNCiAgICAgICAgICAgICAgICJzb3VyY2UiIDogWyB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTk3OjMtMTk3OjIxIiwNCiAgICAgICAgICAgICAgICAgICJhbGlhcyIgOiAiRSIsDQogICAgICAgICAgICAgICAgICAiZXhwcmVzc2lvbiIgOiB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTk3OjMtMTk3OjE5IiwNCiAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJleHRlbnNpb24iLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5IiwNCiAgICAgICAgICAgICAgICAgICAgICJzb3VyY2UiIDogew0KICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImVsZW1lbnQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICB9IF0sDQogICAgICAgICAgICAgICAicmVsYXRpb25zaGlwIiA6IFsgXSwNCiAgICAgICAgICAgICAgICJ3aGVyZSIgOiB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTk4OjQtMTk4OjIwIiwNCiAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJFcXVhbCIsDQogICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb1N0cmluZyIsDQogICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIxOTg6MTAtMTk4OjE0IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJ1cmwiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInNjb3BlIiA6ICJFIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSINCiAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE5ODoxOC0xOTg6MjAiLA0KICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogInVybCIsDQogICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICJyZXR1cm4iIDogew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE5OTozLTE5OToxMCIsDQogICAgICAgICAgICAgICAgICAiZXhwcmVzc2lvbiIgOiB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTk5OjEwIiwNCiAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJFIiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBbGlhc1JlZiINCiAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0sDQogICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJlbGVtZW50IiwNCiAgICAgICAgICAgICAgICJvcGVyYW5kVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMTk2OjM2LTE5Njo0MiIsDQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9RWxlbWVudCIsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgIm5hbWUiIDogInVybCIsDQogICAgICAgICAgICAgICAib3BlcmFuZFR5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjE5Njo0OS0xOTY6NTQiLA0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogInt1cm46aGw3LW9yZzplbG0tdHlwZXM6cjF9U3RyaW5nIiwNCiAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICB9DQogICAgICAgICAgICB9IF0NCiAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyMDY6MS0yMDc6NDEiLA0KICAgICAgICAgICAgIm5hbWUiIDogIkV4dGVuc2lvbiIsDQogICAgICAgICAgICAiY29udGV4dCIgOiAiUGF0aWVudCIsDQogICAgICAgICAgICAiYWNjZXNzTGV2ZWwiIDogIlB1YmxpYyIsDQogICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25EZWYiLA0KICAgICAgICAgICAgImFubm90YXRpb24iIDogWyB7DQogICAgICAgICAgICAgICAidHlwZSIgOiAiQW5ub3RhdGlvbiIsDQogICAgICAgICAgICAgICAidCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJkZXNjcmlwdGlvbiIsDQogICAgICAgICAgICAgICAgICAidmFsdWUiIDogIlJldHVybnMgdGhlIHNpbmdsZSBleHRlbnNpb24gKGlmIHByZXNlbnQpIG9uIHRoZSBnaXZlbiBlbGVtZW50IHdpdGggdGhlIHNwZWNpZmllZCB1cmwuIg0KICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNvbW1lbnQiLA0KICAgICAgICAgICAgICAgICAgInZhbHVlIiA6ICJUaGlzIGZ1bmN0aW9uIHVzZXMgc2luZ2xldG9uIGZyb20gdG8gZW5zdXJlIHRoYXQgYSBydW4tdGltZSBleGNlcHRpb24gaXMgdGhyb3duIGlmIHRoZXJlXG5pcyBtb3JlIHRoYW4gb25lIGV4dGVuc2lvbiBvbiB0aGUgZ2l2ZW4gcmVzb3VyY2Ugd2l0aCB0aGUgc3BlY2lmaWVkIHVybC4iDQogICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgIH0gXSwNCiAgICAgICAgICAgICJleHByZXNzaW9uIiA6IHsNCiAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyMDc6My0yMDc6NDEiLA0KICAgICAgICAgICAgICAgInR5cGUiIDogIlNpbmdsZXRvbkZyb20iLA0KICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjIwNzoxOC0yMDc6NDEiLA0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIkV4dGVuc2lvbnMiLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjIwNzoyOS0yMDc6MzUiLA0KICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImVsZW1lbnQiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjA3OjM4LTIwNzo0MCIsDQogICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAidXJsIiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICB9DQogICAgICAgICAgICB9LA0KICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAibmFtZSIgOiAiZWxlbWVudCIsDQogICAgICAgICAgICAgICAib3BlcmFuZFR5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjIwNjozNS0yMDY6NDEiLA0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfUVsZW1lbnQiLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJ1cmwiLA0KICAgICAgICAgICAgICAgIm9wZXJhbmRUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyMDY6NDgtMjA2OjUzIiwNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7dXJuOmhsNy1vcmc6ZWxtLXR5cGVzOnIxfVN0cmluZyIsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgfSBdDQogICAgICAgICB9LCB7DQogICAgICAgICAgICAibG9jYXRvciIgOiAiMjE1OjEtMjE4OjEwIiwNCiAgICAgICAgICAgICJuYW1lIiA6ICJNb2RpZmllckV4dGVuc2lvbnMiLA0KICAgICAgICAgICAgImNvbnRleHQiIDogIlBhdGllbnQiLA0KICAgICAgICAgICAgImFjY2Vzc0xldmVsIiA6ICJQdWJsaWMiLA0KICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uRGVmIiwNCiAgICAgICAgICAgICJhbm5vdGF0aW9uIiA6IFsgew0KICAgICAgICAgICAgICAgInR5cGUiIDogIkFubm90YXRpb24iLA0KICAgICAgICAgICAgICAgInQiIDogWyB7DQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAiZGVzY3JpcHRpb24iLA0KICAgICAgICAgICAgICAgICAgInZhbHVlIiA6ICJSZXR1cm5zIGFueSBtb2RpZmllciBleHRlbnNpb25zIGRlZmluZWQgb24gdGhlIGdpdmVuIHJlc291cmNlIHdpdGggdGhlIHNwZWNpZmllZCB1cmwuIg0KICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNvbW1lbnQiLA0KICAgICAgICAgICAgICAgICAgInZhbHVlIiA6ICJOT1RFOiBFeHRlbnNpb25zIGFyZSBub3QgdGhlIHByZWZlcnJlZCBhcHByb2FjaCwgYnV0IGFyZSB1c2VkIGFzIGEgd2F5IHRvIGFjY2Vzc1xuY29udGVudCB0aGF0IGlzIGRlZmluZWQgYnkgZXh0ZW5zaW9ucyBidXQgbm90IHlldCBzdXJmYWNlZCBpbiB0aGVcbkNRTCBtb2RlbCBpbmZvLiINCiAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgfSBdLA0KICAgICAgICAgICAgImV4cHJlc3Npb24iIDogew0KICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjIxNjozLTIxODoxMCIsDQogICAgICAgICAgICAgICAidHlwZSIgOiAiUXVlcnkiLA0KICAgICAgICAgICAgICAgInNvdXJjZSIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyMTY6My0yMTY6MzYiLA0KICAgICAgICAgICAgICAgICAgImFsaWFzIiA6ICJFIiwNCiAgICAgICAgICAgICAgICAgICJleHByZXNzaW9uIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyMTY6My0yMTY6MzQiLA0KICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogIm1vZGlmaWVyRXh0ZW5zaW9uIiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJkb21haW5SZXNvdXJjZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgIH0gXSwNCiAgICAgICAgICAgICAgICJyZWxhdGlvbnNoaXAiIDogWyBdLA0KICAgICAgICAgICAgICAgIndoZXJlIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyMTc6NC0yMTc6MjAiLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkVxdWFsIiwNCiAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvU3RyaW5nIiwNCiAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjIxNzoxMC0yMTc6MTQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogInVybCIsDQogICAgICAgICAgICAgICAgICAgICAgICAic2NvcGUiIDogIkUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5Ig0KICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjE3OjE4LTIxNzoyMCIsDQogICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAidXJsIiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgInJldHVybiIgOiB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjE4OjMtMjE4OjEwIiwNCiAgICAgICAgICAgICAgICAgICJleHByZXNzaW9uIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyMTg6MTAiLA0KICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIkUiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFsaWFzUmVmIg0KICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgIm5hbWUiIDogImRvbWFpblJlc291cmNlIiwNCiAgICAgICAgICAgICAgICJvcGVyYW5kVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjE1OjUxLTIxNTo2NCIsDQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9RG9tYWluUmVzb3VyY2UiLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJ1cmwiLA0KICAgICAgICAgICAgICAgIm9wZXJhbmRUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyMTU6NzEtMjE1Ojc2IiwNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7dXJuOmhsNy1vcmc6ZWxtLXR5cGVzOnIxfVN0cmluZyIsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgfSBdDQogICAgICAgICB9LCB7DQogICAgICAgICAgICAibG9jYXRvciIgOiAiMjI1OjEtMjI2OjU2IiwNCiAgICAgICAgICAgICJuYW1lIiA6ICJNb2RpZmllckV4dGVuc2lvbiIsDQogICAgICAgICAgICAiY29udGV4dCIgOiAiUGF0aWVudCIsDQogICAgICAgICAgICAiYWNjZXNzTGV2ZWwiIDogIlB1YmxpYyIsDQogICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25EZWYiLA0KICAgICAgICAgICAgImFubm90YXRpb24iIDogWyB7DQogICAgICAgICAgICAgICAidHlwZSIgOiAiQW5ub3RhdGlvbiIsDQogICAgICAgICAgICAgICAidCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJkZXNjcmlwdGlvbiIsDQogICAgICAgICAgICAgICAgICAidmFsdWUiIDogIlJldHVybnMgdGhlIHNpbmdsZSBtb2RpZmllciBleHRlbnNpb24gKGlmIHByZXNlbnQpIG9uIHRoZSBnaXZlbiByZXNvdXJjZSB3aXRoIHRoZSBzcGVjaWZpZWQgdXJsLiINCiAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjb21tZW50IiwNCiAgICAgICAgICAgICAgICAgICJ2YWx1ZSIgOiAiVGhpcyBmdW5jdGlvbiB1c2VzIHNpbmdsZXRvbiBmcm9tIHRvIGVuc3VyZSB0aGF0IGEgcnVuLXRpbWUgZXhjZXB0aW9uIGlzIHRocm93biBpZiB0aGVyZVxuaXMgbW9yZSB0aGFuIG9uZSBleHRlbnNpb24gb24gdGhlIGdpdmVuIHJlc291cmNlIHdpdGggdGhlIHNwZWNpZmllZCB1cmwuIg0KICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICB9IF0sDQogICAgICAgICAgICAiZXhwcmVzc2lvbiIgOiB7DQogICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjI2OjMtMjI2OjU2IiwNCiAgICAgICAgICAgICAgICJ0eXBlIiA6ICJTaW5nbGV0b25Gcm9tIiwNCiAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyMjY6MTgtMjI2OjU2IiwNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJNb2RpZmllckV4dGVuc2lvbnMiLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjIyNjozNy0yMjY6NTAiLA0KICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImRvbWFpblJlc291cmNlIiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjIyNjo1My0yMjY6NTUiLA0KICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogInVybCIsDQogICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgIm5hbWUiIDogImRvbWFpblJlc291cmNlIiwNCiAgICAgICAgICAgICAgICJvcGVyYW5kVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjI1OjUwLTIyNTo2MyIsDQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9RG9tYWluUmVzb3VyY2UiLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJ1cmwiLA0KICAgICAgICAgICAgICAgIm9wZXJhbmRUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyMjU6NzAtMjI1Ojc1IiwNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7dXJuOmhsNy1vcmc6ZWxtLXR5cGVzOnIxfVN0cmluZyIsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgfSBdDQogICAgICAgICB9LCB7DQogICAgICAgICAgICAibG9jYXRvciIgOiAiMjMzOjEtMjM2OjEwIiwNCiAgICAgICAgICAgICJuYW1lIiA6ICJNb2RpZmllckV4dGVuc2lvbnMiLA0KICAgICAgICAgICAgImNvbnRleHQiIDogIlBhdGllbnQiLA0KICAgICAgICAgICAgImFjY2Vzc0xldmVsIiA6ICJQdWJsaWMiLA0KICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uRGVmIiwNCiAgICAgICAgICAgICJhbm5vdGF0aW9uIiA6IFsgew0KICAgICAgICAgICAgICAgInR5cGUiIDogIkFubm90YXRpb24iLA0KICAgICAgICAgICAgICAgInQiIDogWyB7DQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAiZGVzY3JpcHRpb24iLA0KICAgICAgICAgICAgICAgICAgInZhbHVlIiA6ICJSZXR1cm5zIGFueSBtb2RpZmllciBleHRlbnNpb25zIGRlZmluZWQgb24gdGhlIGdpdmVuIGVsZW1lbnQgd2l0aCB0aGUgc3BlY2lmaWVkIHVybC4iDQogICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY29tbWVudCIsDQogICAgICAgICAgICAgICAgICAidmFsdWUiIDogIk5PVEU6IEV4dGVuc2lvbnMgYXJlIG5vdCB0aGUgcHJlZmVycmVkIGFwcHJvYWNoLCBidXQgYXJlIHVzZWQgYXMgYSB3YXkgdG8gYWNjZXNzXG5jb250ZW50IHRoYXQgaXMgZGVmaW5lZCBieSBleHRlbnNpb25zIGJ1dCBub3QgeWV0IHN1cmZhY2VkIGluIHRoZSBDUUwgbW9kZWwgaW5mby4iDQogICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgIH0gXSwNCiAgICAgICAgICAgICJleHByZXNzaW9uIiA6IHsNCiAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyMzQ6My0yMzY6MTAiLA0KICAgICAgICAgICAgICAgInR5cGUiIDogIlF1ZXJ5IiwNCiAgICAgICAgICAgICAgICJzb3VyY2UiIDogWyB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjM0OjMtMjM0OjI5IiwNCiAgICAgICAgICAgICAgICAgICJhbGlhcyIgOiAiRSIsDQogICAgICAgICAgICAgICAgICAiZXhwcmVzc2lvbiIgOiB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjM0OjMtMjM0OjI3IiwNCiAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJtb2RpZmllckV4dGVuc2lvbiIsDQogICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiZWxlbWVudCIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgIH0gXSwNCiAgICAgICAgICAgICAgICJyZWxhdGlvbnNoaXAiIDogWyBdLA0KICAgICAgICAgICAgICAgIndoZXJlIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyMzU6NC0yMzU6MjAiLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkVxdWFsIiwNCiAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvU3RyaW5nIiwNCiAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjIzNToxMC0yMzU6MTQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogInVybCIsDQogICAgICAgICAgICAgICAgICAgICAgICAic2NvcGUiIDogIkUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5Ig0KICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjM1OjE4LTIzNToyMCIsDQogICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAidXJsIiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgInJldHVybiIgOiB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjM2OjMtMjM2OjEwIiwNCiAgICAgICAgICAgICAgICAgICJleHByZXNzaW9uIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyMzY6MTAiLA0KICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIkUiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFsaWFzUmVmIg0KICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgIm5hbWUiIDogImVsZW1lbnQiLA0KICAgICAgICAgICAgICAgIm9wZXJhbmRUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyMzM6NDQtMjMzOjU4IiwNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1CYWNrYm9uZUVsZW1lbnQiLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJ1cmwiLA0KICAgICAgICAgICAgICAgIm9wZXJhbmRUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyMzM6NjUtMjMzOjcwIiwNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7dXJuOmhsNy1vcmc6ZWxtLXR5cGVzOnIxfVN0cmluZyIsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgfSBdDQogICAgICAgICB9LCB7DQogICAgICAgICAgICAibG9jYXRvciIgOiAiMjQzOjEtMjQ0OjQ5IiwNCiAgICAgICAgICAgICJuYW1lIiA6ICJNb2RpZmllckV4dGVuc2lvbiIsDQogICAgICAgICAgICAiY29udGV4dCIgOiAiUGF0aWVudCIsDQogICAgICAgICAgICAiYWNjZXNzTGV2ZWwiIDogIlB1YmxpYyIsDQogICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25EZWYiLA0KICAgICAgICAgICAgImFubm90YXRpb24iIDogWyB7DQogICAgICAgICAgICAgICAidHlwZSIgOiAiQW5ub3RhdGlvbiIsDQogICAgICAgICAgICAgICAidCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJkZXNjcmlwdGlvbiIsDQogICAgICAgICAgICAgICAgICAidmFsdWUiIDogIlJldHVybnMgdGhlIHNpbmdsZSBtb2RpZmllciBleHRlbnNpb24gKGlmIHByZXNlbnQpIG9uIHRoZSBnaXZlbiBlbGVtZW50IHdpdGggdGhlIHNwZWNpZmllZCB1cmwuIg0KICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNvbW1lbnQiLA0KICAgICAgICAgICAgICAgICAgInZhbHVlIiA6ICJUaGlzIGZ1bmN0aW9uIHVzZXMgc2luZ2xldG9uIGZyb20gdG8gZW5zdXJlIHRoYXQgYSBydW4tdGltZSBleGNlcHRpb24gaXMgdGhyb3duIGlmIHRoZXJlXG5pcyBtb3JlIHRoYW4gb25lIGV4dGVuc2lvbiBvbiB0aGUgZ2l2ZW4gcmVzb3VyY2Ugd2l0aCB0aGUgc3BlY2lmaWVkIHVybC4iDQogICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgIH0gXSwNCiAgICAgICAgICAgICJleHByZXNzaW9uIiA6IHsNCiAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyNDQ6My0yNDQ6NDkiLA0KICAgICAgICAgICAgICAgInR5cGUiIDogIlNpbmdsZXRvbkZyb20iLA0KICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjI0NDoxOC0yNDQ6NDkiLA0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIk1vZGlmaWVyRXh0ZW5zaW9ucyIsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjQ0OjM3LTI0NDo0MyIsDQogICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiZWxlbWVudCIsDQogICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyNDQ6NDYtMjQ0OjQ4IiwNCiAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ1cmwiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0sDQogICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJlbGVtZW50IiwNCiAgICAgICAgICAgICAgICJvcGVyYW5kVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjQzOjQzLTI0Mzo1NyIsDQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9QmFja2JvbmVFbGVtZW50IiwNCiAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICB9DQogICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAibmFtZSIgOiAidXJsIiwNCiAgICAgICAgICAgICAgICJvcGVyYW5kVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjQzOjY0LTI0Mzo2OSIsDQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAie3VybjpobDctb3JnOmVsbS10eXBlczpyMX1TdHJpbmciLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0gXQ0KICAgICAgICAgfSwgew0KICAgICAgICAgICAgImxvY2F0b3IiIDogIjI1MToxLTI1NDoxMCIsDQogICAgICAgICAgICAibmFtZSIgOiAiQmFzZUV4dGVuc2lvbnMiLA0KICAgICAgICAgICAgImNvbnRleHQiIDogIlBhdGllbnQiLA0KICAgICAgICAgICAgImFjY2Vzc0xldmVsIiA6ICJQdWJsaWMiLA0KICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uRGVmIiwNCiAgICAgICAgICAgICJhbm5vdGF0aW9uIiA6IFsgew0KICAgICAgICAgICAgICAgInR5cGUiIDogIkFubm90YXRpb24iLA0KICAgICAgICAgICAgICAgInQiIDogWyB7DQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAiZGVzY3JpcHRpb24iLA0KICAgICAgICAgICAgICAgICAgInZhbHVlIiA6ICJSZXR1cm5zIGFueSBiYXNlLUZISVIgZXh0ZW5zaW9ucyBkZWZpbmVkIG9uIHRoZSBnaXZlbiByZXNvdXJjZSB3aXRoIHRoZSBzcGVjaWZpZWQgaWQuIg0KICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNvbW1lbnQiLA0KICAgICAgICAgICAgICAgICAgInZhbHVlIiA6ICJOT1RFOiBFeHRlbnNpb25zIGFyZSBub3QgdGhlIHByZWZlcnJlZCBhcHByb2FjaCwgYnV0IGFyZSB1c2VkIGFzIGEgd2F5IHRvIGFjY2Vzc1xuY29udGVudCB0aGF0IGlzIGRlZmluZWQgYnkgZXh0ZW5zaW9ucyBidXQgbm90IHlldCBzdXJmYWNlZCBpbiB0aGUgQ1FMIG1vZGVsIGluZm8uIg0KICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICB9IF0sDQogICAgICAgICAgICAiZXhwcmVzc2lvbiIgOiB7DQogICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjUyOjMtMjU0OjEwIiwNCiAgICAgICAgICAgICAgICJ0eXBlIiA6ICJRdWVyeSIsDQogICAgICAgICAgICAgICAic291cmNlIiA6IFsgew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjI1MjozLTI1MjoyOCIsDQogICAgICAgICAgICAgICAgICAiYWxpYXMiIDogIkUiLA0KICAgICAgICAgICAgICAgICAgImV4cHJlc3Npb24iIDogew0KICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjI1MjozLTI1MjoyNiIsDQogICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiZXh0ZW5zaW9uIiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJkb21haW5SZXNvdXJjZSIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgIH0gXSwNCiAgICAgICAgICAgICAgICJyZWxhdGlvbnNoaXAiIDogWyBdLA0KICAgICAgICAgICAgICAgIndoZXJlIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyNTM6NC0yNTM6NjYiLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkVxdWFsIiwNCiAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIlRvU3RyaW5nIiwNCiAgICAgICAgICAgICAgICAgICAgICJsaWJyYXJ5TmFtZSIgOiAiRkhJUkhlbHBlcnMiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjI1MzoxMC0yNTM6MTQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogInVybCIsDQogICAgICAgICAgICAgICAgICAgICAgICAic2NvcGUiIDogIkUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIlByb3BlcnR5Ig0KICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjUzOjE4LTI1Mzo2NiIsDQogICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQ29uY2F0ZW5hdGUiLA0KICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjUzOjE5LTI1Mzo2MCIsDQogICAgICAgICAgICAgICAgICAgICAgICAidmFsdWVUeXBlIiA6ICJ7dXJuOmhsNy1vcmc6ZWxtLXR5cGVzOnIxfVN0cmluZyIsDQogICAgICAgICAgICAgICAgICAgICAgICAidmFsdWUiIDogImh0dHA6Ly9obDcub3JnL2ZoaXIvU3RydWN0dXJlRGVmaW5pdGlvbi8iLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkxpdGVyYWwiDQogICAgICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjUzOjY0LTI1Mzo2NSIsDQogICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiaWQiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICAgICJyZXR1cm4iIDogew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjI1NDozLTI1NDoxMCIsDQogICAgICAgICAgICAgICAgICAiZXhwcmVzc2lvbiIgOiB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjU0OjEwIiwNCiAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJFIiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBbGlhc1JlZiINCiAgICAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0sDQogICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJkb21haW5SZXNvdXJjZSIsDQogICAgICAgICAgICAgICAib3BlcmFuZFR5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjI1MTo0Ny0yNTE6NjAiLA0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIntodHRwOi8vaGw3Lm9yZy9maGlyfURvbWFpblJlc291cmNlIiwNCiAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICB9DQogICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAibmFtZSIgOiAiaWQiLA0KICAgICAgICAgICAgICAgIm9wZXJhbmRUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyNTE6NjYtMjUxOjcxIiwNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7dXJuOmhsNy1vcmc6ZWxtLXR5cGVzOnIxfVN0cmluZyIsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgfSBdDQogICAgICAgICB9LCB7DQogICAgICAgICAgICAibG9jYXRvciIgOiAiMjYxOjEtMjYyOjUxIiwNCiAgICAgICAgICAgICJuYW1lIiA6ICJCYXNlRXh0ZW5zaW9uIiwNCiAgICAgICAgICAgICJjb250ZXh0IiA6ICJQYXRpZW50IiwNCiAgICAgICAgICAgICJhY2Nlc3NMZXZlbCIgOiAiUHVibGljIiwNCiAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvbkRlZiIsDQogICAgICAgICAgICAiYW5ub3RhdGlvbiIgOiBbIHsNCiAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBbm5vdGF0aW9uIiwNCiAgICAgICAgICAgICAgICJ0IiA6IFsgew0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImRlc2NyaXB0aW9uIiwNCiAgICAgICAgICAgICAgICAgICJ2YWx1ZSIgOiAiUmV0dXJucyB0aGUgc2luZ2xlIGJhc2UtRkhJUiBleHRlbnNpb24gKGlmIHByZXNlbnQpIG9uIHRoZSBnaXZlbiByZXNvdXJjZSB3aXRoIHRoZSBzcGVjaWZpZWQgaWQuIg0KICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNvbW1lbnQiLA0KICAgICAgICAgICAgICAgICAgInZhbHVlIiA6ICJUaGlzIGZ1bmN0aW9uIHVzZXMgc2luZ2xldG9uIGZyb20gdG8gZW5zdXJlIHRoYXQgYSBydW4tdGltZSBleGNlcHRpb24gaXMgdGhyb3duIGlmIHRoZXJlXG5pcyBtb3JlIHRoYW4gb25lIGV4dGVuc2lvbiBvbiB0aGUgZ2l2ZW4gcmVzb3VyY2Ugd2l0aCB0aGUgc3BlY2lmaWVkIHVybC4iDQogICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgIH0gXSwNCiAgICAgICAgICAgICJleHByZXNzaW9uIiA6IHsNCiAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyNjI6My0yNjI6NTEiLA0KICAgICAgICAgICAgICAgInR5cGUiIDogIlNpbmdsZXRvbkZyb20iLA0KICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjI2MjoxOC0yNjI6NTEiLA0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIkJhc2VFeHRlbnNpb25zIiwNCiAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyNjI6MzMtMjYyOjQ2IiwNCiAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJkb21haW5SZXNvdXJjZSIsDQogICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyNjI6NDktMjYyOjUwIiwNCiAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJpZCIsDQogICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgIm5hbWUiIDogImRvbWFpblJlc291cmNlIiwNCiAgICAgICAgICAgICAgICJvcGVyYW5kVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjYxOjQ2LTI2MTo1OSIsDQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9RG9tYWluUmVzb3VyY2UiLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJpZCIsDQogICAgICAgICAgICAgICAib3BlcmFuZFR5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjI2MTo2NS0yNjE6NzAiLA0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogInt1cm46aGw3LW9yZzplbG0tdHlwZXM6cjF9U3RyaW5nIiwNCiAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICB9DQogICAgICAgICAgICB9IF0NCiAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyNjk6MS0yNzI6MTAiLA0KICAgICAgICAgICAgIm5hbWUiIDogIkJhc2VFeHRlbnNpb25zIiwNCiAgICAgICAgICAgICJjb250ZXh0IiA6ICJQYXRpZW50IiwNCiAgICAgICAgICAgICJhY2Nlc3NMZXZlbCIgOiAiUHVibGljIiwNCiAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvbkRlZiIsDQogICAgICAgICAgICAiYW5ub3RhdGlvbiIgOiBbIHsNCiAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBbm5vdGF0aW9uIiwNCiAgICAgICAgICAgICAgICJ0IiA6IFsgew0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImRlc2NyaXB0aW9uIiwNCiAgICAgICAgICAgICAgICAgICJ2YWx1ZSIgOiAiUmV0dXJucyBhbnkgYmFzZS1GSElSIGV4dGVuc2lvbnMgZGVmaW5lZCBvbiB0aGUgZ2l2ZW4gZWxlbWVudCB3aXRoIHRoZSBzcGVjaWZpZWQgaWQuIg0KICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNvbW1lbnQiLA0KICAgICAgICAgICAgICAgICAgInZhbHVlIiA6ICJOT1RFOiBFeHRlbnNpb25zIGFyZSBub3QgdGhlIHByZWZlcnJlZCBhcHByb2FjaCwgYnV0IGFyZSB1c2VkIGFzIGEgd2F5IHRvIGFjY2Vzc1xuY29udGVudCB0aGF0IGlzIGRlZmluZWQgYnkgZXh0ZW5zaW9ucyBidXQgbm90IHlldCBzdXJmYWNlZCBpbiB0aGUgQ1FMIG1vZGVsIGluZm8uIg0KICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICB9IF0sDQogICAgICAgICAgICAiZXhwcmVzc2lvbiIgOiB7DQogICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjcwOjMtMjcyOjEwIiwNCiAgICAgICAgICAgICAgICJ0eXBlIiA6ICJRdWVyeSIsDQogICAgICAgICAgICAgICAic291cmNlIiA6IFsgew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjI3MDozLTI3MDoyMSIsDQogICAgICAgICAgICAgICAgICAiYWxpYXMiIDogIkUiLA0KICAgICAgICAgICAgICAgICAgImV4cHJlc3Npb24iIDogew0KICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjI3MDozLTI3MDoxOSIsDQogICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAiZXh0ZW5zaW9uIiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJlbGVtZW50IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgfSBdLA0KICAgICAgICAgICAgICAgInJlbGF0aW9uc2hpcCIgOiBbIF0sDQogICAgICAgICAgICAgICAid2hlcmUiIDogew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjI3MTo0LTI3MTo2NiIsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRXF1YWwiLA0KICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9TdHJpbmciLA0KICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjcxOjEwLTI3MToxNCIsDQogICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAidXJsIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJzY29wZSIgOiAiRSIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiDQogICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyNzE6MTgtMjcxOjY2IiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJDb25jYXRlbmF0ZSIsDQogICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyNzE6MTktMjcxOjYwIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ2YWx1ZVR5cGUiIDogInt1cm46aGw3LW9yZzplbG0tdHlwZXM6cjF9U3RyaW5nIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ2YWx1ZSIgOiAiaHR0cDovL2hsNy5vcmcvZmhpci9TdHJ1Y3R1cmVEZWZpbml0aW9uLyIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTGl0ZXJhbCINCiAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyNzE6NjQtMjcxOjY1IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJpZCIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgInJldHVybiIgOiB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjcyOjMtMjcyOjEwIiwNCiAgICAgICAgICAgICAgICAgICJleHByZXNzaW9uIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyNzI6MTAiLA0KICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIkUiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFsaWFzUmVmIg0KICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgIm5hbWUiIDogImVsZW1lbnQiLA0KICAgICAgICAgICAgICAgIm9wZXJhbmRUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyNjk6NDAtMjY5OjQ2IiwNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1FbGVtZW50IiwNCiAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICB9DQogICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAibmFtZSIgOiAiaWQiLA0KICAgICAgICAgICAgICAgIm9wZXJhbmRUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyNjk6NTItMjY5OjU3IiwNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7dXJuOmhsNy1vcmc6ZWxtLXR5cGVzOnIxfVN0cmluZyIsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgfSBdDQogICAgICAgICB9LCB7DQogICAgICAgICAgICAibG9jYXRvciIgOiAiMjc5OjEtMjgwOjQ0IiwNCiAgICAgICAgICAgICJuYW1lIiA6ICJCYXNlRXh0ZW5zaW9uIiwNCiAgICAgICAgICAgICJjb250ZXh0IiA6ICJQYXRpZW50IiwNCiAgICAgICAgICAgICJhY2Nlc3NMZXZlbCIgOiAiUHVibGljIiwNCiAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvbkRlZiIsDQogICAgICAgICAgICAiYW5ub3RhdGlvbiIgOiBbIHsNCiAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBbm5vdGF0aW9uIiwNCiAgICAgICAgICAgICAgICJ0IiA6IFsgew0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImRlc2NyaXB0aW9uIiwNCiAgICAgICAgICAgICAgICAgICJ2YWx1ZSIgOiAiUmV0dXJucyB0aGUgc2luZ2xlIGJhc2UtRkhJUiBleHRlbnNpb24gKGlmIHByZXNlbnQpIG9uIHRoZSBnaXZlbiBlbGVtZW50IHdpdGggdGhlIHNwZWNpZmllZCBpZC4iDQogICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY29tbWVudCIsDQogICAgICAgICAgICAgICAgICAidmFsdWUiIDogIlRoaXMgZnVuY3Rpb24gdXNlcyBzaW5nbGV0b24gZnJvbSB0byBlbnN1cmUgdGhhdCBhIHJ1bi10aW1lIGV4Y2VwdGlvbiBpcyB0aHJvd24gaWYgdGhlcmVcbmlzIG1vcmUgdGhhbiBvbmUgZXh0ZW5zaW9uIG9uIHRoZSBnaXZlbiByZXNvdXJjZSB3aXRoIHRoZSBzcGVjaWZpZWQgdXJsLiINCiAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgfSBdLA0KICAgICAgICAgICAgImV4cHJlc3Npb24iIDogew0KICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjI4MDozLTI4MDo0NCIsDQogICAgICAgICAgICAgICAidHlwZSIgOiAiU2luZ2xldG9uRnJvbSIsDQogICAgICAgICAgICAgICAib3BlcmFuZCIgOiB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjgwOjE4LTI4MDo0NCIsDQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAiQmFzZUV4dGVuc2lvbnMiLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjI4MDozMy0yODA6MzkiLA0KICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImVsZW1lbnQiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjgwOjQyLTI4MDo0MyIsDQogICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiaWQiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0sDQogICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJlbGVtZW50IiwNCiAgICAgICAgICAgICAgICJvcGVyYW5kVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjc5OjM5LTI3OTo0NSIsDQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9RWxlbWVudCIsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgIm5hbWUiIDogImlkIiwNCiAgICAgICAgICAgICAgICJvcGVyYW5kVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjc5OjUxLTI3OTo1NiIsDQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAie3VybjpobDctb3JnOmVsbS10eXBlczpyMX1TdHJpbmciLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0gXQ0KICAgICAgICAgfSwgew0KICAgICAgICAgICAgImxvY2F0b3IiIDogIjI4NzoxLTI5MDoxMCIsDQogICAgICAgICAgICAibmFtZSIgOiAiQmFzZU1vZGlmaWVyRXh0ZW5zaW9ucyIsDQogICAgICAgICAgICAiY29udGV4dCIgOiAiUGF0aWVudCIsDQogICAgICAgICAgICAiYWNjZXNzTGV2ZWwiIDogIlB1YmxpYyIsDQogICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25EZWYiLA0KICAgICAgICAgICAgImFubm90YXRpb24iIDogWyB7DQogICAgICAgICAgICAgICAidHlwZSIgOiAiQW5ub3RhdGlvbiIsDQogICAgICAgICAgICAgICAidCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJkZXNjcmlwdGlvbiIsDQogICAgICAgICAgICAgICAgICAidmFsdWUiIDogIlJldHVybnMgYW55IGJhc2UtRkhJUiBtb2RpZmllciBleHRlbnNpb25zIGRlZmluZWQgb24gdGhlIGdpdmVuIHJlc291cmNlIHdpdGggdGhlIHNwZWNpZmllZCBpZC4iDQogICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAiY29tbWVudCIsDQogICAgICAgICAgICAgICAgICAidmFsdWUiIDogIk5PVEU6IEV4dGVuc2lvbnMgYXJlIG5vdCB0aGUgcHJlZmVycmVkIGFwcHJvYWNoLCBidXQgYXJlIHVzZWQgYXMgYSB3YXkgdG8gYWNjZXNzXG5jb250ZW50IHRoYXQgaXMgZGVmaW5lZCBieSBleHRlbnNpb25zIGJ1dCBub3QgeWV0IHN1cmZhY2VkIGluIHRoZSBDUUwgbW9kZWwgaW5mby4iDQogICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgIH0gXSwNCiAgICAgICAgICAgICJleHByZXNzaW9uIiA6IHsNCiAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyODg6My0yOTA6MTAiLA0KICAgICAgICAgICAgICAgInR5cGUiIDogIlF1ZXJ5IiwNCiAgICAgICAgICAgICAgICJzb3VyY2UiIDogWyB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjg4OjMtMjg4OjM2IiwNCiAgICAgICAgICAgICAgICAgICJhbGlhcyIgOiAiRSIsDQogICAgICAgICAgICAgICAgICAiZXhwcmVzc2lvbiIgOiB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjg4OjMtMjg4OjM0IiwNCiAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJtb2RpZmllckV4dGVuc2lvbiIsDQogICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiLA0KICAgICAgICAgICAgICAgICAgICAgInNvdXJjZSIgOiB7DQogICAgICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiZG9tYWluUmVzb3VyY2UiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICB9IF0sDQogICAgICAgICAgICAgICAicmVsYXRpb25zaGlwIiA6IFsgXSwNCiAgICAgICAgICAgICAgICJ3aGVyZSIgOiB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjg5OjQtMjg5OjY2IiwNCiAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJFcXVhbCIsDQogICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJUb1N0cmluZyIsDQogICAgICAgICAgICAgICAgICAgICAibGlicmFyeU5hbWUiIDogIkZISVJIZWxwZXJzIiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvblJlZiIsDQogICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyODk6MTAtMjg5OjE0IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJwYXRoIiA6ICJ1cmwiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInNjb3BlIiA6ICJFIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSINCiAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjI4OToxOC0yODk6NjYiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkNvbmNhdGVuYXRlIiwNCiAgICAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjI4OToxOS0yODk6NjAiLA0KICAgICAgICAgICAgICAgICAgICAgICAgInZhbHVlVHlwZSIgOiAie3VybjpobDctb3JnOmVsbS10eXBlczpyMX1TdHJpbmciLA0KICAgICAgICAgICAgICAgICAgICAgICAgInZhbHVlIiA6ICJodHRwOi8vaGw3Lm9yZy9maGlyL1N0cnVjdHVyZURlZmluaXRpb24vIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJMaXRlcmFsIg0KICAgICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjI4OTo2NC0yODk6NjUiLA0KICAgICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImlkIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgIH0sDQogICAgICAgICAgICAgICAicmV0dXJuIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyOTA6My0yOTA6MTAiLA0KICAgICAgICAgICAgICAgICAgImV4cHJlc3Npb24iIDogew0KICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjI5MDoxMCIsDQogICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiRSIsDQogICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiQWxpYXNSZWYiDQogICAgICAgICAgICAgICAgICB9DQogICAgICAgICAgICAgICB9DQogICAgICAgICAgICB9LA0KICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAibmFtZSIgOiAiZG9tYWluUmVzb3VyY2UiLA0KICAgICAgICAgICAgICAgIm9wZXJhbmRUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyODc6NTUtMjg3OjY4IiwNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1Eb21haW5SZXNvdXJjZSIsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgIm5hbWUiIDogImlkIiwNCiAgICAgICAgICAgICAgICJvcGVyYW5kVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjg3Ojc0LTI4Nzo3OSIsDQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAie3VybjpobDctb3JnOmVsbS10eXBlczpyMX1TdHJpbmciLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0gXQ0KICAgICAgICAgfSwgew0KICAgICAgICAgICAgImxvY2F0b3IiIDogIjI5NzoxLTI5ODo1OSIsDQogICAgICAgICAgICAibmFtZSIgOiAiQmFzZU1vZGlmaWVyRXh0ZW5zaW9uIiwNCiAgICAgICAgICAgICJjb250ZXh0IiA6ICJQYXRpZW50IiwNCiAgICAgICAgICAgICJhY2Nlc3NMZXZlbCIgOiAiUHVibGljIiwNCiAgICAgICAgICAgICJ0eXBlIiA6ICJGdW5jdGlvbkRlZiIsDQogICAgICAgICAgICAiYW5ub3RhdGlvbiIgOiBbIHsNCiAgICAgICAgICAgICAgICJ0eXBlIiA6ICJBbm5vdGF0aW9uIiwNCiAgICAgICAgICAgICAgICJ0IiA6IFsgew0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImRlc2NyaXB0aW9uIiwNCiAgICAgICAgICAgICAgICAgICJ2YWx1ZSIgOiAiUmV0dXJucyB0aGUgc2luZ2xlIGJhc2UtRkhJUiBtb2RpZmllciBleHRlbnNpb24gKGlmIHByZXNlbnQpIG9uIHRoZSBnaXZlbiByZXNvdXJjZSB3aXRoIHRoZSBzcGVjaWZpZWQgaWQuIg0KICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNvbW1lbnQiLA0KICAgICAgICAgICAgICAgICAgInZhbHVlIiA6ICJUaGlzIGZ1bmN0aW9uIHVzZXMgc2luZ2xldG9uIGZyb20gdG8gZW5zdXJlIHRoYXQgYSBydW4tdGltZSBleGNlcHRpb24gaXMgdGhyb3duIGlmIHRoZXJlXG5pcyBtb3JlIHRoYW4gb25lIGV4dGVuc2lvbiBvbiB0aGUgZ2l2ZW4gcmVzb3VyY2Ugd2l0aCB0aGUgc3BlY2lmaWVkIHVybC4iDQogICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgIH0gXSwNCiAgICAgICAgICAgICJleHByZXNzaW9uIiA6IHsNCiAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyOTg6My0yOTg6NTkiLA0KICAgICAgICAgICAgICAgInR5cGUiIDogIlNpbmdsZXRvbkZyb20iLA0KICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjI5ODoxOC0yOTg6NTkiLA0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIkJhc2VNb2RpZmllckV4dGVuc2lvbnMiLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjI5ODo0MS0yOTg6NTQiLA0KICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImRvbWFpblJlc291cmNlIiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjI5ODo1Ny0yOTg6NTgiLA0KICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImlkIiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICB9DQogICAgICAgICAgICB9LA0KICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAibmFtZSIgOiAiZG9tYWluUmVzb3VyY2UiLA0KICAgICAgICAgICAgICAgIm9wZXJhbmRUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIyOTc6NTQtMjk3OjY3IiwNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1Eb21haW5SZXNvdXJjZSIsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgIm5hbWUiIDogImlkIiwNCiAgICAgICAgICAgICAgICJvcGVyYW5kVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMjk3OjczLTI5Nzo3OCIsDQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAie3VybjpobDctb3JnOmVsbS10eXBlczpyMX1TdHJpbmciLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0gXQ0KICAgICAgICAgfSwgew0KICAgICAgICAgICAgImxvY2F0b3IiIDogIjMwNToxLTMwODoxMCIsDQogICAgICAgICAgICAibmFtZSIgOiAiQmFzZU1vZGlmaWVyRXh0ZW5zaW9ucyIsDQogICAgICAgICAgICAiY29udGV4dCIgOiAiUGF0aWVudCIsDQogICAgICAgICAgICAiYWNjZXNzTGV2ZWwiIDogIlB1YmxpYyIsDQogICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25EZWYiLA0KICAgICAgICAgICAgImFubm90YXRpb24iIDogWyB7DQogICAgICAgICAgICAgICAidHlwZSIgOiAiQW5ub3RhdGlvbiIsDQogICAgICAgICAgICAgICAidCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJkZXNjcmlwdGlvbiIsDQogICAgICAgICAgICAgICAgICAidmFsdWUiIDogIlJldHVybnMgYW55IGJhc2UtRkhJUiBtb2RpZmllciBleHRlbnNpb25zIGRlZmluZWQgb24gdGhlIGdpdmVuIGVsZW1lbnQgd2l0aCB0aGUgc3BlY2lmaWVkIGlkLiINCiAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJjb21tZW50IiwNCiAgICAgICAgICAgICAgICAgICJ2YWx1ZSIgOiAiTk9URTogRXh0ZW5zaW9ucyBhcmUgbm90IHRoZSBwcmVmZXJyZWQgYXBwcm9hY2gsIGJ1dCBhcmUgdXNlZCBhcyBhIHdheSB0byBhY2Nlc3NcbmNvbnRlbnQgdGhhdCBpcyBkZWZpbmVkIGJ5IGV4dGVuc2lvbnMgYnV0IG5vdCB5ZXQgc3VyZmFjZWQgaW4gdGhlIENRTCBtb2RlbCBpbmZvLiINCiAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgfSBdLA0KICAgICAgICAgICAgImV4cHJlc3Npb24iIDogew0KICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjMwNjozLTMwODoxMCIsDQogICAgICAgICAgICAgICAidHlwZSIgOiAiUXVlcnkiLA0KICAgICAgICAgICAgICAgInNvdXJjZSIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIzMDY6My0zMDY6MjkiLA0KICAgICAgICAgICAgICAgICAgImFsaWFzIiA6ICJFIiwNCiAgICAgICAgICAgICAgICAgICJleHByZXNzaW9uIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIzMDY6My0zMDY6MjciLA0KICAgICAgICAgICAgICAgICAgICAgInBhdGgiIDogIm1vZGlmaWVyRXh0ZW5zaW9uIiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJQcm9wZXJ0eSIsDQogICAgICAgICAgICAgICAgICAgICAic291cmNlIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJlbGVtZW50IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJPcGVyYW5kUmVmIg0KICAgICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgfSBdLA0KICAgICAgICAgICAgICAgInJlbGF0aW9uc2hpcCIgOiBbIF0sDQogICAgICAgICAgICAgICAid2hlcmUiIDogew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjMwNzo0LTMwNzo2NiIsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRXF1YWwiLA0KICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiVG9TdHJpbmciLA0KICAgICAgICAgICAgICAgICAgICAgImxpYnJhcnlOYW1lIiA6ICJGSElSSGVscGVycyIsDQogICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25SZWYiLA0KICAgICAgICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogWyB7DQogICAgICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMzA3OjEwLTMwNzoxNCIsDQogICAgICAgICAgICAgICAgICAgICAgICAicGF0aCIgOiAidXJsIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJzY29wZSIgOiAiRSIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiUHJvcGVydHkiDQogICAgICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIzMDc6MTgtMzA3OjY2IiwNCiAgICAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJDb25jYXRlbmF0ZSIsDQogICAgICAgICAgICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIzMDc6MTktMzA3OjYwIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ2YWx1ZVR5cGUiIDogInt1cm46aGw3LW9yZzplbG0tdHlwZXM6cjF9U3RyaW5nIiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJ2YWx1ZSIgOiAiaHR0cDovL2hsNy5vcmcvZmhpci9TdHJ1Y3R1cmVEZWZpbml0aW9uLyIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTGl0ZXJhbCINCiAgICAgICAgICAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIzMDc6NjQtMzA3OjY1IiwNCiAgICAgICAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJpZCIsDQogICAgICAgICAgICAgICAgICAgICAgICAidHlwZSIgOiAiT3BlcmFuZFJlZiINCiAgICAgICAgICAgICAgICAgICAgIH0gXQ0KICAgICAgICAgICAgICAgICAgfSBdDQogICAgICAgICAgICAgICB9LA0KICAgICAgICAgICAgICAgInJldHVybiIgOiB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMzA4OjMtMzA4OjEwIiwNCiAgICAgICAgICAgICAgICAgICJleHByZXNzaW9uIiA6IHsNCiAgICAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIzMDg6MTAiLA0KICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIkUiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkFsaWFzUmVmIg0KICAgICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgfSwNCiAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgIm5hbWUiIDogImVsZW1lbnQiLA0KICAgICAgICAgICAgICAgIm9wZXJhbmRUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIzMDU6NDgtMzA1OjYyIiwNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7aHR0cDovL2hsNy5vcmcvZmhpcn1CYWNrYm9uZUVsZW1lbnQiLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk5hbWVkVHlwZVNwZWNpZmllciINCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJpZCIsDQogICAgICAgICAgICAgICAib3BlcmFuZFR5cGVTcGVjaWZpZXIiIDogew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjMwNTo2OC0zMDU6NzMiLA0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogInt1cm46aGw3LW9yZzplbG0tdHlwZXM6cjF9U3RyaW5nIiwNCiAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICB9DQogICAgICAgICAgICB9IF0NCiAgICAgICAgIH0sIHsNCiAgICAgICAgICAgICJsb2NhdG9yIiA6ICIzMTU6MS0zMTY6NTIiLA0KICAgICAgICAgICAgIm5hbWUiIDogIkJhc2VNb2RpZmllckV4dGVuc2lvbiIsDQogICAgICAgICAgICAiY29udGV4dCIgOiAiUGF0aWVudCIsDQogICAgICAgICAgICAiYWNjZXNzTGV2ZWwiIDogIlB1YmxpYyIsDQogICAgICAgICAgICAidHlwZSIgOiAiRnVuY3Rpb25EZWYiLA0KICAgICAgICAgICAgImFubm90YXRpb24iIDogWyB7DQogICAgICAgICAgICAgICAidHlwZSIgOiAiQW5ub3RhdGlvbiIsDQogICAgICAgICAgICAgICAidCIgOiBbIHsNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJkZXNjcmlwdGlvbiIsDQogICAgICAgICAgICAgICAgICAidmFsdWUiIDogIlJldHVybnMgdGhlIHNpbmdsZSBiYXNlLUZISVIgZXh0ZW5zaW9uIChpZiBwcmVzZW50KSBvbiB0aGUgZ2l2ZW4gZWxlbWVudCB3aXRoIHRoZSBzcGVjaWZpZWQgaWQuIg0KICAgICAgICAgICAgICAgfSwgew0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImNvbW1lbnQiLA0KICAgICAgICAgICAgICAgICAgInZhbHVlIiA6ICJUaGlzIGZ1bmN0aW9uIHVzZXMgc2luZ2xldG9uIGZyb20gdG8gZW5zdXJlIHRoYXQgYSBydW4tdGltZSBleGNlcHRpb24gaXMgdGhyb3duIGlmIHRoZXJlXG5pcyBtb3JlIHRoYW4gb25lIGV4dGVuc2lvbiBvbiB0aGUgZ2l2ZW4gcmVzb3VyY2Ugd2l0aCB0aGUgc3BlY2lmaWVkIHVybC4iDQogICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgIH0gXSwNCiAgICAgICAgICAgICJleHByZXNzaW9uIiA6IHsNCiAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIzMTY6My0zMTY6NTIiLA0KICAgICAgICAgICAgICAgInR5cGUiIDogIlNpbmdsZXRvbkZyb20iLA0KICAgICAgICAgICAgICAgIm9wZXJhbmQiIDogew0KICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjMxNjoxOC0zMTY6NTIiLA0KICAgICAgICAgICAgICAgICAgIm5hbWUiIDogIkJhc2VNb2RpZmllckV4dGVuc2lvbnMiLA0KICAgICAgICAgICAgICAgICAgInR5cGUiIDogIkZ1bmN0aW9uUmVmIiwNCiAgICAgICAgICAgICAgICAgICJvcGVyYW5kIiA6IFsgew0KICAgICAgICAgICAgICAgICAgICAgImxvY2F0b3IiIDogIjMxNjo0MS0zMTY6NDciLA0KICAgICAgICAgICAgICAgICAgICAgIm5hbWUiIDogImVsZW1lbnQiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMzE2OjUwLTMxNjo1MSIsDQogICAgICAgICAgICAgICAgICAgICAibmFtZSIgOiAiaWQiLA0KICAgICAgICAgICAgICAgICAgICAgInR5cGUiIDogIk9wZXJhbmRSZWYiDQogICAgICAgICAgICAgICAgICB9IF0NCiAgICAgICAgICAgICAgIH0NCiAgICAgICAgICAgIH0sDQogICAgICAgICAgICAib3BlcmFuZCIgOiBbIHsNCiAgICAgICAgICAgICAgICJuYW1lIiA6ICJlbGVtZW50IiwNCiAgICAgICAgICAgICAgICJvcGVyYW5kVHlwZVNwZWNpZmllciIgOiB7DQogICAgICAgICAgICAgICAgICAibG9jYXRvciIgOiAiMzE1OjQ3LTMxNTo2MSIsDQogICAgICAgICAgICAgICAgICAibmFtZSIgOiAie2h0dHA6Ly9obDcub3JnL2ZoaXJ9QmFja2JvbmVFbGVtZW50IiwNCiAgICAgICAgICAgICAgICAgICJ0eXBlIiA6ICJOYW1lZFR5cGVTcGVjaWZpZXIiDQogICAgICAgICAgICAgICB9DQogICAgICAgICAgICB9LCB7DQogICAgICAgICAgICAgICAibmFtZSIgOiAiaWQiLA0KICAgICAgICAgICAgICAgIm9wZXJhbmRUeXBlU3BlY2lmaWVyIiA6IHsNCiAgICAgICAgICAgICAgICAgICJsb2NhdG9yIiA6ICIzMTU6NjctMzE1OjcyIiwNCiAgICAgICAgICAgICAgICAgICJuYW1lIiA6ICJ7dXJuOmhsNy1vcmc6ZWxtLXR5cGVzOnIxfVN0cmluZyIsDQogICAgICAgICAgICAgICAgICAidHlwZSIgOiAiTmFtZWRUeXBlU3BlY2lmaWVyIg0KICAgICAgICAgICAgICAgfQ0KICAgICAgICAgICAgfSBdDQogICAgICAgICB9IF0NCiAgICAgIH0NCiAgIH0NCn0=" + } + ] + }, + "request": { + "method": "PUT", + "url": "Library/FHIRCommon" + } + } + ] +} diff --git a/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/testdata-bundles/Testbundle_3Patients_1MMRVaccinated_1PVaccinated_1NoVaccination.json b/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/Fhir_Helper.json similarity index 99% rename from hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/testdata-bundles/Testbundle_3Patients_1MMRVaccinated_1PVaccinated_1NoVaccination.json rename to hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/Fhir_Helper.json index 9ea01c892e2..0ffc1744293 100644 --- a/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/testdata-bundles/Testbundle_3Patients_1MMRVaccinated_1PVaccinated_1NoVaccination.json +++ b/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/Fhir_Helper.json @@ -1,344 +1,8 @@ { "resourceType": "Bundle", - "id": "bundle-mmr-single", + "id": "bundle-fhir-helpers", "type": "transaction", "entry": [ - { - "resource": { - "resourceType": "ValueSet", - "id": "mmr-vaccine-codes", - "url": "http://hl7.org/fhir/ValueSet/mmr-vaccine-codes", - "version": "4.0.1", - "status": "active", - "experimental": false, - "date": "2019-11-01T09:29:23+11:00", - "compose": { - "include": [ - { - "system": "http://hl7.org/fhir/sid/cvx", - "concept": [ - { - "code": "03", - "display": "MMR" - }, - { - "code": "94", - "display": "MMRV" - } - ] - }, { - "system": "urn:oid:1.2.36.1.2001.1005.17", - "concept": [ - { - "code": "MMR", - "display": "MMR" - }, - { - "code": "MMRCSL", - "display": "MMR II" - } - ] - } - ] - } - }, - "request": { - "method": "PUT", - "url": "ValueSet/mmr-vaccine-codes" - } - }, - { - "resource": { - "resourceType": "Patient", - "id": "mmrVaccinatedPatient", - "name": [ - { - "family": "Morrow", - "given": [ - "Isaac" - ] - } - ], - "gender": "male", - "birthDate": "1955-11-05" - }, - "request": { - "method": "PUT", - "url": "Patient/mmrVaccinatedPatient" - } - }, - { - "resource": { - "resourceType": "Patient", - "id": "notMMRVaccinatedPatient", - "name": [ - { - "family": "Wills", - "given": [ - "Eira" - ] - } - ], - "gender": "female", - "birthDate": "2001-05-22" - }, - "request": { - "method": "PUT", - "url": "Patient/notMMRVaccinatedPatient" - } - }, - { - "resource": { - "resourceType": "Immunization", - "status": "completed", - "vaccineCode": { - "coding": [ - { - "system": "http://hl7.org/fhir/sid/cvx", - "code": "03", - "display": "MMR" - } - ], - "text": "MMR according to http://hl7.org/fhir/valueset-vaccine-code.html" - }, - "patient": { - "reference": "Patient/mmrVaccinatedPatient" - }, - "occurrenceDateTime": "2017-04-25" - }, - "request": { - "method": "POST", - "url": "Immunization" - } - }, - { - "resource": { - "resourceType": "Immunization", - "status": "completed", - "vaccineCode": { - "coding": [ - { - "system": "urn:oid:1.2.36.1.2001.1005.17", - "code": "Pe", - "display": "Pertussis" - } - ], - "text": "MMR according to http://hl7.org/fhir/valueset-vaccine-code.html" - }, - "patient": { - "reference": "Patient/notMMRVaccinatedPatient" - }, - "occurrenceDateTime": "2019-01-02" - }, - "request": { - "method": "POST", - "url": "Immunization" - } - }, - - { - "resource": { - "resourceType": "Patient", - "id": "notAtAllVaccinatedPatient", - "name": [ - { - "family": "Lee", - "given": [ - "Jane" - ] - } - ], - "gender": "female", - "birthDate": "1993-12-08" - }, - "request": { - "method": "PUT", - "url": "Patient/notAtAllVaccinatedPatient" - } - }, - - { - "resource": { - "resourceType": "Measure", - "id": "mmrImmunizationMeasure", - "name": "mmrImmunizationMeasure", - "title": "Is immunized for MMR", - "status": "active", - "group": [ - { - "id": "group-1", - "population": [ - { - "code": { - "coding": [ - { - "system": "http://terminology.hl7.org/CodeSystem/measure-population", - "code": "initial-population", - "display": "InitialPopulation" - } - ] - }, - "criteria": { - "language": "text/cql", - "expression": "InitialPopulation" - } - }, - { - "code": { - "coding": [ - { - "system": "http://terminology.hl7.org/CodeSystem/measure-population", - "code": "numerator", - "display": "Numerator" - } - ] - }, - "criteria": { - "language": "text/cql", - "expression": "Numerator" - } - }, - { - "code": { - "coding": [ - { - "system": "http://terminology.hl7.org/CodeSystem/measure-population", - "code": "denominator", - "display": "Denominator" - } - ] - }, - "criteria": { - "language": "text/cql", - "expression": "Denominator" - } - } - ] - } - ], - "relatedArtifact": [ - { - "type": "depends-on", - "resource": "Library/library-FHIRHelpers-4.0.1" - } - ], - "scoring": { - "coding": [ - { - "code": "ratio" - } - ] - }, - "library": [ - "Library/immunizationCQLLibrary" - ] - }, - "request": { - "method": "PUT", - "url": "Measure/mmrImmunizationMeasure" - } - }, - - { - "resource": { - "resourceType": "MeasureReport", - "status": "complete", - "identifier": [ - { - "value": "measureReportIndividualVaccinatedPatient" - } - ], - "type": "individual", - "measure": "Measure/mmrImmunizationMeasure", - "date": "2014-04-01", - "subject": { - "reference": "Patient/mmrVaccinatedPatient" - }, - "period": { - "start": "2022-01-01", - "end": "2023-03-31" - } - }, - "request": { - "method": "POST", - "url": "MeasureReport" - } - }, - { - "resource": { - "resourceType": "MeasureReport", - "identifier": - [ - { - "value": "measureReportIndividualNotMMRVaccinatedPatient" - } - ], - "status": "complete", - "type": "individual", - "measure": "Measure/mmrImmunizationMeasure", - "date": "2014-04-01", - "subject": { - "reference": "Patient/notMMRVaccinatedPatient" - }, - "period": { - "start": "2014-01-01", - "end": "2014-03-31" - } - }, - "request": { - "method": "POST", - "url": "MeasureReport" - } - }, - { - "resource": { - "resourceType": "MeasureReport", - "identifier": - [ - { - "value": "measureReportIndividualNotAtAllVaccinatedPatient" - } - ], - "status": "complete", - "type": "individual", - "measure": "Measure/mmrImmunizationMeasure", - "date": "2014-04-01", - "subject": { - "reference": "Patient/notAtAllVaccinatedPatient" - }, - "period": { - "start": "2014-01-01", - "end": "2014-03-31" - } - }, - "request": { - "method": "POST", - "url": "MeasureReport" - } - }, - { - "resource": { - "resourceType": "MeasureReport", - "identifier": - [ - { - "value": "measureReportSummary" - } - ], - "status": "complete", - "type": "summary", - "measure": "Measure/mmrImmunizationMeasure", - "date": "2014-04-01", - "period": { - "start": "2014-01-01", - "end": "2014-03-31" - } - }, - "request": { - "method": "POST", - "url": "MeasureReport" - } - }, { "resource": { "resourceType": "Library", diff --git a/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/Measure_Library_Ontario_ImmunizationStatus.json b/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/Measure_Library_Ontario_ImmunizationStatus.json new file mode 100644 index 00000000000..5d30ea81960 --- /dev/null +++ b/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/Measure_Library_Ontario_ImmunizationStatus.json @@ -0,0 +1,300 @@ +{ + "resourceType": "Bundle", + "id": "bundle-measure-library-ontario", + "type": "transaction", + "entry": [ + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-c5e300940000", + "resource": { + "resourceType": "Library", + "id": "ImmunizationStatus", + "extension": [ + { + "url": "http://hl7.org/fhir/us/cqfmeasures/StructureDefinition/cqfm-softwaresystem", + "valueReference": { + "reference": "Device/cqf-tooling" + } + } + ], + "url": "http://content.smilecdr.com/fhir/dqm/Library/ImmunizationStatus", + "name": "ImmunizationStatus", + "title": "Library - Immunization Status for Patients Starting Immunization in Infancy", + "status": "draft", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/library-type", + "code": "logic-library" + } + ] + }, + "description": "Percentage of population that is fully vaccinated based on the routine schedule of the Publicly Funded Immunization Schedules for Ontario – June 2022 (Page 3)", + "jurisdiction": [ + { + "coding": [ + { + "system": "urn:iso:std:iso:3166", + "version": "4.0.1", + "code": "US", + "display": "United States of America" + } + ], + "text": "United States of America" + } + ], + "relatedArtifact": [ + { + "type": "depends-on", + "display": "FHIR model information", + "resource": "http://fhir.org/guides/cqf/common/Library/FHIR-ModelInfo|4.0.1" + }, + { + "type": "depends-on", + "display": "Library FHIRHelpers", + "resource": "http://content.smilecdr.com/fhir/dqm/Library/FHIRHelpers|4.0.1" + }, + { + "type": "depends-on", + "display": "Library FC", + "resource": "http://content.smilecdr.com/fhir/dqm/Library/FHIRCommon|4.0.1" + } + ], + "parameter": [ + { + "name": "Measurement Period", + "use": "in", + "min": 0, + "max": "1", + "type": "Period" + }, + { + "name": "Patient", + "use": "out", + "min": 0, + "max": "1", + "type": "Patient" + }, + { + "name": "Practitioner", + "use": "out", + "min": 0, + "max": "1", + "type": "Practitioner" + }, + { + "name": "Qualifying Encounters During Measurement Period", + "use": "out", + "min": 0, + "max": "*", + "type": "Encounter" + }, + { + "name": "Initial Population", + "use": "out", + "min": 0, + "max": "1", + "type": "boolean" + }, + { + "name": "Denominator", + "use": "out", + "min": 0, + "max": "1", + "type": "boolean" + }, + { + "name": "Numerator", + "use": "out", + "min": 0, + "max": "1", + "type": "boolean" + } + ], + "dataRequirement": [ + { + "type": "Patient", + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + } + ], + "content": [ + { + "contentType": "text/cql", + "data": "Ly9BdWcgMjUsMjAyMg0KLy8gMSkgbWFsZSBpcyBmb3IgNjUteWVhciB3YXMgcmVzb2x2ZWQNCi8vIDIpIEVsaWdpYmlsaXR5QWdlSW5ZZWFycyBhbmQgRWxpZ2liaWxpdHlBZ2VJbk1vbnRocw0KLy8gMykgYWRqdXN0IGluZiBsb2dpYw0KLy8gNCkgY2xlYW4gdXANCi8vIDUpIHRpY2tldHMNCi8vLy8vLy8vLy8vLy8vDQoNCi8qICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiogKi8NCi8qIENyZWF0ZWQgb24gRnJpZGF5IEp1bHkgMjIgMjAyMg0KLyogQ1FMIFN0YW5kYXJkIERldmVsb3BlcjogUmV6YSBBYm9saGFzc2FuaSwgSmF2YSBEZXZlbG9wZXI6IEFubmEgTGluLCBUZXN0ZXI6IEFuamEgU2Nod2FiDQovKiBDb3B5cmlnaHQgKGMpIDIwMjIgLSBTbWlsZSBDRFIgLSBSJkQNCi8qICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKiogKi8NCg0KbGlicmFyeSBJbW11bml6YXRpb25TdGF0dXMNCg0KdXNpbmcgRkhJUiB2ZXJzaW9uICc0LjAuMScNCg0KaW5jbHVkZSBGSElSSGVscGVycyB2ZXJzaW9uICc0LjAuMScgY2FsbGVkIEZISVJIZWxwZXJzDQppbmNsdWRlIEZISVJDb21tb24gY2FsbGVkIEZDDQoNCmNvZGVzeXN0ZW0gIk9ic2VydmF0aW9uQ2F0ZWdvcnlDb2RlcyI6ICdodHRwOi8vdGVybWlub2xvZ3kuaGw3Lm9yZy9Db2RlU3lzdGVtL29ic2VydmF0aW9uLWNhdGVnb3J5Jw0KY29kZXN5c3RlbSAiTE9JTkMiOiAnaHR0cDovL2xvaW5jLm9yZycNCg0KdmFsdWVzZXQgIkRUYVBfSVBWX0hpYiBWYWNjaW5lIjogJ2h0dHA6Ly9jdHMubmxtLm5paC5nb3YvZmhpci9WYWx1ZVNldC8yLjE2Ljg0MC4xLjExMzg4My4zLjQ2NC4xMDAzLjE5Ni4xMS4xMjEyJw0KdmFsdWVzZXQgIlBuZXVfQ18xMyBWYWNjaW5lIjogJ2h0dHA6Ly9jdHMubmxtLm5paC5nb3YvZmhpci9WYWx1ZVNldC8yLjE2Ljg0MC4xLjExMzg4My4zLjQ2NC4xMDAzLjExNTgnDQp2YWx1ZXNldCAiUm90XzEgVmFjY2luZSI6ICdodHRwOi8vY3RzLm5sbS5uaWguZ292L2ZoaXIvVmFsdWVTZXQvMi4xNi44NDAuMS4xMTM4ODMuMy40NjQuMTAwMy4xOTYuMTEuMTIzMicNCnZhbHVlc2V0ICJNZW5fQ19DIFZhY2NpbmUiOiAnaHR0cDovL2hsNy5vcmcvZmhpci9WYWx1ZVNldC92YWNjaW5lLU1lbi1DLUMnDQp2YWx1ZXNldCAiTU1SIFZhY2NpbmUiOiAnaHR0cDovL2N0cy5ubG0ubmloLmdvdi9maGlyL1ZhbHVlU2V0LzIuMTYuODQwLjEuMTEzODgzLjMuNDY0LjEwMDMuMTk2LjExLjEyMzUnDQp2YWx1ZXNldCAiVmFyIFZhY2NpbmUiOiAnaHR0cDovL2hsNy5vcmcvZmhpci9WYWx1ZVNldC92YWNjaW5lLVZhcicNCnZhbHVlc2V0ICJNTVJWIFZhY2NpbmUiOiAnaHR0cDovL2hsNy5vcmcvZmhpci9WYWx1ZVNldC92YWNjaW5lLU1NUlYnDQp2YWx1ZXNldCAiVGRhcF9JUFYgVmFjY2luZSI6ICdodHRwOi8vaGw3Lm9yZy9maGlyL1ZhbHVlU2V0L3ZhY2NpbmUtVGRhcC1JUFYnDQp2YWx1ZXNldCAiSEIgVmFjY2luZSI6ICdodHRwOi8vaGw3Lm9yZy9maGlyL1ZhbHVlU2V0L3ZhY2NpbmUtSEInDQp2YWx1ZXNldCAiTWVuX0NfQUNZVyBWYWNjaW5lIjogJ2h0dHA6Ly9obDcub3JnL2ZoaXIvVmFsdWVTZXQvdmFjY2luZS1NZW4tQy1BQ1lXJw0KdmFsdWVzZXQgIkhQVl85IFZhY2NpbmUiOiAnaHR0cDovL2hsNy5vcmcvZmhpci9WYWx1ZVNldC92YWNjaW5lLUhQVi05Jw0KdmFsdWVzZXQgIlRkYXAgVmFjY2luZSI6ICdodHRwOi8vaGw3Lm9yZy9maGlyL1ZhbHVlU2V0L3ZhY2NpbmUtVGRhcCcNCnZhbHVlc2V0ICJUZCBWYWNjaW5lIjogJ2h0dHA6Ly9obDcub3JnL2ZoaXIvVmFsdWVTZXQvdmFjY2luZS1UZCcNCnZhbHVlc2V0ICJQbmV1X1BfMjMgVmFjY2luZSI6ICdodHRwOi8vaGw3Lm9yZy9maGlyL1ZhbHVlU2V0L3ZhY2NpbmUtUG5ldS1QLTIzJw0KdmFsdWVzZXQgIkhaIFZhY2NpbmUiOiAnaHR0cDovL2hsNy5vcmcvZmhpci9WYWx1ZVNldC92YWNjaW5lLUhaJw0KdmFsdWVzZXQgIkluZiBWYWNjaW5lIjogJ2h0dHA6Ly9obDcub3JnL2ZoaXIvVmFsdWVTZXQvdmFjY2luZS1JbmYnDQp2YWx1ZXNldCAiUHJlZ25hbmN5IFN0YXR1cyI6ICdodHRwOi8vaGw3Lm9yZy9maGlyL1ZhbHVlU2V0L3ZhbHVlc2V0cy1wcmVnbmFuY3ktc3RhdHVzJw0KdmFsdWVzZXQgIldlZWtzIG9mIEdlc3RhdGlvbiI6ICdodHRwOi8vaGw3Lm9yZy9maGlyL1ZhbHVlU2V0L3ZhbHVlc2V0cy13ZWVrcy1vZi1nZXN0YXRpb24nDQoNCmNvZGUgImxhYm9yYXRvcnkiOiAnbGFib3JhdG9yeScgZnJvbSAiT2JzZXJ2YXRpb25DYXRlZ29yeUNvZGVzIiBkaXNwbGF5ICdMYWJvcmF0b3J5Jw0KY29kZSAiUHJlZ25hbnQiOiAnTEExNTE3My0wJyBmcm9tICJMT0lOQyIgZGlzcGxheSAnUHJlZ25hbnQnDQoNCnBhcmFtZXRlciAiTWVhc3VyZW1lbnQgUGVyaW9kIiBkZWZhdWx0IEludGVydmFsW0AxOTIzLTAxLTAxVDAwOjAwOjAwLjAwMCwgQDIwMjItMDktMTZUMDA6MDA6MDAuMDAwXQ0KcGFyYW1ldGVyICJGYWxsIFBlcmlvZCIgZGVmYXVsdCBJbnRlcnZhbFtAMjAyMi0wOS0wMVQwMDowMDowMC4wMDAsIEAyMDIyLTEyLTMxVDAwOjAwOjAwLjAwMF0NCnBhcmFtZXRlciBBIEludGVnZXIgZGVmYXVsdCAxDQpwYXJhbWV0ZXIgQiBJbnRlZ2VyIGRlZmF1bHQgMA0KDQpjb250ZXh0IFBhdGllbnQNCg0KZGVmaW5lICJFcnJvck1lc3NhZ2UiOg0KCU1lc3NhZ2UoJ0RpdmlkZSBieSB6ZXJvIGVycm9yIScsIEEgPSAwLCAnVW5kZWZpbmVkJywgJ0Vycm9yJywgJ1RoZSBCIHBhcmFtZXRlciBpcyB6ZXJvJykNCg0KZGVmaW5lICJTdGFydCBvZiBNZWFzdXJlbWVudCBQZXJpb2QiOg0KCWRhdGUgZnJvbSBzdGFydCBvZiAiTWVhc3VyZW1lbnQgUGVyaW9kIg0KDQpkZWZpbmUgIkVuZCBvZiBNZWFzdXJlbWVudCBQZXJpb2QiOg0KCQlkYXRlIGZyb20gZW5kIG9mICJNZWFzdXJlbWVudCBQZXJpb2QiDQoNCmRlZmluZSAiQmlydGggRGF0ZSI6DQoJW1BhdGllbnRdIHANCgkJcmV0dXJuIEZISVJIZWxwZXJzLlRvRGF0ZShwLmJpcnRoRGF0ZSkNCg0KZGVmaW5lICJBZ2UgaW4gV2Vla3MgaW4gdGhlIGVuZCBvZiBNZWFzdXJlbWVudCBQZXJpb2QiOg0KCUFnZUluV2Vla3NBdChkYXRlIGZyb20gZW5kIG9mICJNZWFzdXJlbWVudCBQZXJpb2QiKQ0KDQpkZWZpbmUgIkFnZSBpbiBNb250aHMgaW4gdGhlIGVuZCBvZiBNZWFzdXJlbWVudCBQZXJpb2QiOg0KCUFnZUluTW9udGhzQXQoZGF0ZSBmcm9tIGVuZCBvZiAiTWVhc3VyZW1lbnQgUGVyaW9kIikNCg0KZGVmaW5lICJBZ2UgaW4gWWVhcnMgaW4gdGhlIGVuZCBvZiBNZWFzdXJlbWVudCBQZXJpb2QiOg0KCQlBZ2VJblllYXJzQXQoZGF0ZSBmcm9tIGVuZCBvZiAiTWVhc3VyZW1lbnQgUGVyaW9kIikNCg0KZGVmaW5lICJJbml0aWFsIFBvcHVsYXRpb24iOg0KCUFnZUluTW9udGhzQXQoZGF0ZSBmcm9tIGVuZCBvZiAiTWVhc3VyZW1lbnQgUGVyaW9kIikgPj0gMg0KCWFuZCBleGlzdHMgKCJRdWFsaWZ5aW5nIEVuY291bnRlcnMgRHVyaW5nIE1lYXN1cmVtZW50IFBlcmlvZCIpDQoNCmRlZmluZSAiRGVub21pbmF0b3IiOg0KCSJJbml0aWFsIFBvcHVsYXRpb24iDQoNCmRlZmluZSAiUXVhbGlmeWluZyBFbmNvdW50ZXJzIER1cmluZyBNZWFzdXJlbWVudCBQZXJpb2QiOg0KCVtFbmNvdW50ZXJdIFZhbGlkRW5jb3VudGVyDQoJICAgCXdoZXJlIFZhbGlkRW5jb3VudGVyLnN0YXR1cyAgPSAnZmluaXNoZWQnDQoJICAgCQlhbmQgVmFsaWRFbmNvdW50ZXIucGVyaW9kIGR1cmluZyAiTWVhc3VyZW1lbnQgUGVyaW9kIg0KCQkJCWFuZCBBZ2VJbk1vbnRoc0F0KGRhdGUgZnJvbSBzdGFydCBvZiBWYWxpZEVuY291bnRlci5wZXJpb2QpID49IDINCg0KZGVmaW5lICJFbmNvdW50ZXIgRGF0ZShzKSI6DQoJIlF1YWxpZnlpbmcgRW5jb3VudGVycyBEdXJpbmcgTWVhc3VyZW1lbnQgUGVyaW9kIiBFDQoJCXJldHVybiAoZGF0ZSBmcm9tIHN0YXJ0IG9mIEUucGVyaW9kKQ0KDQpkZWZpbmUgIkxhc3QgRW5jb3VudGVyIERhdGUiOg0KCUxhc3QoIlF1YWxpZnlpbmcgRW5jb3VudGVycyBEdXJpbmcgTWVhc3VyZW1lbnQgUGVyaW9kIiBFDQoJCXJldHVybiAoZGF0ZSBmcm9tIHN0YXJ0IG9mIEUucGVyaW9kKSkNCg0KZGVmaW5lICJBZ2UgaW4gV2Vla3MgaW4gdGhlIHN0YXJ0IG9mIExhc3QgRW5jb3VudGVyIFBlcmlvZCI6DQoJTGFzdCgiUXVhbGlmeWluZyBFbmNvdW50ZXJzIER1cmluZyBNZWFzdXJlbWVudCBQZXJpb2QiIEUNCgkJcmV0dXJuIChBZ2VJbldlZWtzQXQoZGF0ZSBmcm9tIHN0YXJ0IG9mIEUucGVyaW9kKSkpDQoNCmRlZmluZSAiQWdlIGluIE1vbnRocyBpbiB0aGUgc3RhcnQgb2YgTGFzdCBFbmNvdW50ZXIgUGVyaW9kIjoNCglMYXN0KCJRdWFsaWZ5aW5nIEVuY291bnRlcnMgRHVyaW5nIE1lYXN1cmVtZW50IFBlcmlvZCIgRQ0KCQlyZXR1cm4gKEFnZUluTW9udGhzQXQoZGF0ZSBmcm9tIHN0YXJ0IG9mIEUucGVyaW9kKSkpDQoNCmRlZmluZSAiQWdlIGluIFllYXJzIGluIHRoZSBzdGFydCBvZiBMYXN0IEVuY291bnRlciBQZXJpb2QiOg0KCUxhc3QoIlF1YWxpZnlpbmcgRW5jb3VudGVycyBEdXJpbmcgTWVhc3VyZW1lbnQgUGVyaW9kIiBFDQoJCXJldHVybiAoQWdlSW5ZZWFyc0F0KGRhdGUgZnJvbSBzdGFydCBvZiBFLnBlcmlvZCkpKQ0KDQpkZWZpbmUgIk51bWVyYXRvciI6DQoJIk1hbGUgRnVsbHkgVmFjY2luYXRlZCINCglvcg0KCSJOb25wcmVnbmFudCBGZW1hbGUgRnVsbHkgVmFjY2luYXRlZCINCglvcg0KCSJQcmVnbmFudCBGZW1hbGUgSWRlYWxseSBGdWxseSBWYWNjaW5hdGVkIg0KDQpkZWZpbmUgIkZ1bGx5IFJvdXRpbmUgVmFjY2luYXRlZCI6DQoJIkZvdXIgRFRhUF9JUFZfSGliIFZhY2NpbmF0aW9ucyINCglhbmQNCgkiVGhyZWUgUG5ldV9DXzEzIFZhY2NpbmF0aW9ucyINCglhbmQNCgkiVHdvIFJvdF8xIFZhY2NpbmF0aW9ucyINCglhbmQNCgkiT25lIE1lbl9DX0MgVmFjY2luYXRpb24iDQoJYW5kDQoJIk9uZSBNTVIgVmFjY2luYXRpb24iDQoJYW5kDQoJIk9uZSBWYXIgVmFjY2luYXRpb24iDQoJYW5kDQoJIk9uZSBNTVJWIFZhY2NpbmF0aW9uIg0KCWFuZA0KCSJPbmUgVGRhcF9JUFYgVmFjY2luYXRpb24iDQoJYW5kDQoJIk9uZSBIQiBWYWNjaW5hdGlvbiINCglhbmQNCgkiT25lIE1lbl9DX0FDWVcgVmFjY2luYXRpb24iDQoJYW5kDQoJIk9uZSBIUFZfOSBWYWNjaW5hdGlvbiINCglhbmQNCgkiT25lIEhaIFZhY2NpbmF0aW9uIg0KCWFuZA0KCSJPbmUgUG5ldV9QXzIzIFZhY2NpbmF0aW9uIg0KCWFuZA0KCSJUd28gVGRhcCBWYWNjaW5hdGlvbnMiDQoJYW5kDQoJIk9uZSBUZCBWYWNjaW5hdGlvbiINCg0KZGVmaW5lICJNYWxlIEZ1bGx5IFZhY2NpbmF0ZWQiOg0KCWlmIChUb2RheSgpIGR1cmluZyAiRmFsbCBQZXJpb2QiKSB0aGVuDQoJCShQYXRpZW50LmdlbmRlciA9ICdtYWxlJykgYW5kICJGdWxseSBSb3V0aW5lIFZhY2NpbmF0ZWQiIGFuZCAiU2Vhc29uYWwgSW5mIFZhY2NpbmF0ZWQiDQoJZWxzZQ0KCQkoUGF0aWVudC5nZW5kZXIgPSAnbWFsZScpIGFuZCAiRnVsbHkgUm91dGluZSBWYWNjaW5hdGVkIg0KDQpkZWZpbmUgIk5vbnByZWduYW50IEZlbWFsZSBGdWxseSBWYWNjaW5hdGVkIjoNCglpZiAoVG9kYXkoKSBkdXJpbmcgIkZhbGwgUGVyaW9kIikgdGhlbg0KCQkoUGF0aWVudC5nZW5kZXIgPSAnZmVtYWxlJykgYW5kIG5vdCBleGlzdHMoIlByZWduYW50RmVtYWxlIikgYW5kICJGdWxseSBSb3V0aW5lIFZhY2NpbmF0ZWQiIGFuZCAiU2Vhc29uYWwgSW5mIFZhY2NpbmF0ZWQiDQoJZWxzZQ0KCQkoUGF0aWVudC5nZW5kZXIgPSAnZmVtYWxlJykgYW5kIG5vdCBleGlzdHMoIlByZWduYW50RmVtYWxlIikgYW5kICJGdWxseSBSb3V0aW5lIFZhY2NpbmF0ZWQiDQoNCmRlZmluZSAiUHJlZ25hbnQgRmVtYWxlIElkZWFsbHkgRnVsbHkgVmFjY2luYXRlZCI6DQoJaWYgKFRvZGF5KCkgZHVyaW5nICJGYWxsIFBlcmlvZCIpIHRoZW4NCgkJKFBhdGllbnQuZ2VuZGVyID0gJ2ZlbWFsZScpIGFuZCBleGlzdHMoIlByZWduYW50RmVtYWxlIikgYW5kICJGdWxseSBSb3V0aW5lIFZhY2NpbmF0ZWQiIGFuZCAiT25lIGRvc2UgVGRhcCBpbiBjdXJyZW50IHByZWduYW5jeSIgYW5kICJTZWFzb25hbCBJbmYgVmFjY2luYXRlZCINCgllbHNlDQoJCShQYXRpZW50LmdlbmRlciA9ICdmZW1hbGUnKSBhbmQgZXhpc3RzKCJQcmVnbmFudEZlbWFsZSIpIGFuZCAiRnVsbHkgUm91dGluZSBWYWNjaW5hdGVkIiBhbmQgIk9uZSBkb3NlIFRkYXAgaW4gY3VycmVudCBwcmVnbmFuY3kiDQoNCi8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLw0KDQovLyB0ZXN0IHBhdGllbnQgYXQgbWluaW11bSgxKToNCmRlZmluZSAiRFRhUF9JUFZfSGliIFZhY2NpbmF0aW9uIDIgTW9udGhzIjoNCglbSW1tdW5pemF0aW9uOiAiRFRhUF9JUFZfSGliIFZhY2NpbmUiXSBEVGFQX0lQVl9IaWJWYWNjaW5hdGlvbg0KIAkJd2l0aCAiUXVhbGlmeWluZyBFbmNvdW50ZXJzIER1cmluZyBNZWFzdXJlbWVudCBQZXJpb2QiIFF1YWxpZnlpbmdFbmNvdW50ZXINCiAgICAgIAkJc3VjaCB0aGF0ICgNCgkJCQkJCUFnZUluTW9udGhzQXQoRkhJUkhlbHBlcnMuVG9EYXRlVGltZShEVGFQX0lQVl9IaWJWYWNjaW5hdGlvbi5vY2N1cnJlbmNlKSkgPD0gMg0KCQkJCQkpDQoJCXdoZXJlIERUYVBfSVBWX0hpYlZhY2NpbmF0aW9uLnN0YXR1cyAgPSAnY29tcGxldGVkJw0KDQovLyB0ZXN0IHBhdGllbnQgYXQgbWluaW11bSgyKToNCmRlZmluZSAiRFRhUF9JUFZfSGliIFZhY2NpbmF0aW9uIDQgTW9udGhzIjoNCglbSW1tdW5pemF0aW9uOiAiRFRhUF9JUFZfSGliIFZhY2NpbmUiXSBEVGFQX0lQVl9IaWJWYWNjaW5hdGlvbg0KIAkJd2l0aCAiUXVhbGlmeWluZyBFbmNvdW50ZXJzIER1cmluZyBNZWFzdXJlbWVudCBQZXJpb2QiIFF1YWxpZnlpbmdFbmNvdW50ZXINCiAgICAgIAkJc3VjaCB0aGF0ICgNCgkJCQkJCShBZ2VJbk1vbnRoc0F0KEZISVJIZWxwZXJzLlRvRGF0ZVRpbWUoRFRhUF9JUFZfSGliVmFjY2luYXRpb24ub2NjdXJyZW5jZSkpID4gMikNCgkJCQkJCWFuZA0KCQkJCQkJKEFnZUluTW9udGhzQXQoRkhJUkhlbHBlcnMuVG9EYXRlVGltZShEVGFQX0lQVl9IaWJWYWNjaW5hdGlvbi5vY2N1cnJlbmNlKSkgPD0gNCkNCgkJCQkJKQ0KCQl3aGVyZSBEVGFQX0lQVl9IaWJWYWNjaW5hdGlvbi5zdGF0dXMgID0gJ2NvbXBsZXRlZCcNCg0KLy8gdGVzdCBwYXRpZW50IGF0IG1pbmltdW0oMyk6DQpkZWZpbmUgIkRUYVBfSVBWX0hpYiBWYWNjaW5hdGlvbiA2IE1vbnRocyI6DQoJW0ltbXVuaXphdGlvbjogIkRUYVBfSVBWX0hpYiBWYWNjaW5lIl0gRFRhUF9JUFZfSGliVmFjY2luYXRpb24NCiAJCXdpdGggIlF1YWxpZnlpbmcgRW5jb3VudGVycyBEdXJpbmcgTWVhc3VyZW1lbnQgUGVyaW9kIiBRdWFsaWZ5aW5nRW5jb3VudGVyDQogICAgICAJCXN1Y2ggdGhhdCAoDQoJCQkJCQkoQWdlSW5Nb250aHNBdChGSElSSGVscGVycy5Ub0RhdGVUaW1lKERUYVBfSVBWX0hpYlZhY2NpbmF0aW9uLm9jY3VycmVuY2UpKSA+IDQpDQoJCQkJCQkJYW5kDQoJCQkJCQkoQWdlSW5Nb250aHNBdChGSElSSGVscGVycy5Ub0RhdGVUaW1lKERUYVBfSVBWX0hpYlZhY2NpbmF0aW9uLm9jY3VycmVuY2UpKSA8PSA2KQ0KCQkJCQkpDQoJCXdoZXJlIERUYVBfSVBWX0hpYlZhY2NpbmF0aW9uLnN0YXR1cyAgPSAnY29tcGxldGVkJw0KDQovLyB0ZXN0IHBhdGllbnQgYXQgbWluaW11bSg0KToNCmRlZmluZSAiRFRhUF9JUFZfSGliIFZhY2NpbmF0aW9uIDE4IE1vbnRocyI6DQoJW0ltbXVuaXphdGlvbjogIkRUYVBfSVBWX0hpYiBWYWNjaW5lIl0gRFRhUF9JUFZfSGliVmFjY2luYXRpb24NCiAJCXdpdGggIlF1YWxpZnlpbmcgRW5jb3VudGVycyBEdXJpbmcgTWVhc3VyZW1lbnQgUGVyaW9kIiBRdWFsaWZ5aW5nRW5jb3VudGVyDQogICAgICAJCXN1Y2ggdGhhdCAoDQoJCQkJCQkoQWdlSW5Nb250aHNBdChGSElSSGVscGVycy5Ub0RhdGVUaW1lKERUYVBfSVBWX0hpYlZhY2NpbmF0aW9uLm9jY3VycmVuY2UpKSA+IDYpDQoJCQkJCQlhbmQNCgkJCQkJCShBZ2VJbk1vbnRoc0F0KEZISVJIZWxwZXJzLlRvRGF0ZVRpbWUoRFRhUF9JUFZfSGliVmFjY2luYXRpb24ub2NjdXJyZW5jZSkpIDw9IDE4KQ0KCQkJCQkpDQoJCXdoZXJlIERUYVBfSVBWX0hpYlZhY2NpbmF0aW9uLnN0YXR1cyAgPSAnY29tcGxldGVkJw0KDQovLyB0ZXN0IHBhdGllbnQgYXQgbWluaW11bSg1KToNCmRlZmluZSAiRm91ciBEVGFQX0lQVl9IaWIgVmFjY2luYXRpb25zIjoNCgkoZXhpc3RzKCJEVGFQX0lQVl9IaWIgVmFjY2luYXRpb24gMiBNb250aHMiKSBvciAoQWdlSW5Nb250aHNBdChkYXRlIGZyb20gZW5kIG9mICJNZWFzdXJlbWVudCBQZXJpb2QiKSA8IDIpKQ0KCWFuZA0KCShleGlzdHMoIkRUYVBfSVBWX0hpYiBWYWNjaW5hdGlvbiA0IE1vbnRocyIpIG9yIChBZ2VJbk1vbnRoc0F0KGRhdGUgZnJvbSBlbmQgb2YgIk1lYXN1cmVtZW50IFBlcmlvZCIpIDwgNCkpDQoJYW5kDQoJKGV4aXN0cygiRFRhUF9JUFZfSGliIFZhY2NpbmF0aW9uIDYgTW9udGhzIikgb3IgKEFnZUluTW9udGhzQXQoZGF0ZSBmcm9tIGVuZCBvZiAiTWVhc3VyZW1lbnQgUGVyaW9kIikgPCA2KSkNCglhbmQNCgkoZXhpc3RzKCJEVGFQX0lQVl9IaWIgVmFjY2luYXRpb24gMTggTW9udGhzIikgb3IgKEFnZUluTW9udGhzQXQoZGF0ZSBmcm9tIGVuZCBvZiAiTWVhc3VyZW1lbnQgUGVyaW9kIikgPCAxOCkpDQoNCi8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLw0KDQovLyB0ZXN0IHBhdGllbnQgYXQgbWluaW11bSg2KToNCmRlZmluZSAiUG5ldV9DXzEzIFZhY2NpbmF0aW9uIDIgTW9udGhzIjoNCglbSW1tdW5pemF0aW9uOiAiUG5ldV9DXzEzIFZhY2NpbmUiXSBQbmV1X0NfMTNWYWNjaW5hdGlvbg0KIAkJd2l0aCAiUXVhbGlmeWluZyBFbmNvdW50ZXJzIER1cmluZyBNZWFzdXJlbWVudCBQZXJpb2QiIFF1YWxpZnlpbmdFbmNvdW50ZXINCiAgICAgIAkJc3VjaCB0aGF0ICgNCgkJCQkJCUFnZUluTW9udGhzQXQoRkhJUkhlbHBlcnMuVG9EYXRlVGltZShQbmV1X0NfMTNWYWNjaW5hdGlvbi5vY2N1cnJlbmNlKSkgPD0gMg0KCQkJCQkpDQoJCXdoZXJlIFBuZXVfQ18xM1ZhY2NpbmF0aW9uLnN0YXR1cyAgPSAnY29tcGxldGVkJw0KDQovLyB0ZXN0IHBhdGllbnQgYXQgbWluaW11bSg3KToNCmRlZmluZSAiUG5ldV9DXzEzIFZhY2NpbmF0aW9uIDQgTW9udGhzIjoNCglbSW1tdW5pemF0aW9uOiAiUG5ldV9DXzEzIFZhY2NpbmUiXSBQbmV1X0NfMTNWYWNjaW5hdGlvbg0KIAkJd2l0aCAiUXVhbGlmeWluZyBFbmNvdW50ZXJzIER1cmluZyBNZWFzdXJlbWVudCBQZXJpb2QiIFF1YWxpZnlpbmdFbmNvdW50ZXINCiAgICAgIAkJc3VjaCB0aGF0ICgNCgkJCQkJCShBZ2VJbk1vbnRoc0F0KEZISVJIZWxwZXJzLlRvRGF0ZVRpbWUoUG5ldV9DXzEzVmFjY2luYXRpb24ub2NjdXJyZW5jZSkpID4gMikNCgkJCQkJCWFuZA0KCQkJCQkJKEFnZUluTW9udGhzQXQoRkhJUkhlbHBlcnMuVG9EYXRlVGltZShQbmV1X0NfMTNWYWNjaW5hdGlvbi5vY2N1cnJlbmNlKSkgPD0gNCkNCgkJCQkJKQ0KCQl3aGVyZSBQbmV1X0NfMTNWYWNjaW5hdGlvbi5zdGF0dXMgID0gJ2NvbXBsZXRlZCcNCg0KLy8gdGVzdCBwYXRpZW50IGF0IG1pbmltdW0oOCk6DQpkZWZpbmUgIlBuZXVfQ18xMyBWYWNjaW5hdGlvbiAxMiBNb250aHMiOg0KCVtJbW11bml6YXRpb246ICJQbmV1X0NfMTMgVmFjY2luZSJdIFBuZXVfQ18xM1ZhY2NpbmF0aW9uDQogCQl3aXRoICJRdWFsaWZ5aW5nIEVuY291bnRlcnMgRHVyaW5nIE1lYXN1cmVtZW50IFBlcmlvZCIgUXVhbGlmeWluZ0VuY291bnRlcg0KICAgICAgCQlzdWNoIHRoYXQgKA0KCQkJCQkJKEFnZUluTW9udGhzQXQoRkhJUkhlbHBlcnMuVG9EYXRlVGltZShQbmV1X0NfMTNWYWNjaW5hdGlvbi5vY2N1cnJlbmNlKSkgPiA0KQ0KCQkJCQkJYW5kDQoJCQkJCQkoQWdlSW5ZZWFyc0F0KEZISVJIZWxwZXJzLlRvRGF0ZVRpbWUoUG5ldV9DXzEzVmFjY2luYXRpb24ub2NjdXJyZW5jZSkpIDw9IDEpDQoJCQkJCSkNCgkJd2hlcmUgUG5ldV9DXzEzVmFjY2luYXRpb24uc3RhdHVzICA9ICdjb21wbGV0ZWQnDQoNCg0KLy8gdGVzdCBwYXRpZW50IGF0IG1pbmltdW0oOSk6DQpkZWZpbmUgIlRocmVlIFBuZXVfQ18xMyBWYWNjaW5hdGlvbnMiOg0KCShleGlzdHMoIlBuZXVfQ18xMyBWYWNjaW5hdGlvbiAyIE1vbnRocyIpIG9yIEFnZUluTW9udGhzQXQoZGF0ZSBmcm9tIGVuZCBvZiAiTWVhc3VyZW1lbnQgUGVyaW9kIikgPCAyKQ0KCWFuZA0KCShleGlzdHMoIlBuZXVfQ18xMyBWYWNjaW5hdGlvbiA0IE1vbnRocyIpIG9yIChBZ2VJbk1vbnRoc0F0KGRhdGUgZnJvbSBlbmQgb2YgIk1lYXN1cmVtZW50IFBlcmlvZCIpIDwgNCkpDQoJYW5kDQoJKGV4aXN0cygiUG5ldV9DXzEzIFZhY2NpbmF0aW9uIDEyIE1vbnRocyIpIG9yIChBZ2VJbk1vbnRoc0F0KGRhdGUgZnJvbSBlbmQgb2YgIk1lYXN1cmVtZW50IFBlcmlvZCIpIDwgMTIpKQ0KDQovLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8NCg0KLy8gdGVzdCBwYXRpZW50IGF0IG1pbmltdW0oMTApOg0KZGVmaW5lICJSb3RfMSBWYWNjaW5hdGlvbiAyIE1vbnRocyI6DQoJW0ltbXVuaXphdGlvbjogIlJvdF8xIFZhY2NpbmUiXSBSb3RfMVZhY2NpbmF0aW9uDQogCQl3aXRoICJRdWFsaWZ5aW5nIEVuY291bnRlcnMgRHVyaW5nIE1lYXN1cmVtZW50IFBlcmlvZCIgUXVhbGlmeWluZ0VuY291bnRlcg0KICAgICAgCQlzdWNoIHRoYXQgKA0KCQkJCQkJQWdlSW5Nb250aHNBdChGSElSSGVscGVycy5Ub0RhdGVUaW1lKFJvdF8xVmFjY2luYXRpb24ub2NjdXJyZW5jZSkpIDw9IDINCgkJCQkJKQ0KCQl3aGVyZSBSb3RfMVZhY2NpbmF0aW9uLnN0YXR1cyAgPSAnY29tcGxldGVkJw0KDQovLyB0ZXN0IHBhdGllbnQgYXQgbWluaW11bSgxMSk6DQpkZWZpbmUgIlJvdF8xIFZhY2NpbmF0aW9uIDQgTW9udGhzIjoNCglbSW1tdW5pemF0aW9uOiAiUm90XzEgVmFjY2luZSJdIFJvdF8xVmFjY2luYXRpb24NCiAJCXdpdGggIlF1YWxpZnlpbmcgRW5jb3VudGVycyBEdXJpbmcgTWVhc3VyZW1lbnQgUGVyaW9kIiBRdWFsaWZ5aW5nRW5jb3VudGVyDQogICAgICAJCXN1Y2ggdGhhdCAoDQoJCQkJCQkoQWdlSW5Nb250aHNBdChGSElSSGVscGVycy5Ub0RhdGVUaW1lKFJvdF8xVmFjY2luYXRpb24ub2NjdXJyZW5jZSkpID4gMikNCgkJCQkJCQlhbmQgKEFnZUluTW9udGhzQXQoRkhJUkhlbHBlcnMuVG9EYXRlVGltZShSb3RfMVZhY2NpbmF0aW9uLm9jY3VycmVuY2UpKSA8PSA0KQ0KCQkJCQkpDQoJCXdoZXJlIFJvdF8xVmFjY2luYXRpb24uc3RhdHVzICA9ICdjb21wbGV0ZWQnDQoNCg0KLy8gdGVzdCBwYXRpZW50IGF0IG1pbmltdW0oMTIpOg0KZGVmaW5lICJUd28gUm90XzEgVmFjY2luYXRpb25zIjoNCgkoZXhpc3RzKCJSb3RfMSBWYWNjaW5hdGlvbiAyIE1vbnRocyIpIG9yIEFnZUluTW9udGhzQXQoZGF0ZSBmcm9tIGVuZCBvZiAiTWVhc3VyZW1lbnQgUGVyaW9kIikgPCAyKQ0KCWFuZA0KCShleGlzdHMoIlJvdF8xIFZhY2NpbmF0aW9uIDQgTW9udGhzIikgb3IgKEFnZUluTW9udGhzQXQoZGF0ZSBmcm9tIGVuZCBvZiAiTWVhc3VyZW1lbnQgUGVyaW9kIikgPCA0KSkNCg0KLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vDQoNCi8vIHRlc3QgcGF0aWVudCBhdCBtaW5pbXVtKDEzKToNCmRlZmluZSAiTWVuX0NfQyBWYWNjaW5hdGlvbiAxIFllYXIiOg0KCVtJbW11bml6YXRpb246ICJNZW5fQ19DIFZhY2NpbmUiXSBNZW5fQ19DVmFjY2luYXRpb24NCiAJCXdpdGggIlF1YWxpZnlpbmcgRW5jb3VudGVycyBEdXJpbmcgTWVhc3VyZW1lbnQgUGVyaW9kIiBRdWFsaWZ5aW5nRW5jb3VudGVyDQogICAgICAJCXN1Y2ggdGhhdCAoDQoJCQkJCQlBZ2VJblllYXJzQXQoRkhJUkhlbHBlcnMuVG9EYXRlVGltZShNZW5fQ19DVmFjY2luYXRpb24ub2NjdXJyZW5jZSkpIDw9IDENCgkJCQkJKQ0KCQl3aGVyZQlNZW5fQ19DVmFjY2luYXRpb24uc3RhdHVzICA9ICdjb21wbGV0ZWQnDQoNCi8vIHRlc3QgcGF0aWVudCBhdCBtaW5pbXVtOg0KZGVmaW5lICJPbmUgTWVuX0NfQyBWYWNjaW5hdGlvbiI6DQoJKGV4aXN0cygiTWVuX0NfQyBWYWNjaW5hdGlvbiAxIFllYXIiKSBvciAoQWdlSW5ZZWFyc0F0KGRhdGUgZnJvbSBlbmQgb2YgIk1lYXN1cmVtZW50IFBlcmlvZCIpICA8IDEpKQ0KDQovLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8NCg0KLy8gdGVzdCBwYXRpZW50IGF0IG1pbmltdW0oMTQpOg0KZGVmaW5lICJNTVIgVmFjY2luYXRpb24gMSBZZWFyIjoNCglbSW1tdW5pemF0aW9uOiAiTU1SIFZhY2NpbmUiXSBNTVJWYWNjaW5hdGlvbg0KIAkJd2l0aCAiUXVhbGlmeWluZyBFbmNvdW50ZXJzIER1cmluZyBNZWFzdXJlbWVudCBQZXJpb2QiIFF1YWxpZnlpbmdFbmNvdW50ZXINCiAgICAgIAkJc3VjaCB0aGF0ICgNCgkJCQkJCUFnZUluWWVhcnNBdChGSElSSGVscGVycy5Ub0RhdGVUaW1lKE1NUlZhY2NpbmF0aW9uLm9jY3VycmVuY2UpKSA8PSAxDQoJCQkJCSkNCgkJCXdoZXJlIE1NUlZhY2NpbmF0aW9uLnN0YXR1cyAgPSAnY29tcGxldGVkJw0KDQpkZWZpbmUgIk9uZSBNTVIgVmFjY2luYXRpb24iOg0KCShleGlzdHMoIk1NUiBWYWNjaW5hdGlvbiAxIFllYXIiKSBvciAoQWdlSW5ZZWFyc0F0KGRhdGUgZnJvbSBlbmQgb2YgIk1lYXN1cmVtZW50IFBlcmlvZCIpICA8IDEpKQ0KDQovLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8NCg0KLy8gdGVzdCBwYXRpZW50IGF0IG1pbmltdW0oMTUpOg0KZGVmaW5lICJWYXIgVmFjY2luYXRpb24gMTUgTW9udGhzIjoNCglbSW1tdW5pemF0aW9uOiAiVmFyIFZhY2NpbmUiXSBWYXJWYWNjaW5hdGlvbg0KIAkJd2l0aCAiUXVhbGlmeWluZyBFbmNvdW50ZXJzIER1cmluZyBNZWFzdXJlbWVudCBQZXJpb2QiIFF1YWxpZnlpbmdFbmNvdW50ZXINCiAgICAgIAkJc3VjaCB0aGF0ICgNCgkJCQkJCUFnZUluTW9udGhzQXQoRkhJUkhlbHBlcnMuVG9EYXRlVGltZShWYXJWYWNjaW5hdGlvbi5vY2N1cnJlbmNlKSkgPD0gMTUNCgkJCQkJKQ0KCQl3aGVyZSBWYXJWYWNjaW5hdGlvbi5zdGF0dXMgID0gJ2NvbXBsZXRlZCcNCg0KLy8gdGVzdCBwYXRpZW50IGF0IG1pbmltdW0oMTYpOg0KZGVmaW5lICJPbmUgVmFyIFZhY2NpbmF0aW9uIjoNCgkoZXhpc3RzKCJWYXIgVmFjY2luYXRpb24gMTUgTW9udGhzIikgb3IgKEFnZUluTW9udGhzQXQoZGF0ZSBmcm9tIGVuZCBvZiAiTWVhc3VyZW1lbnQgUGVyaW9kIikgPCAxNSkpDQoNCi8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLw0KDQovLyB0ZXN0IHBhdGllbnQgYXQgbWluaW11bSgxNyk6DQpkZWZpbmUgIk1NUlYgVmFjY2luYXRpb24gNCBZZWFycyI6DQoJW0ltbXVuaXphdGlvbjogIk1NUlYgVmFjY2luZSJdIE1NUlZWYWNjaW5hdGlvbg0KIAkJd2l0aCAiUXVhbGlmeWluZyBFbmNvdW50ZXJzIER1cmluZyBNZWFzdXJlbWVudCBQZXJpb2QiIFF1YWxpZnlpbmdFbmNvdW50ZXINCiAgICAgIAkJc3VjaCB0aGF0ICgNCgkJCQkJCUFnZUluWWVhcnNBdChGSElSSGVscGVycy5Ub0RhdGVUaW1lKE1NUlZWYWNjaW5hdGlvbi5vY2N1cnJlbmNlKSkgPD0gNA0KCQkJCQkpDQoJCQl3aGVyZSBNTVJWVmFjY2luYXRpb24uc3RhdHVzICA9ICdjb21wbGV0ZWQnDQoNCi8vIHRlc3QgcGF0aWVudCBhdCBtaW5pbXVtKDE4KToNCmRlZmluZSAiT25lIE1NUlYgVmFjY2luYXRpb24iOg0KCShleGlzdHMoIk1NUlYgVmFjY2luYXRpb24gNCBZZWFycyIpIG9yIChBZ2VJblllYXJzQXQoZGF0ZSBmcm9tIGVuZCBvZiAiTWVhc3VyZW1lbnQgUGVyaW9kIikgPCA0KSkNCg0KLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vDQoNCi8vIHRlc3QgcGF0aWVudCBhdCBtaW5pbXVtKDE5KToNCmRlZmluZSAiVGRhcF9JUFYgVmFjY2luYXRpb24gNCBZZWFycyI6DQoJW0ltbXVuaXphdGlvbjogIlRkYXBfSVBWIFZhY2NpbmUiXSBUZGFwX0lQVlZhY2NpbmF0aW9uDQogCQl3aXRoICJRdWFsaWZ5aW5nIEVuY291bnRlcnMgRHVyaW5nIE1lYXN1cmVtZW50IFBlcmlvZCIgUXVhbGlmeWluZ0VuY291bnRlcg0KICAgICAgCQlzdWNoIHRoYXQgKA0KCQkJCQkJQWdlSW5ZZWFyc0F0KEZISVJIZWxwZXJzLlRvRGF0ZVRpbWUoVGRhcF9JUFZWYWNjaW5hdGlvbi5vY2N1cnJlbmNlKSkgPD0gNA0KCQkJCQkpDQoJCXdoZXJlCVRkYXBfSVBWVmFjY2luYXRpb24uc3RhdHVzICA9ICdjb21wbGV0ZWQnDQoNCi8vIHRlc3QgcGF0aWVudCBhdCBtaW5pbXVtKDIwKToNCmRlZmluZSAiT25lIFRkYXBfSVBWIFZhY2NpbmF0aW9uIjoNCgkoZXhpc3RzKCJUZGFwX0lQViBWYWNjaW5hdGlvbiA0IFllYXJzIikgb3IgKEFnZUluWWVhcnNBdChkYXRlIGZyb20gZW5kIG9mICJNZWFzdXJlbWVudCBQZXJpb2QiKSA8IDQpKQ0KDQovLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8NCg0KLy8gdGVzdCBwYXRpZW50IGF0IG1pbmltdW0oMjEpOg0KZGVmaW5lICJIQiBWYWNjaW5hdGlvbiBHcmFkZSA3IjoNCglbSW1tdW5pemF0aW9uOiAiSEIgVmFjY2luZSJdIEhCVmFjY2luYXRpb24NCiAJCXdpdGggIlF1YWxpZnlpbmcgRW5jb3VudGVycyBEdXJpbmcgTWVhc3VyZW1lbnQgUGVyaW9kIiBRdWFsaWZ5aW5nRW5jb3VudGVyDQogICAgICAJCXN1Y2ggdGhhdCAoDQoJCQkJCQlBZ2VJblllYXJzQXQoRkhJUkhlbHBlcnMuVG9EYXRlVGltZShIQlZhY2NpbmF0aW9uLm9jY3VycmVuY2UpKSA8PSAxMg0KCQkJCQkpDQoJCXdoZXJlIEhCVmFjY2luYXRpb24uc3RhdHVzICA9ICdjb21wbGV0ZWQnDQoNCi8vIHRlc3QgcGF0aWVudCBhdCBtaW5pbXVtKDIyKToNCmRlZmluZSAiT25lIEhCIFZhY2NpbmF0aW9uIjoNCgkoZXhpc3RzKCJIQiBWYWNjaW5hdGlvbiBHcmFkZSA3Iikgb3IgKEFnZUluWWVhcnNBdChkYXRlIGZyb20gZW5kIG9mICJNZWFzdXJlbWVudCBQZXJpb2QiKSA8IDEyKSkNCg0KLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vDQoNCg0KLy8gdGVzdCBwYXRpZW50IGF0IG1pbmltdW0oMjMpOg0KZGVmaW5lICJNZW5fQ19BQ1lXIFZhY2NpbmF0aW9uIEdyYWRlIDciOg0KCVtJbW11bml6YXRpb246ICJNZW5fQ19BQ1lXIFZhY2NpbmUiXSBNZW5fQ19BQ1lXVmFjY2luYXRpb24NCiAJCXdpdGggIlF1YWxpZnlpbmcgRW5jb3VudGVycyBEdXJpbmcgTWVhc3VyZW1lbnQgUGVyaW9kIiBRdWFsaWZ5aW5nRW5jb3VudGVyDQogICAgICAJCXN1Y2ggdGhhdCAoDQoJCQkJCQlBZ2VJblllYXJzQXQoRkhJUkhlbHBlcnMuVG9EYXRlVGltZShNZW5fQ19BQ1lXVmFjY2luYXRpb24ub2NjdXJyZW5jZSkpIDw9IDEyDQoJCQkJCSkNCgkJd2hlcmUJTWVuX0NfQUNZV1ZhY2NpbmF0aW9uLnN0YXR1cyAgPSAnY29tcGxldGVkJw0KDQovLyB0ZXN0IHBhdGllbnQgYXQgbWluaW11bSgyNCk6DQpkZWZpbmUgIk9uZSBNZW5fQ19BQ1lXIFZhY2NpbmF0aW9uIjoNCgkoZXhpc3RzKCJNZW5fQ19BQ1lXIFZhY2NpbmF0aW9uIEdyYWRlIDciKSBvciAoQWdlSW5ZZWFyc0F0KGRhdGUgZnJvbSBlbmQgb2YgIk1lYXN1cmVtZW50IFBlcmlvZCIpIDwgMTIpKQ0KDQovLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8NCg0KDQovLyB0ZXN0IHBhdGllbnQgYXQgbWluaW11bSgyNSk6DQpkZWZpbmUgIkhQVl85IFZhY2NpbmF0aW9uIEdyYWRlIDciOg0KCVtJbW11bml6YXRpb246ICJIUFZfOSBWYWNjaW5lIl0gSFBWXzlWYWNjaW5hdGlvbg0KIAkJd2l0aCAiUXVhbGlmeWluZyBFbmNvdW50ZXJzIER1cmluZyBNZWFzdXJlbWVudCBQZXJpb2QiIFF1YWxpZnlpbmdFbmNvdW50ZXINCiAgICAgIAkJc3VjaCB0aGF0ICgNCgkJCQkJCUFnZUluWWVhcnNBdChGSElSSGVscGVycy5Ub0RhdGVUaW1lKEhQVl85VmFjY2luYXRpb24ub2NjdXJyZW5jZSkpIDw9IDEyDQoJCQkJCSkNCgkJd2hlcmUJSFBWXzlWYWNjaW5hdGlvbi5zdGF0dXMgID0gJ2NvbXBsZXRlZCcNCg0KLy8gdGVzdCBwYXRpZW50IGF0IG1pbmltdW0oMjYpOg0KZGVmaW5lICJPbmUgSFBWXzkgVmFjY2luYXRpb24iOg0KCShleGlzdHMoIkhQVl85IFZhY2NpbmF0aW9uIEdyYWRlIDciKSBvciAoQWdlSW5ZZWFyc0F0KGRhdGUgZnJvbSBlbmQgb2YgIk1lYXN1cmVtZW50IFBlcmlvZCIpIDwgMTIpKQ0KDQovLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8NCg0KLy8vIHRlc3QgcGF0aWVudCBhdCBtaW5pbXVtKDI3KToNCmRlZmluZSAiVGRhcCBWYWNjaW5hdGlvbiAxNCBZZWFycyI6DQoJW0ltbXVuaXphdGlvbjogIlRkYXAgVmFjY2luZSJdIFRkYXBWYWNjaW5hdGlvbg0KIAkJd2l0aCAiUXVhbGlmeWluZyBFbmNvdW50ZXJzIER1cmluZyBNZWFzdXJlbWVudCBQZXJpb2QiIFF1YWxpZnlpbmdFbmNvdW50ZXINCiAgICAgIAkJc3VjaCB0aGF0ICgNCgkJCQkJCShBZ2VJblllYXJzQXQoRkhJUkhlbHBlcnMuVG9EYXRlVGltZShUZGFwVmFjY2luYXRpb24ub2NjdXJyZW5jZSkpID49IDE0KQ0KCQkJCQkJCWFuZCAoQWdlSW5ZZWFyc0F0KEZISVJIZWxwZXJzLlRvRGF0ZVRpbWUoVGRhcFZhY2NpbmF0aW9uLm9jY3VycmVuY2UpKSA8IDI0KQ0KCQkJCQkpDQoJCXdoZXJlIFRkYXBWYWNjaW5hdGlvbi5zdGF0dXMgID0gJ2NvbXBsZXRlZCcNCg0KDQovLyB0ZXN0IHBhdGllbnQgYXQgbWluaW11bSgyOCk6DQpkZWZpbmUgIlRkYXAgVmFjY2luYXRpb24gMjQgWWVhcnMiOg0KCVtJbW11bml6YXRpb246ICJUZGFwIFZhY2NpbmUiXSBUZGFwVmFjY2luYXRpb24NCiAJCXdpdGggIlF1YWxpZnlpbmcgRW5jb3VudGVycyBEdXJpbmcgTWVhc3VyZW1lbnQgUGVyaW9kIiBRdWFsaWZ5aW5nRW5jb3VudGVyDQogICAgICAJCXN1Y2ggdGhhdCAoDQoJCQkJCQkJKEFnZUluWWVhcnNBdChGSElSSGVscGVycy5Ub0RhdGVUaW1lKFRkYXBWYWNjaW5hdGlvbi5vY2N1cnJlbmNlKSkgPj0gMjQpDQoJCQkJCSkNCgkJd2hlcmUJVGRhcFZhY2NpbmF0aW9uLnN0YXR1cyAgPSAnY29tcGxldGVkJw0KDQoNCi8vIHRlc3QgcGF0aWVudCBhdCBtaW5pbXVtKDI5KToNCmRlZmluZSAiVHdvIFRkYXAgVmFjY2luYXRpb25zIjoNCgkoZXhpc3RzKCJUZGFwIFZhY2NpbmF0aW9uIDE0IFllYXJzIikgb3IgQWdlSW5ZZWFyc0F0KGRhdGUgZnJvbSBlbmQgb2YgIk1lYXN1cmVtZW50IFBlcmlvZCIpIDwgMTQpDQoJYW5kDQoJKGV4aXN0cygiVGRhcCBWYWNjaW5hdGlvbiAyNCBZZWFycyIpIG9yIChBZ2VJblllYXJzQXQoZGF0ZSBmcm9tIGVuZCBvZiAiTWVhc3VyZW1lbnQgUGVyaW9kIikgPCAyNCkpDQoNCi8qDQpkZWZpbmUgIlRkYXAgVmFjY2luYXRpb24gaW4gcHJlZ25hbmN5IjoNCglbT2JzZXJ2YXRpb246ICJQcmVnbmFuY3kgU3RhdHVzIl0gUHJlZ25hbmN5VmFsaWRhdGlvbg0KCQl3aXRoICJRdWFsaWZ5aW5nIEVuY291bnRlcnMgRHVyaW5nIE1lYXN1cmVtZW50IFBlcmlvZCIgUXVhbGlmeWluZ0VuY291bnRlcg0KCQkJc3VjaCB0aGF0ICgNCgkJCQlHbG9iYWwuIkxhdGVzdCIoUHJlZ25hbmN5VmFsaWRhdGlvbi5lZmZlY3RpdmUpIDkgbW9udGhzIG9yIGxlc3Mgb24gb3IgYmVmb3JlIGVuZCBvZiAiTWVhc3VyZW1lbnQgUGVyaW9kIg0KCQkJCWFuZA0KCQkJCSJQcmVnbmFudCIgaW4gRkhJUkhlbHBlcnMuVG9Db25jZXB0KFByZWduYW5jeVZhbGlkYXRpb24udmFsdWUpLmNvZGVzDQoJCQkpDQoJCXdoZXJlIFByZWduYW5jeVZhbGlkYXRpb24uc3RhdHVzIGluIHsgJ2ZpbmFsJywgJ2FtZW5kZWQnLCAnY29ycmVjdGVkJyB9DQoJCSAJYW5kIGV4aXN0cyhbSW1tdW5pemF0aW9uOiAiVGRhcCBWYWNjaW5lIl0gVGRhcFZhY2NpbmF0aW9uDQogCQkJCQl3aXRoICJRdWFsaWZ5aW5nIEVuY291bnRlcnMgRHVyaW5nIE1lYXN1cmVtZW50IFBlcmlvZCIgUXVhbGlmeWluZ0VuY291bmNoDQoJCQkJCQlzdWNoIHRoYXQgKA0KCQkJCQkJCUZISVJIZWxwZXJzLlRvRGF0ZVRpbWUoVGRhcFZhY2NpbmF0aW9uLm9jY3VycmVuY2UpIDkgbW9udGhzIG9yIGxlc3Mgb24gb3IgYmVmb3JlIGVuZCBvZiAiTWVhc3VyZW1lbnQgUGVyaW9kIg0KCQkJCQkJKQ0KCQkJCQl3aGVyZSBUZGFwVmFjY2luYXRpb24uc3RhdHVzICA9ICdjb21wbGV0ZWQnDQoJCQkpDQoqLw0KDQovLyB0ZXN0IHBhdGllbnQgYXQgbWluaW11bSgzMCk6DQovKg0KZGVmaW5lICJQcmVnbmFudEZlbWFsZSI6DQoJW09ic2VydmF0aW9uOiAiUHJlZ25hbmN5IFN0YXR1cyJdIFByZWduYW5jeVZhbGlkYXRpb24NCgkJd2l0aCAiUXVhbGlmeWluZyBFbmNvdW50ZXJzIER1cmluZyBNZWFzdXJlbWVudCBQZXJpb2QiIFF1YWxpZnlpbmdFbmNvdW50ZXINCgkJCXN1Y2ggdGhhdCAoDQoJCQkJKEdsb2JhbC4iTGF0ZXN0IihQcmVnbmFuY3lWYWxpZGF0aW9uLmVmZmVjdGl2ZSkgOSBtb250aHMgb3IgbGVzcyBvbiBvciBiZWZvcmUgZW5kIG9mICJNZWFzdXJlbWVudCBQZXJpb2QiKQ0KCQkJCWFuZA0KCQkJCSgiUHJlZ25hbnQiIGluIEZISVJIZWxwZXJzLlRvQ29uY2VwdChQcmVnbmFuY3lWYWxpZGF0aW9uLnZhbHVlKS5jb2RlcykNCgkJCSkNCgkJd2hlcmUgUHJlZ25hbmN5VmFsaWRhdGlvbi5zdGF0dXMgaW4geyAnZmluYWwnLCAnYW1lbmRlZCcsICdjb3JyZWN0ZWQnIH0NCiovDQoNCmRlZmluZSAiUHJlZ25hbnRGZW1hbGUiOg0KCVtPYnNlcnZhdGlvbjogIlByZWduYW5jeSBTdGF0dXMiXSBQcmVnbmFuY3lWYWxpZGF0aW9uDQoJCQl3aGVyZSBQcmVnbmFuY3lWYWxpZGF0aW9uLnN0YXR1cyBpbiB7ICdmaW5hbCcsICdhbWVuZGVkJywgJ2NvcnJlY3RlZCcgfQ0KCQkJCWFuZCBQcmVnbmFuY3lWYWxpZGF0aW9uLnZhbHVlIGlzIG5vdCBudWxsDQogICAgICAgIGFuZCAoIkxhdGVzdCIoUHJlZ25hbmN5VmFsaWRhdGlvbi5lZmZlY3RpdmUpIDkgbW9udGhzIG9yIGxlc3Mgb24gb3IgYmVmb3JlIGVuZCBvZiAiTWVhc3VyZW1lbnQgUGVyaW9kIikNCgkJCQkvL2FuZAkoIlByZWduYW50IiBpbiBGSElSSGVscGVycy5Ub0NvbmNlcHQoUHJlZ25hbmN5VmFsaWRhdGlvbi52YWx1ZSkuY29kZXMpDQovKg0KZGVmaW5lICJUZGFwIFZhY2NpbmF0aW9uIGluIHByZWduYW5jeSI6DQoJW0ltbXVuaXphdGlvbjogIlRkYXAgVmFjY2luZSJdIFRkYXBWYWNjaW5hdGlvbg0KIAkJd2l0aCAiUXVhbGlmeWluZyBFbmNvdW50ZXJzIER1cmluZyBNZWFzdXJlbWVudCBQZXJpb2QiIFF1YWxpZnlpbmdFbmNvdW5jaA0KCQkJCXN1Y2ggdGhhdCAoDQoJCQkJCUZISVJIZWxwZXJzLlRvRGF0ZVRpbWUoVGRhcFZhY2NpbmF0aW9uLm9jY3VycmVuY2UpIDkgbW9udGhzIG9yIGxlc3Mgb24gb3IgYmVmb3JlIGVuZCBvZiAiTWVhc3VyZW1lbnQgUGVyaW9kIg0KCQkJCSkNCgl3aGVyZSBUZGFwVmFjY2luYXRpb24uc3RhdHVzICA9ICdjb21wbGV0ZWQnDQoqLw0KDQpkZWZpbmUgIlRFU1QiOg0KCS8vW09ic2VydmF0aW9uOiAiUHJlZ25hbmN5IFN0YXR1cyJdIFByZWduYW5jeVZhbGlkYXRpb24NCglbT2JzZXJ2YXRpb246ICJXZWVrcyBvZiBHZXN0YXRpb24iXSBHZXN0YXRpb25WYWxpZGF0aW9uDQoJCXdoZXJlIEZISVJIZWxwZXJzLlRvUXVhbnRpdHkoR2VzdGF0aW9uVmFsaWRhdGlvbi52YWx1ZSkgYmV0d2VlbiAyNyAnd2VlaycgYW5kIDMyICd3ZWVrJw0KCQkvL3JldHVybiBGSElSSGVscGVycy5Ub1F1YW50aXR5KEdlc3RhdGlvblZhbGlkYXRpb24udmFsdWUpDQoNCi8vIHRlc3QgcGF0aWVudCBhdCBtaW5pbXVtKDMxKToNCi8qDQpkZWZpbmUgIlRkYXAgVmFjY2luYXRpb24gaW4gcHJlZ25hbmN5IjoNCglbT2JzZXJ2YXRpb246ICJXZWVrcyBvZiBHZXN0YXRpb24iXSBHZXN0YXRpb25WYWxpZGF0aW9uDQoJCXdpdGggIlF1YWxpZnlpbmcgRW5jb3VudGVycyBEdXJpbmcgTWVhc3VyZW1lbnQgUGVyaW9kIiBRdWFsaWZ5aW5nRW5jb3VudGVyDQoJCQlzdWNoIHRoYXQgKA0KCQkJCUZISVJIZWxwZXJzLlRvUXVhbnRpdHkoR2VzdGF0aW9uVmFsaWRhdGlvbi52YWx1ZSkgYmV0d2VlbiAyNyAnd2VlaycgYW5kIDMyICd3ZWVrJw0KCQkJKQ0KCQl3aGVyZQ0KCQkJR2VzdGF0aW9uVmFsaWRhdGlvbi5zdGF0dXMgaW4geyAnZmluYWwnLCAnYW1lbmRlZCcsICdjb3JyZWN0ZWQnIH0NCgkJIAlhbmQgZXhpc3RzKFtJbW11bml6YXRpb246ICJUZGFwIFZhY2NpbmUiXSBUZGFwVmFjY2luYXRpb24NCgkJCQl3aXRoICJRdWFsaWZ5aW5nIEVuY291bnRlcnMgRHVyaW5nIE1lYXN1cmVtZW50IFBlcmlvZCIgUXVhbGlmeWluZ0VuY291bmNoDQoJCQkJCXN1Y2ggdGhhdCAoDQoJCQkJCQlGSElSSGVscGVycy5Ub0RhdGVUaW1lKFRkYXBWYWNjaW5hdGlvbi5vY2N1cnJlbmNlKSA5IG1vbnRocyBvciBsZXNzIG9uIG9yIGJlZm9yZSBlbmQgb2YgIk1lYXN1cmVtZW50IFBlcmlvZCINCgkJCQkJKQ0KCQkJCXdoZXJlIFRkYXBWYWNjaW5hdGlvbi5zdGF0dXMgID0gJ2NvbXBsZXRlZCcNCgkJCSkNCiovDQoNCmRlZmluZSAiSWRlYWwgR2VzdGF0aW9uIGluIHByZWduYW5jeSI6DQoJW09ic2VydmF0aW9uOiAiV2Vla3Mgb2YgR2VzdGF0aW9uIl0gR2VzdGF0aW9uVmFsaWRhdGlvbg0KCQl3aGVyZQlHZXN0YXRpb25WYWxpZGF0aW9uLnN0YXR1cyBpbiB7ICdmaW5hbCcsICdhbWVuZGVkJywgJ2NvcnJlY3RlZCcgfQ0KCQkJYW5kIEdlc3RhdGlvblZhbGlkYXRpb24udmFsdWUgaXMgbm90IG51bGwNCgkJCWFuZCAoIkxhdGVzdCIoR2VzdGF0aW9uVmFsaWRhdGlvbi5lZmZlY3RpdmUpIDkgbW9udGhzIG9yIGxlc3Mgb24gb3IgYmVmb3JlIGVuZCBvZiAiTWVhc3VyZW1lbnQgUGVyaW9kIikNCgkJCWFuZCBGSElSSGVscGVycy5Ub1F1YW50aXR5KEdlc3RhdGlvblZhbGlkYXRpb24udmFsdWUpLnZhbHVlIGJldHdlZW4gMjcgYW5kIDMyDQoNCg0KZGVmaW5lICJUZGFwIFZhY2NpbmF0aW9uIGluIHByZWduYW5jeSI6DQoJW0ltbXVuaXphdGlvbjogIlRkYXAgVmFjY2luZSJdIFRkYXBWYWNjaW5hdGlvbg0KCQl3aGVyZQlUZGFwVmFjY2luYXRpb24uc3RhdHVzICA9ICdjb21wbGV0ZWQnDQoJCQkJYW5kCVRkYXBWYWNjaW5hdGlvbi52YWNjaW5lQ29kZSBpcyBub3QgbnVsbA0KCQkJCWFuZCAoIkxhdGVzdCIoVGRhcFZhY2NpbmF0aW9uLm9jY3VycmVuY2UpIDkgbW9udGhzIG9yIGxlc3Mgb24gb3IgYmVmb3JlIGVuZCBvZiAiTWVhc3VyZW1lbnQgUGVyaW9kIikNCg0KLy8gdGVzdCBwYXRpZW50IGF0IG1pbmltdW0oMzIpOg0KZGVmaW5lICJPbmUgZG9zZSBUZGFwIGluIGN1cnJlbnQgcHJlZ25hbmN5IjoNCglleGlzdHMoIklkZWFsIEdlc3RhdGlvbiBpbiBwcmVnbmFuY3kiKQ0KCWFuZA0KCWV4aXN0cygiVGRhcCBWYWNjaW5hdGlvbiBpbiBwcmVnbmFuY3kiKQ0KDQovLyB0ZXN0IHBhdGllbnQgYXQgbWluaW11bSgzMyk6DQpkZWZpbmUgIlRkIFZhY2NpbmF0aW9uIDM0IFllYXJzIjoNCglbSW1tdW5pemF0aW9uOiAiVGQgVmFjY2luZSJdIFRkVmFjY2luYXRpb24NCiAJCXdpdGggIlF1YWxpZnlpbmcgRW5jb3VudGVycyBEdXJpbmcgTWVhc3VyZW1lbnQgUGVyaW9kIiBRdWFsaWZ5aW5nRW5jb3VudGVyDQogICAgICAJCXN1Y2ggdGhhdCAoDQoJCQkJCQkoQWdlSW5ZZWFyc0F0KEZISVJIZWxwZXJzLlRvRGF0ZVRpbWUoVGRWYWNjaW5hdGlvbi5vY2N1cnJlbmNlKSkgPj0gMzQpDQoJCQkJCQkJYW5kDQoJCQkJCQkoRkhJUkhlbHBlcnMuVG9EYXRlVGltZShUZFZhY2NpbmF0aW9uLm9jY3VycmVuY2UpIGR1cmluZyBJbnRlcnZhbFtUb2RheSgpIC0gMTAgeWVhcnMsIFRvZGF5KCldKQ0KCQkJCQkpDQoJCXdoZXJlIFRkVmFjY2luYXRpb24uc3RhdHVzICA9ICdjb21wbGV0ZWQnDQoNCi8vIHRlc3QgcGF0aWVudCBhdCBtaW5pbXVtKDM0KToNCmRlZmluZSAiT25lIFRkIFZhY2NpbmF0aW9uIjoNCgkoZXhpc3RzKCJUZCBWYWNjaW5hdGlvbiAzNCBZZWFycyIpIG9yIChBZ2VJblllYXJzQXQoZGF0ZSBmcm9tIGVuZCBvZiAiTWVhc3VyZW1lbnQgUGVyaW9kIikgPCAzNCkpDQoNCi8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLw0KDQovLyB0ZXN0IHBhdGllbnQgYXQgbWluaW11bSgzNSk6DQpkZWZpbmUgIkhaIFZhY2NpbmF0aW9uIFllYXIgNjUiOg0KCVtJbW11bml6YXRpb246ICJIWiBWYWNjaW5lIl0gSFpWYWNjaW5hdGlvbg0KIAkJd2l0aCAiUXVhbGlmeWluZyBFbmNvdW50ZXJzIER1cmluZyBNZWFzdXJlbWVudCBQZXJpb2QiIFF1YWxpZnlpbmdFbmNvdW50ZXINCiAgICAgIAkJc3VjaCB0aGF0ICgNCgkJCQkJCUFnZUluWWVhcnNBdChGSElSSGVscGVycy5Ub0RhdGVUaW1lKEhaVmFjY2luYXRpb24ub2NjdXJyZW5jZSkpID49IDY1DQoJCQkJCSkNCgkJd2hlcmUgSFpWYWNjaW5hdGlvbi5zdGF0dXMgID0gJ2NvbXBsZXRlZCcNCg0KLy8gdGVzdCBwYXRpZW50IGF0IG1pbmltdW0oMzYpOg0KZGVmaW5lICJPbmUgSFogVmFjY2luYXRpb24iOg0KCShleGlzdHMoIkhaIFZhY2NpbmF0aW9uIFllYXIgNjUiKSBvciAoQWdlSW5ZZWFyc0F0KGRhdGUgZnJvbSBlbmQgb2YgIk1lYXN1cmVtZW50IFBlcmlvZCIpIDwgNjUpKQ0KDQovLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8NCg0KLy9QbmV1X1BfMjMNCi8vIHRlc3QgcGF0aWVudCBhdCBtaW5pbXVtKDM3KToNCmRlZmluZSAiUG5ldV9QXzIzIFZhY2NpbmF0aW9uIFllYXIgNjUiOg0KCVtJbW11bml6YXRpb246ICJQbmV1X1BfMjMgVmFjY2luZSJdIFBuZXVfUF8yM1ZhY2NpbmF0aW9uDQogCQl3aXRoICJRdWFsaWZ5aW5nIEVuY291bnRlcnMgRHVyaW5nIE1lYXN1cmVtZW50IFBlcmlvZCIgUXVhbGlmeWluZ0VuY291bnRlcg0KICAgICAgCQlzdWNoIHRoYXQgKA0KCQkJCQkJQWdlSW5ZZWFyc0F0KEZISVJIZWxwZXJzLlRvRGF0ZVRpbWUoUG5ldV9QXzIzVmFjY2luYXRpb24ub2NjdXJyZW5jZSkpID49IDY1DQoJCQkJCSkNCgkJd2hlcmUgUG5ldV9QXzIzVmFjY2luYXRpb24uc3RhdHVzICA9ICdjb21wbGV0ZWQnDQoNCi8vIHRlc3QgcGF0aWVudCBhdCBtaW5pbXVtKDM4KToNCmRlZmluZSAiT25lIFBuZXVfUF8yMyBWYWNjaW5hdGlvbiI6DQoJKGV4aXN0cygiUG5ldV9QXzIzIFZhY2NpbmF0aW9uIFllYXIgNjUiKSBvciAoQWdlSW5ZZWFyc0F0KGRhdGUgZnJvbSBlbmQgb2YgIk1lYXN1cmVtZW50IFBlcmlvZCIpIDwgNjUpKQ0KDQovLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8NCg0KLy8gdGVzdCBwYXRpZW50IGF0IG1pbmltdW0oMzkpOg0KZGVmaW5lICJJbmYgVmFjY2luYXRpb24iOg0KCVtJbW11bml6YXRpb246ICJJbmYgVmFjY2luZSJdIEluZlZhY2NpbmF0aW9uDQogCQl3aXRoICJRdWFsaWZ5aW5nIEVuY291bnRlcnMgRHVyaW5nIE1lYXN1cmVtZW50IFBlcmlvZCIgUXVhbGlmeWluZ0VuY291bnRlcg0KICAgICAgCQlzdWNoIHRoYXQgKA0KCQkJCQkJRkhJUkhlbHBlcnMuVG9EYXRlVGltZShJbmZWYWNjaW5hdGlvbi5vY2N1cnJlbmNlKSBkdXJpbmcgIkZhbGwgUGVyaW9kIg0KCQkJCQkpDQoJCXdoZXJlIEluZlZhY2NpbmF0aW9uLnN0YXR1cyAgPSAnY29tcGxldGVkJw0KDQovLyB0ZXN0IHBhdGllbnQgYXQgbWluaW11bSg0MCk6DQpkZWZpbmUgIlNlYXNvbmFsIEluZiBWYWNjaW5hdGVkIjoNCgkoZXhpc3RzKCJJbmYgVmFjY2luYXRpb24iKSBvciAoQWdlSW5Nb250aHNBdChkYXRlIGZyb20gZW5kIG9mICJNZWFzdXJlbWVudCBQZXJpb2QiKSA8IDYpKQ0KLy8NCi8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vDQovKg0KZGVmaW5lIGZ1bmN0aW9uIEZhbGxJbnRlcnZhbChtMSBJbnRlZ2VyLGQxIEludGVnZXIsbTIgSW50ZWdlcixkMiBJbnRlZ2VyKToNCi8vCWlmIFRvZGF5KCkgPiBEYXRlICh5ZWFyIGZybywgbSBUb2RheSgpLCA5LCAyMikgdGhlbg0KCQlJbnRlcnZhbFsgRGF0ZSggeWVhciBmcm9tIFRvZGF5KCksIG0xLCBkMSksIERhdGUoeWVhciBmcm9tIFRvZGF5KCksIG0yLCBkMikpDQovLwllbHNlDQovLwkJSW50ZXJ2YWxbIERhdGUoeWVhciBmcm9tIFRvZGF5KCkgLSAxLCA5LCAyMiksIERhdGUoeWVhciBmcm9tIFRvZGF5KCkgLSAxLCAxMiwgMjIpKQ0KKi8NCg0KDQovLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vDQpkZWZpbmUgZnVuY3Rpb24gIk5vcm1hbGl6ZSBJbnRlcnZhbCIoY2hvaWNlIENob2ljZTxGSElSLmRhdGVUaW1lLCBGSElSLlBlcmlvZCwgRkhJUi5UaW1pbmcsIEZISVIuaW5zdGFudCwgRkhJUi5zdHJpbmcsIEZISVIuQWdlLCBGSElSLlJhbmdlPiApOg0KICBjYXNlDQogIAkgIHdoZW4gY2hvaWNlIGlzIEZISVIuZGF0ZVRpbWUgdGhlbg0KICAJSW50ZXJ2YWxbRkhJUkhlbHBlcnMuVG9EYXRlVGltZShjaG9pY2UgYXMgRkhJUi5kYXRlVGltZSksIEZISVJIZWxwZXJzLlRvRGF0ZVRpbWUoY2hvaWNlIGFzIEZISVIuZGF0ZVRpbWUpXQ0KICAJCXdoZW4gY2hvaWNlIGlzIEZISVIuUGVyaW9kIHRoZW4NCiAgCQlGSElSSGVscGVycy5Ub0ludGVydmFsKGNob2ljZSBhcyBGSElSLlBlcmlvZCkNCiAgCQl3aGVuIGNob2ljZSBpcyBGSElSLmluc3RhbnQgdGhlbg0KICAJCQlJbnRlcnZhbFtGSElSSGVscGVycy5Ub0RhdGVUaW1lKGNob2ljZSBhcyBGSElSLmluc3RhbnQpLCBGSElSSGVscGVycy5Ub0RhdGVUaW1lKGNob2ljZSBhcyBGSElSLmluc3RhbnQpXQ0KICAJCXdoZW4gY2hvaWNlIGlzIEZISVIuQWdlIHRoZW4NCiAgCQkgIEludGVydmFsW0ZISVJIZWxwZXJzLlRvRGF0ZShQYXRpZW50LmJpcnRoRGF0ZSkgKyBGSElSSGVscGVycy5Ub1F1YW50aXR5KGNob2ljZSBhcyBGSElSLkFnZSksDQogIAkJCSAgRkhJUkhlbHBlcnMuVG9EYXRlKFBhdGllbnQuYmlydGhEYXRlKSArIEZISVJIZWxwZXJzLlRvUXVhbnRpdHkoY2hvaWNlIGFzIEZISVIuQWdlKSArIDEgeWVhcikNCiAgCQl3aGVuIGNob2ljZSBpcyBGSElSLlJhbmdlIHRoZW4NCiAgCQkgIEludGVydmFsW0ZISVJIZWxwZXJzLlRvRGF0ZShQYXRpZW50LmJpcnRoRGF0ZSkgKyBGSElSSGVscGVycy5Ub1F1YW50aXR5KChjaG9pY2UgYXMgRkhJUi5SYW5nZSkubG93KSwNCiAgCQkJICBGSElSSGVscGVycy5Ub0RhdGUoUGF0aWVudC5iaXJ0aERhdGUpICsgRkhJUkhlbHBlcnMuVG9RdWFudGl0eSgoY2hvaWNlIGFzIEZISVIuUmFuZ2UpLmhpZ2gpICsgMSB5ZWFyKQ0KICAJCXdoZW4gY2hvaWNlIGlzIEZISVIuVGltaW5nIHRoZW4NCiAgCQkgIE1lc3NhZ2UobnVsbCBhcyBJbnRlcnZhbDxEYXRlVGltZT4sIHRydWUsICcxJywgJ0Vycm9yJywgJ0Nhbm5vdCBjb21wdXRlIGEgc2luZ2xlIGludGVydmFsIGZyb20gYSBUaW1pbmcgdHlwZScpDQogICAgd2hlbiBjaG9pY2UgaXMgRkhJUi5zdHJpbmcgdGhlbg0KICAgICAgTWVzc2FnZShudWxsIGFzIEludGVydmFsPERhdGVUaW1lPiwgdHJ1ZSwgJzEnLCAnRXJyb3InLCAnQ2Fubm90IGNvbXB1dGUgYW4gaW50ZXJ2YWwgZnJvbSBhIFN0cmluZyB2YWx1ZScpDQogIAkJZWxzZQ0KICAJCQludWxsIGFzIEludGVydmFsPERhdGVUaW1lPg0KICAJZW5kDQoNCi8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8NCg0KZGVmaW5lIGZ1bmN0aW9uICJIYXNFbmQiKHBlcmlvZCBJbnRlcnZhbDxEYXRlVGltZT4gKToNCiAgbm90ICgNCiAgICBlbmQgb2YgcGVyaW9kIGlzIG51bGwNCiAgICAgIG9yDQogICAgICBlbmQgb2YgcGVyaW9kID0gbWF4aW11bSBEYXRlVGltZQ0KICApDQoNCi8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLw0KDQpkZWZpbmUgZnVuY3Rpb24gIkxhdGVzdCIoY2hvaWNlIENob2ljZTxGSElSLmRhdGVUaW1lLCBGSElSLlBlcmlvZCwgRkhJUi5UaW1pbmcsIEZISVIuaW5zdGFudCwgRkhJUi5zdHJpbmcsIEZISVIuQWdlLCBGSElSLlJhbmdlPiApOg0KICAoIk5vcm1hbGl6ZSBJbnRlcnZhbCIoY2hvaWNlKSkgcGVyaW9kDQogICAgcmV0dXJuDQogICAgICBpZiAoIEhhc0VuZChwZXJpb2QpKSB0aGVuIGVuZCBvZiBwZXJpb2QNCiAgICAgIGVsc2Ugc3RhcnQgb2YgcGVyaW9kDQoNCmRlZmluZSBmdW5jdGlvbiAiVmFjY2luZURvc2UiKCk6DQoJW0ltbXVuaXphdGlvbjogIkRUYVBfSVBWX0hpYiBWYWNjaW5lIl0gSW5mVmFjY2luYXRpb24NCgkJd2l0aCAiUXVhbGlmeWluZyBFbmNvdW50ZXJzIER1cmluZyBNZWFzdXJlbWVudCBQZXJpb2QiIFF1YWxpZnlpbmdFbmNvdW50ZXINCgkJCQkJc3VjaCB0aGF0ICgNCgkJCQkJCUZISVJIZWxwZXJzLlRvRGF0ZVRpbWUoSW5mVmFjY2luYXRpb24ub2NjdXJyZW5jZSkgZHVyaW5nICJGYWxsIFBlcmlvZCINCgkJCQkJKQ0KCQl3aGVyZSBJbmZWYWNjaW5hdGlvbi5zdGF0dXMgID0gJ2NvbXBsZXRlZCcNCgkJcmV0dXJuIHRydWUNCi8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8vLy8NCg==" + } + ] + }, + "request": { + "method": "PUT", + "url": "Library/ImmunizationStatus" + } + }, + { + "resource": { + "resourceType": "Measure", + "id": "ImmunizationStatus", + "name": "Children-Immunization-Status", + "title": "Immunization Status for Patients Starting Immunization in Infancy", + "status": "active", + "experimental": true, + "date": "2022-08-07T07:41:37-07:00", + "publisher": "Smile CDR", + "contact": [ + { + "telecom": [ + { + "system": "url", + "value": "https://smilecdr.com" + } + ] + } + ], + "description": "Percentage of population that is fully vaccinated based on the routine schedule of the Publicly Funded Immunization Schedules for Ontario – June 2022 (Page 3)", + "url": "http://content.smilecdr.com/fhir/dqm/Measure/ImmunizationStatus", + "useContext": [ + { + "code": { + "system": "http://terminology.hl7.org/CodeSystem/usage-context-type", + "version": "4.0.1", + "code": "program", + "display": "Program" + }, + "valueCodeableConcept": { + "text": "eligible-provider" + } + } + ], + "jurisdiction": [ + { + "coding": [ + { + "system": "urn:iso:std:iso:3166", + "version": "4.0.1", + "code": "CAN", + "display": "Canada" + } + ] + } + ], + "purpose": "Efficiency and Cost Reduction.", + "effectivePeriod": { + "start": "2022-01-01T00:00:00-07:00", + "end": "2022-12-31T23:59:59-07:00" + }, + "topic": [ + { + "coding": [ + { + "system": "http://loinc.org", + "code": "57024-2", + "display": "Health Quality Measure Document" + } + ] + } + ], + "library": [ + "http://content.smilecdr.com/fhir/dqm/Library/ImmunizationStatus" + ], + "scoring": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/measure-scoring", + "version": "4.0.1", + "code": "proportion", + "display": "Proportion" + } + ] + }, + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/measure-type", + "version": "4.2.0", + "code": "process", + "display": "Process" + } + ] + } + ], + "improvementNotation": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/measure-improvement-notation", + "version": "0.1.0", + "code": "increase", + "display": "Increased score indicates improvement" + } + ] + }, + "group": [ + { + "id": "group-1", + "code": { + "coding": [ + { + "display": "group-1" + } + ] + }, + "population": [ + { + "id": "initial-population-1", + "code": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/measure-population", + "code": "initial-population", + "display": "Initial Population" + } + ] + }, + "criteria": { + "language": "text/cql-identifier", + "expression": "Initial Population" + } + }, + { + "id": "numerator", + "code": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/measure-population", + "code": "numerator", + "display": "Numerator" + } + ] + }, + "criteria": { + "language": "text/cql-identifier", + "expression": "Numerator" + } + }, + { + "id": "denominator", + "code": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/measure-population", + "code": "denominator", + "display": "Denominator" + } + ] + }, + "criteria": { + "language": "text/cql-identifier", + "expression": "Initial Population" + } + } + ] + } + ] + }, + "request": { + "method": "PUT", + "url": "Measure/ImmunizationStatus" + } + } + ] +} diff --git a/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/Patients_Encounters_Immunizations_Practitioners.json b/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/Patients_Encounters_Immunizations_Practitioners.json new file mode 100644 index 00000000000..2c683a2d8f0 --- /dev/null +++ b/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/Patients_Encounters_Immunizations_Practitioners.json @@ -0,0 +1,63070 @@ +{ + "resourceType": "Bundle", + "id": "tests-data-bundle", + "type": "transaction", + "entry": [ + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-374584823447", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-1-year-patient-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "18" + } + ], + "name": [ + { + "family": "Snell", + "given": [ + "William" + ] + } + ], + "birthDate": "2021-09-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-1-year-patient-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-732669324952", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-1-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-1" + }, + "period": { + "start": "2021-11-15", + "end": "2021-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-1-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-479557334181", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-1-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-1-encounter-1" + }, + "occurrenceDateTime": "2021-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-1-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-966049046767", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-1-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-1" + }, + "period": { + "start": "2021-11-15", + "end": "2021-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-1-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-914424523265", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-1-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-1-encounter-2" + }, + "occurrenceDateTime": "2021-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-1-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-896539481744", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-1-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-1" + }, + "period": { + "start": "2021-11-15", + "end": "2021-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-1-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-804686464500", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-1-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-1-encounter-3" + }, + "occurrenceDateTime": "2021-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-1-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-303901916267", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-1-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-1" + }, + "period": { + "start": "2022-01-15", + "end": "2022-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-1-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-340519760591", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-1-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-1-encounter-4" + }, + "occurrenceDateTime": "2022-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-1-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-305532054575", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-1-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-1" + }, + "period": { + "start": "2022-01-15", + "end": "2022-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-1-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-081465823313", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-1-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-1-encounter-5" + }, + "occurrenceDateTime": "2022-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-1-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-053966796300", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-1-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-1" + }, + "period": { + "start": "2022-01-15", + "end": "2022-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-1-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-712825714508", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-1-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-1-encounter-6" + }, + "occurrenceDateTime": "2022-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-1-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-811782258584", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-1-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-1" + }, + "period": { + "start": "2022-03-15", + "end": "2022-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-1-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-562538801151", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-1-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-1-encounter-7" + }, + "occurrenceDateTime": "2022-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-1-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-728771900033", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-1-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-1-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-633014640492", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-1-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-1-encounter-8" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-1-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-543932921517", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-1-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-1-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-795708573425", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-1-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-1-encounter-9" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-1-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-294918331740", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-1-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-1-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-768735003516", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-1-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-1-encounter-10" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-1-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-224565306407", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-1-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-1-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-036749718335", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-1-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-1-encounter-11" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-1-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4614-8bf2-374584823447", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-1-year-patient-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "19" + } + ], + "name": [ + { + "family": "Arnold", + "given": [ + "Francesca" + ] + } + ], + "birthDate": "2021-09-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-1-year-patient-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4615-8bf2-374584823447", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-2-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-2" + }, + "period": { + "start": "2021-11-15", + "end": "2021-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-2-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4616-8bf2-374584823447", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-2-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-2-encounter-1" + }, + "occurrenceDateTime": "2021-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-2-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4617-8bf2-374584823447", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-2-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-2" + }, + "period": { + "start": "2021-11-15", + "end": "2021-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-2-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4618-8bf2-374584823447", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-2-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-2-encounter-2" + }, + "occurrenceDateTime": "2021-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-2-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4619-8bf2-374584823447", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-2-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-2" + }, + "period": { + "start": "2021-11-15", + "end": "2021-11-15" + } + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-2-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4624-8bf2-374584823447", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-2-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-2-encounter-3" + }, + "occurrenceDateTime": "2021-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-2-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4625-8bf2-374584823447", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-2-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-2" + }, + "period": { + "start": "2022-01-15", + "end": "2022-01-15" + } + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-2-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4626-8bf2-374584823447", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-2-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-2-encounter-4" + }, + "occurrenceDateTime": "2022-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-2-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4627-8bf2-374584823447", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-2-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-2" + }, + "period": { + "start": "2022-01-15", + "end": "2022-01-15" + } + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-2-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4628-8bf2-374584823447", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-2-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-2-encounter-5" + }, + "occurrenceDateTime": "2022-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-2-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4629-8bf2-374584823447", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-2-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-2" + }, + "period": { + "start": "2022-01-15", + "end": "2022-01-15" + } + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-2-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe360-bfdc-4614-8bf2-374584823447", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-2-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-2-encounter-6" + }, + "occurrenceDateTime": "2022-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-2-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe361-bfdc-4614-8bf2-374584823447", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-2-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-2" + }, + "period": { + "start": "2022-03-15", + "end": "2022-03-15" + } + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-2-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe362-bfdc-4614-8bf2-374584823447", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-2-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-2-encounter-7" + }, + "occurrenceDateTime": "2022-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-2-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe363-bfdc-4614-8bf2-374584823447", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-2-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-2" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + } + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-2-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe364-bfdc-4614-8bf2-374584823447", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-2-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-2-encounter-8" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-2-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe365-bfdc-4614-8bf2-374584823447", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-2-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-2" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + } + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-2-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe366-bfdc-4614-8bf2-374584823447", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-2-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-2-encounter-9" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-2-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-109360603252", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-1-year-patient-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "20" + } + ], + "name": [ + { + "family": "Humphrey", + "given": [ + "Evan" + ] + } + ], + "birthDate": "2021-09-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-1-year-patient-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-227118279090", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-3-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-3" + }, + "period": { + "start": "2021-11-15", + "end": "2021-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-3-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-876719550197", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-3-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-3-encounter-1" + }, + "occurrenceDateTime": "2021-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-3-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-235200939219", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-3-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-3" + }, + "period": { + "start": "2021-11-15", + "end": "2021-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-3-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-479780661856", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-3-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-3-encounter-2" + }, + "occurrenceDateTime": "2021-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-3-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-964723763975", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-3-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-3" + }, + "period": { + "start": "2021-11-15", + "end": "2021-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-3-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-118149858768", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-3-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-3-encounter-3" + }, + "occurrenceDateTime": "2021-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-3-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-585127591659", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-3-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-3" + }, + "period": { + "start": "2022-01-15", + "end": "2022-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-3-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-624131529657", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-3-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-3-encounter-4" + }, + "occurrenceDateTime": "2022-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-3-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-829513856384", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-3-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-3" + }, + "period": { + "start": "2022-01-15", + "end": "2022-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-3-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-291189628279", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-3-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-3-encounter-5" + }, + "occurrenceDateTime": "2022-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-3-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-003903678669", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-3-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-3" + }, + "period": { + "start": "2022-01-15", + "end": "2022-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-3-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-404121294342", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-3-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-3-encounter-6" + }, + "occurrenceDateTime": "2022-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-3-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-233411984599", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-3-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-3" + }, + "period": { + "start": "2022-03-15", + "end": "2022-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-3-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-331391180715", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-3-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-3-encounter-7" + }, + "occurrenceDateTime": "2022-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-3-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-651316967728", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-3-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-3" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-3-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-122126359795", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-3-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-3-encounter-8" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-3-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-890508315009", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-3-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-3" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-3-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-982158752591", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-3-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-3-encounter-9" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-3-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-863889429206", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-1-year-patient-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "21" + } + ], + "name": [ + { + "family": "Lawrence", + "given": [ + "Danielle" + ] + } + ], + "birthDate": "2021-09-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-1-year-patient-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-898503346837", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-4-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-4" + }, + "period": { + "start": "2021-11-15", + "end": "2021-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-4-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-901330917696", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-4-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-4-encounter-1" + }, + "occurrenceDateTime": "2021-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-4-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-205775723481", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-4-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-4" + }, + "period": { + "start": "2021-11-15", + "end": "2021-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-4-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-822979890814", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-4-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-4-encounter-2" + }, + "occurrenceDateTime": "2021-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-4-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-949211457492", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-4-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-4" + }, + "period": { + "start": "2021-11-15", + "end": "2021-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-4-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-406111072899", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-4-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-4-encounter-3" + }, + "occurrenceDateTime": "2021-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-4-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-380518479487", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-4-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-4" + }, + "period": { + "start": "2022-01-15", + "end": "2022-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-4-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-294666616053", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-4-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-4-encounter-4" + }, + "occurrenceDateTime": "2022-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-4-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-101717240721", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-4-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-4" + }, + "period": { + "start": "2022-01-15", + "end": "2022-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-4-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-863177471894", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-4-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-4-encounter-5" + }, + "occurrenceDateTime": "2022-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-4-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-052660918197", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-4-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-4" + }, + "period": { + "start": "2022-01-15", + "end": "2022-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-4-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-255377851634", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-4-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-4-encounter-6" + }, + "occurrenceDateTime": "2022-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-4-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-208798646722", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-4-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-4" + }, + "period": { + "start": "2022-03-15", + "end": "2022-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-4-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-555284206277", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-4-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-4-encounter-7" + }, + "occurrenceDateTime": "2022-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-4-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-216918430112", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-4-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-4" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-4-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-159253549786", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-4-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-4-encounter-8" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-4-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-960451076478", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-4-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-4" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-4-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-495112170615", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-1-year-patient-4-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-1-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-1-year-patient-4-encounter-9" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-1-year-patient-4-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-804944415732", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-1-year-patient-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "22" + } + ], + "name": [ + { + "family": "Harris", + "given": [ + "David" + ] + } + ], + "birthDate": "2021-09-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-1-year-patient-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-531358375732", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-1-year-patient-5-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-1-year-patient-5" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-1-year-patient-5-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-671282104893", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-2-month-patient-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "3" + } + ], + "name": [ + { + "family": "Hardy", + "given": [ + "Mia" + ] + } + ], + "birthDate": "2022-07-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-2-month-patient-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-312991513352", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-2-month-patient-1-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-2-month-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-2-month-patient-1-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-575566489737", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-2-month-patient-1-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-2-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-2-month-patient-1-encounter-1" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-2-month-patient-1-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-646537431653", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-2-month-patient-1-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-2-month-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-2-month-patient-1-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-603631342907", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-2-month-patient-1-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-2-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-2-month-patient-1-encounter-2" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-2-month-patient-1-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-788743303952", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-2-month-patient-1-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-2-month-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-2-month-patient-1-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-187442232126", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-2-month-patient-1-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-2-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-2-month-patient-1-encounter-3" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-2-month-patient-1-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-691152732496", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-2-month-patient-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "4" + } + ], + "name": [ + { + "family": "Bennelong", + "given": [ + "Owen" + ] + } + ], + "birthDate": "2022-07-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-2-month-patient-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-402180965973", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-2-month-patient-2-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-2-month-patient-2" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-2-month-patient-2-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-950685598333", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-2-month-patient-2-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-2-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-2-month-patient-2-encounter-1" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-2-month-patient-2-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-718854427195", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-2-month-patient-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "5" + } + ], + "name": [ + { + "family": "Lambert", + "given": [ + "Kimberly" + ] + } + ], + "birthDate": "2022-07-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-2-month-patient-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-431998369926", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-2-month-patient-3-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-2-month-patient-3" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-2-month-patient-3-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-204629271603", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-2-month-patient-3-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-2-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-2-month-patient-3-encounter-1" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-2-month-patient-3-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-084797637280", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-2-month-patient-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "6" + } + ], + "name": [ + { + "family": "Adams", + "given": [ + "Lisa" + ] + } + ], + "birthDate": "2022-07-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-2-month-patient-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-962210859528", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-2-month-patient-4-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-2-month-patient-4" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-2-month-patient-4-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-658210296137", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-2-month-patient-4-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-2-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-2-month-patient-4-encounter-1" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-2-month-patient-4-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-543221393374", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-2-month-patient-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "7" + } + ], + "name": [ + { + "family": "McNally", + "given": [ + "John" + ] + } + ], + "birthDate": "2022-07-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-2-month-patient-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-280280211064", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-2-month-patient-5-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-2-month-patient-5" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-2-month-patient-5-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-394683437072", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-4-month-patient-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "8" + } + ], + "name": [ + { + "family": "Brown", + "given": [ + "Anne" + ] + } + ], + "birthDate": "2022-05-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-4-month-patient-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-872517810679", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-month-patient-1-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-month-patient-1" + }, + "period": { + "start": "2022-07-15", + "end": "2022-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-month-patient-1-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-052369405388", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-month-patient-1-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-month-patient-1-encounter-1" + }, + "occurrenceDateTime": "2022-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-month-patient-1-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-964852721437", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-month-patient-1-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-month-patient-1" + }, + "period": { + "start": "2022-07-15", + "end": "2022-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-month-patient-1-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-904561299109", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-month-patient-1-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-month-patient-1-encounter-2" + }, + "occurrenceDateTime": "2022-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-month-patient-1-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-782301004474", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-month-patient-1-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-month-patient-1" + }, + "period": { + "start": "2022-07-15", + "end": "2022-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-month-patient-1-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-503163203712", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-month-patient-1-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-month-patient-1-encounter-3" + }, + "occurrenceDateTime": "2022-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-month-patient-1-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-041870881865", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-month-patient-1-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-month-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-month-patient-1-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-277262601091", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-month-patient-1-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-month-patient-1-encounter-4" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-month-patient-1-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-734016932483", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-month-patient-1-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-month-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-month-patient-1-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-246818635316", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-month-patient-1-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-month-patient-1-encounter-5" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-month-patient-1-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-863755801246", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-month-patient-1-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-month-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-month-patient-1-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-827493595731", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-month-patient-1-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-month-patient-1-encounter-6" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-month-patient-1-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-171207399171", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-4-month-patient-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "9" + } + ], + "name": [ + { + "family": "Pendelton", + "given": [ + "Marco" + ] + } + ], + "birthDate": "2022-05-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-4-month-patient-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-099794682737", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-month-patient-2-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-month-patient-2" + }, + "period": { + "start": "2022-07-15", + "end": "2022-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-month-patient-2-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-075413440615", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-month-patient-2-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-month-patient-2-encounter-1" + }, + "occurrenceDateTime": "2022-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-month-patient-2-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-759723151137", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-month-patient-2-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-month-patient-2" + }, + "period": { + "start": "2022-07-15", + "end": "2022-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-month-patient-2-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-572404439246", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-month-patient-2-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-month-patient-2-encounter-2" + }, + "occurrenceDateTime": "2022-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-month-patient-2-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-270571072205", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-month-patient-2-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-month-patient-2" + }, + "period": { + "start": "2022-07-15", + "end": "2022-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-month-patient-2-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-950175763844", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-month-patient-2-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-month-patient-2-encounter-3" + }, + "occurrenceDateTime": "2022-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-month-patient-2-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-853084780645", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-month-patient-2-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-month-patient-2" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-month-patient-2-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-798226477579", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-month-patient-2-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-month-patient-2-encounter-4" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-month-patient-2-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-963993768144", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-4-month-patient-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "10" + } + ], + "name": [ + { + "family": "Smith", + "given": [ + "Eliza" + ] + } + ], + "birthDate": "2022-05-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-4-month-patient-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-296057172892", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-month-patient-3-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-month-patient-3" + }, + "period": { + "start": "2022-07-15", + "end": "2022-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-month-patient-3-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-454558091926", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-month-patient-3-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-month-patient-3-encounter-1" + }, + "occurrenceDateTime": "2022-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-month-patient-3-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-547894921605", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-month-patient-3-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-month-patient-3" + }, + "period": { + "start": "2022-07-15", + "end": "2022-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-month-patient-3-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-401705713944", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-month-patient-3-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-month-patient-3-encounter-2" + }, + "occurrenceDateTime": "2022-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-month-patient-3-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-288669915928", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-month-patient-3-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-month-patient-3" + }, + "period": { + "start": "2022-07-15", + "end": "2022-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-month-patient-3-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-414298281600", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-month-patient-3-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-month-patient-3-encounter-3" + }, + "occurrenceDateTime": "2022-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-month-patient-3-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-848644053524", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-month-patient-3-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-month-patient-3" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-month-patient-3-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-591749323399", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-month-patient-3-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-month-patient-3-encounter-4" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-month-patient-3-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-777170435005", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-4-month-patient-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "11" + } + ], + "name": [ + { + "family": "Trammell", + "given": [ + "Patrick" + ] + } + ], + "birthDate": "2022-05-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-4-month-patient-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-272155209032", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-month-patient-4-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-month-patient-4" + }, + "period": { + "start": "2022-07-15", + "end": "2022-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-month-patient-4-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-537575660063", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-month-patient-4-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-month-patient-4-encounter-1" + }, + "occurrenceDateTime": "2022-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-month-patient-4-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-258579437328", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-month-patient-4-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-month-patient-4" + }, + "period": { + "start": "2022-07-15", + "end": "2022-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-month-patient-4-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-775772955626", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-month-patient-4-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-month-patient-4-encounter-2" + }, + "occurrenceDateTime": "2022-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-month-patient-4-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-121227910859", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-month-patient-4-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-month-patient-4" + }, + "period": { + "start": "2022-07-15", + "end": "2022-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-month-patient-4-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-379645855431", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-month-patient-4-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-month-patient-4-encounter-3" + }, + "occurrenceDateTime": "2022-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-month-patient-4-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-207720059631", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-month-patient-4-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-month-patient-4" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-month-patient-4-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-518454257070", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-month-patient-4-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-month-patient-4-encounter-4" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-month-patient-4-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-236440889646", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-4-month-patient-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "12" + } + ], + "name": [ + { + "family": "Larsen", + "given": [ + "Christine" + ] + } + ], + "birthDate": "2022-05-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-4-month-patient-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-475357345769", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-month-patient-5-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-month-patient-5" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-month-patient-5-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-570406103080", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-4-year-patient-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "33" + } + ], + "name": [ + { + "family": "Davis", + "given": [ + "Jason" + ] + } + ], + "birthDate": "2018-09-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-4-year-patient-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-706556282250", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-1-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "period": { + "start": "2018-11-15", + "end": "2018-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-516631867722", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-1-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-1" + }, + "occurrenceDateTime": "2018-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-1-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-815488763265", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-1-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "period": { + "start": "2018-11-15", + "end": "2018-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-049813522743", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-1-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-2" + }, + "occurrenceDateTime": "2018-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-1-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-137588629530", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-1-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "period": { + "start": "2018-11-15", + "end": "2018-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-447057832067", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-1-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-3" + }, + "occurrenceDateTime": "2018-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-1-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-476951706951", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-1-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "period": { + "start": "2019-01-15", + "end": "2019-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-462927256491", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-1-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-4" + }, + "occurrenceDateTime": "2019-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-1-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-858015291175", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-1-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "period": { + "start": "2019-01-15", + "end": "2019-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-287120101435", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-1-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-5" + }, + "occurrenceDateTime": "2019-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-1-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-439964422748", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-1-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "period": { + "start": "2019-01-15", + "end": "2019-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-479801713416", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-1-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-6" + }, + "occurrenceDateTime": "2019-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-1-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-933128042938", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-1-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "period": { + "start": "2019-03-15", + "end": "2019-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-491226559490", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-1-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-7" + }, + "occurrenceDateTime": "2019-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-1-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-847731283702", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-1-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "period": { + "start": "2019-09-15", + "end": "2019-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-114472780478", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-1-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-8" + }, + "occurrenceDateTime": "2019-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-1-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-319212414796", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-1-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "period": { + "start": "2019-09-15", + "end": "2019-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-804128647782", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-1-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-9" + }, + "occurrenceDateTime": "2019-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-1-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-916655620227", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-1-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "period": { + "start": "2019-09-15", + "end": "2019-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-732005113886", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-1-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-10" + }, + "occurrenceDateTime": "2019-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-1-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-834149319514", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-1-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "period": { + "start": "2019-12-15", + "end": "2019-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-354733741107", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-1-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-11" + }, + "occurrenceDateTime": "2019-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-1-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-410442993223", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-1-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "period": { + "start": "2020-03-15", + "end": "2020-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-548044708174", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-1-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-12" + }, + "occurrenceDateTime": "2020-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-1-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-856266539370", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-1-encounter-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-331296455466", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-1-immunization-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "94", + "display": "measles, mumps, rubella, and varicella virus vaccine" + } + ], + "text": "measles, mumps, rubella, and varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-13" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-1-immunization-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-192406835810", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-1-encounter-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-078765492658", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-1-immunization-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-14" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-1-immunization-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-619494407475", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-1-encounter-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-181194474331", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-1-immunization-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-1-encounter-15" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-1-immunization-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-132988370227", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-4-year-patient-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "34" + } + ], + "name": [ + { + "family": "Gibbons", + "given": [ + "Isabelle" + ] + } + ], + "birthDate": "2018-09-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-4-year-patient-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-024449652074", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-2-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "period": { + "start": "2018-11-15", + "end": "2018-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-887088293231", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-2-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-1" + }, + "occurrenceDateTime": "2018-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-2-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-400215140434", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-2-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "period": { + "start": "2018-11-15", + "end": "2018-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-599541424229", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-2-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-2" + }, + "occurrenceDateTime": "2018-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-2-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-893832362023", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-2-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "period": { + "start": "2018-11-15", + "end": "2018-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-047570459104", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-2-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-3" + }, + "occurrenceDateTime": "2018-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-2-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-673366999617", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-2-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "period": { + "start": "2019-01-15", + "end": "2019-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-473149536889", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-2-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-4" + }, + "occurrenceDateTime": "2019-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-2-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-116358097461", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-2-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "period": { + "start": "2019-01-15", + "end": "2019-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-809208516612", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-2-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-5" + }, + "occurrenceDateTime": "2019-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-2-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-700820061403", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-2-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "period": { + "start": "2019-01-15", + "end": "2019-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-790242908775", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-2-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-6" + }, + "occurrenceDateTime": "2019-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-2-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-678334426371", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-2-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "period": { + "start": "2019-03-15", + "end": "2019-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-449959794059", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-2-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-7" + }, + "occurrenceDateTime": "2019-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-2-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-112523692515", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-2-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "period": { + "start": "2019-09-15", + "end": "2019-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-943688185109", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-2-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-8" + }, + "occurrenceDateTime": "2019-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-2-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-607993797992", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-2-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "period": { + "start": "2019-09-15", + "end": "2019-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-797598466510", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-2-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-9" + }, + "occurrenceDateTime": "2019-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-2-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-797746148608", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-2-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "period": { + "start": "2019-09-15", + "end": "2019-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-132954381654", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-2-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-10" + }, + "occurrenceDateTime": "2019-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-2-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-483312150119", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-2-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "period": { + "start": "2019-12-15", + "end": "2019-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-068325289184", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-2-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-11" + }, + "occurrenceDateTime": "2019-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-2-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-059992361535", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-2-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "period": { + "start": "2020-03-15", + "end": "2020-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-603402183865", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-2-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-12" + }, + "occurrenceDateTime": "2020-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-2-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-288991421233", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-2-encounter-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-454042379132", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-2-immunization-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "94", + "display": "measles, mumps, rubella, and varicella virus vaccine" + } + ], + "text": "measles, mumps, rubella, and varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-13" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-2-immunization-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-550648474397", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-2-encounter-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-468726276134", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-2-immunization-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-2-encounter-14" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-2-immunization-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-863041578640", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-4-year-patient-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "35" + } + ], + "name": [ + { + "family": "Chadwick", + "given": [ + "Alicia" + ] + } + ], + "birthDate": "2018-09-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-4-year-patient-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-041318092302", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-3-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "period": { + "start": "2018-11-15", + "end": "2018-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-119435612654", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-3-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-1" + }, + "occurrenceDateTime": "2018-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-3-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-311095448490", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-3-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "period": { + "start": "2018-11-15", + "end": "2018-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-082807036953", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-3-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-2" + }, + "occurrenceDateTime": "2018-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-3-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-941417743869", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-3-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "period": { + "start": "2018-11-15", + "end": "2018-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-287739634935", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-3-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-3" + }, + "occurrenceDateTime": "2018-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-3-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-531535067275", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-3-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "period": { + "start": "2019-01-15", + "end": "2019-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-434406414476", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-3-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-4" + }, + "occurrenceDateTime": "2019-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-3-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-936117611252", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-3-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "period": { + "start": "2019-01-15", + "end": "2019-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-457274493253", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-3-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-5" + }, + "occurrenceDateTime": "2019-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-3-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-271459303307", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-3-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "period": { + "start": "2019-01-15", + "end": "2019-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-351066087981", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-3-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-6" + }, + "occurrenceDateTime": "2019-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-3-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-305520303563", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-3-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "period": { + "start": "2019-03-15", + "end": "2019-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-337035260287", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-3-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-7" + }, + "occurrenceDateTime": "2019-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-3-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-299661536148", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-3-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "period": { + "start": "2019-09-15", + "end": "2019-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-444315509242", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-3-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-8" + }, + "occurrenceDateTime": "2019-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-3-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-261344145014", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-3-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "period": { + "start": "2019-09-15", + "end": "2019-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-154688617217", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-3-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-9" + }, + "occurrenceDateTime": "2019-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-3-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-788330903232", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-3-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "period": { + "start": "2019-09-15", + "end": "2019-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-768961510049", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-3-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-10" + }, + "occurrenceDateTime": "2019-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-3-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-239014714803", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-3-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "period": { + "start": "2019-12-15", + "end": "2019-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-234737937175", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-3-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-11" + }, + "occurrenceDateTime": "2019-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-3-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-273681773605", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-3-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "period": { + "start": "2020-03-15", + "end": "2020-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-881711150740", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-3-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-12" + }, + "occurrenceDateTime": "2020-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-3-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-084633099882", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-3-encounter-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-411079540607", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-3-immunization-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-13" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-3-immunization-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-293026576770", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-3-encounter-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-867829252495", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-3-immunization-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-3-encounter-14" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-3-immunization-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-497240217930", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-4-year-patient-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "36" + } + ], + "name": [ + { + "family": "Read", + "given": [ + "Zachary" + ] + } + ], + "birthDate": "2018-09-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-4-year-patient-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-251733488118", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-4-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "period": { + "start": "2018-11-15", + "end": "2018-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-408483068564", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-4-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-1" + }, + "occurrenceDateTime": "2018-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-4-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-618136229917", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-4-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "period": { + "start": "2018-11-15", + "end": "2018-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-411167648937", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-4-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-2" + }, + "occurrenceDateTime": "2018-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-4-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-879368040913", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-4-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "period": { + "start": "2018-11-15", + "end": "2018-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-916457685614", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-4-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-3" + }, + "occurrenceDateTime": "2018-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-4-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-653769957318", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-4-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "period": { + "start": "2019-01-15", + "end": "2019-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-920561583290", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-4-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-4" + }, + "occurrenceDateTime": "2019-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-4-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-243183942896", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-4-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "period": { + "start": "2019-01-15", + "end": "2019-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-978245439802", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-4-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-5" + }, + "occurrenceDateTime": "2019-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-4-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-202581815958", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-4-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "period": { + "start": "2019-01-15", + "end": "2019-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-623160127155", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-4-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-6" + }, + "occurrenceDateTime": "2019-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-4-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-551023074500", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-4-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "period": { + "start": "2019-03-15", + "end": "2019-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-940368869252", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-4-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-7" + }, + "occurrenceDateTime": "2019-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-4-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-036841840234", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-4-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "period": { + "start": "2019-09-15", + "end": "2019-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-334400787373", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-4-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-8" + }, + "occurrenceDateTime": "2019-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-4-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-313722785273", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-4-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "period": { + "start": "2019-09-15", + "end": "2019-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-831607320820", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-4-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-9" + }, + "occurrenceDateTime": "2019-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-4-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-328289937292", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-4-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "period": { + "start": "2019-09-15", + "end": "2019-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-995929184607", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-4-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-10" + }, + "occurrenceDateTime": "2019-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-4-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-254930791481", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-4-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "period": { + "start": "2019-12-15", + "end": "2019-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-461667200886", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-4-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-11" + }, + "occurrenceDateTime": "2019-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-4-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-473207886674", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-4-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "period": { + "start": "2020-03-15", + "end": "2020-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-561415908485", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-4-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-12" + }, + "occurrenceDateTime": "2020-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-4-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-100957665190", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-4-encounter-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-882110959643", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-4-year-patient-4-immunization-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-4-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-4-year-patient-4-encounter-13" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-4-year-patient-4-immunization-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-534007991416", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-4-year-patient-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "37" + } + ], + "name": [ + { + "family": "Robinson", + "given": [ + "Percy" + ] + } + ], + "birthDate": "2018-09-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-4-year-patient-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-601498984056", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-4-year-patient-5-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-4-year-patient-5" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-4-year-patient-5-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-273121595082", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-6-month-patient-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "13" + } + ], + "name": [ + { + "family": "Sharpe", + "given": [ + "Alvin" + ] + } + ], + "birthDate": "2022-03-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-6-month-patient-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-176075102878", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-1-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-1" + }, + "period": { + "start": "2022-05-15", + "end": "2022-05-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-1-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-455313461674", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-1-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-1-encounter-1" + }, + "occurrenceDateTime": "2022-05-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-1-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-445869710537", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-1-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-1" + }, + "period": { + "start": "2022-05-15", + "end": "2022-05-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-1-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-901334966391", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-1-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-1-encounter-2" + }, + "occurrenceDateTime": "2022-05-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-1-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-201121046710", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-1-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-1" + }, + "period": { + "start": "2022-05-15", + "end": "2022-05-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-1-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-147920234652", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-1-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-1-encounter-3" + }, + "occurrenceDateTime": "2022-05-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-1-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-286154969822", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-1-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-1" + }, + "period": { + "start": "2022-07-15", + "end": "2022-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-1-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-747077104591", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-1-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-1-encounter-4" + }, + "occurrenceDateTime": "2022-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-1-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-255242060574", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-1-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-1" + }, + "period": { + "start": "2022-07-15", + "end": "2022-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-1-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-132780433600", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-1-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-1-encounter-5" + }, + "occurrenceDateTime": "2022-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-1-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-833574553358", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-1-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-1" + }, + "period": { + "start": "2022-07-15", + "end": "2022-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-1-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-090366739803", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-1-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-1-encounter-6" + }, + "occurrenceDateTime": "2022-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-1-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-088224617635", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-1-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-1-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-292857619249", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-1-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-1-encounter-7" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-1-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-351719523122", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-1-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-1-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-399265280959", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-1-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-1-encounter-8" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-1-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-059645783022", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-6-month-patient-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "14" + } + ], + "name": [ + { + "family": "Richards", + "given": [ + "Alisha" + ] + } + ], + "birthDate": "2022-03-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-6-month-patient-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-291386797390", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-2-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-2" + }, + "period": { + "start": "2022-05-15", + "end": "2022-05-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-2-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-865038713248", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-2-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-2-encounter-1" + }, + "occurrenceDateTime": "2022-05-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-2-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-531318285238", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-2-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-2" + }, + "period": { + "start": "2022-05-15", + "end": "2022-05-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-2-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-900760998197", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-2-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-2-encounter-2" + }, + "occurrenceDateTime": "2022-05-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-2-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-147869130624", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-2-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-2" + }, + "period": { + "start": "2022-05-15", + "end": "2022-05-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-2-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-987247132439", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-2-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-2-encounter-3" + }, + "occurrenceDateTime": "2022-05-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-2-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-142665211830", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-2-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-2" + }, + "period": { + "start": "2022-07-15", + "end": "2022-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-2-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-185297479525", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-2-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-2-encounter-4" + }, + "occurrenceDateTime": "2022-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-2-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-754937325496", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-2-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-2" + }, + "period": { + "start": "2022-07-15", + "end": "2022-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-2-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-750181175537", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-2-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-2-encounter-5" + }, + "occurrenceDateTime": "2022-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-2-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-879296426638", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-2-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-2" + }, + "period": { + "start": "2022-07-15", + "end": "2022-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-2-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-753080769659", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-2-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-2-encounter-6" + }, + "occurrenceDateTime": "2022-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-2-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-669234279615", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-2-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-2" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-2-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-469314685276", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-2-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-2-encounter-7" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-2-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-548030695037", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-6-month-patient-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "15" + } + ], + "name": [ + { + "family": "Leonard", + "given": [ + "Zoe" + ] + } + ], + "birthDate": "2022-03-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-6-month-patient-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-129095416835", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-3-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-3" + }, + "period": { + "start": "2022-05-15", + "end": "2022-05-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-3-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-586047182627", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-3-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-3-encounter-1" + }, + "occurrenceDateTime": "2022-05-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-3-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-558231001161", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-3-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-3" + }, + "period": { + "start": "2022-05-15", + "end": "2022-05-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-3-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-021170507055", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-3-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-3-encounter-2" + }, + "occurrenceDateTime": "2022-05-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-3-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-533778582820", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-3-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-3" + }, + "period": { + "start": "2022-05-15", + "end": "2022-05-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-3-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-103657490419", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-3-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-3-encounter-3" + }, + "occurrenceDateTime": "2022-05-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-3-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-177299815698", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-3-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-3" + }, + "period": { + "start": "2022-07-15", + "end": "2022-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-3-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-362930369351", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-3-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-3-encounter-4" + }, + "occurrenceDateTime": "2022-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-3-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-966464594171", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-3-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-3" + }, + "period": { + "start": "2022-07-15", + "end": "2022-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-3-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-831798822583", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-3-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-3-encounter-5" + }, + "occurrenceDateTime": "2022-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-3-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-294093114913", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-3-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-3" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-3-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-173146263707", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-3-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-3-encounter-6" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-3-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-028083594312", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-3-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-3" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-3-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-055351561570", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-3-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-3-encounter-7" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-3-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-414065979407", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-6-month-patient-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "16" + } + ], + "name": [ + { + "family": "MacDonald", + "given": [ + "James" + ] + } + ], + "birthDate": "2022-03-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-6-month-patient-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-836330148804", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-4-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-4" + }, + "period": { + "start": "2022-05-15", + "end": "2022-05-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-4-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-844814874930", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-4-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-4-encounter-1" + }, + "occurrenceDateTime": "2022-05-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-4-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-445670189914", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-4-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-4" + }, + "period": { + "start": "2022-05-15", + "end": "2022-05-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-4-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-513859136206", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-4-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-4-encounter-2" + }, + "occurrenceDateTime": "2022-05-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-4-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-633356826503", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-4-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-4" + }, + "period": { + "start": "2022-05-15", + "end": "2022-05-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-4-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-104411124509", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-4-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-4-encounter-3" + }, + "occurrenceDateTime": "2022-05-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-4-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-676854619539", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-4-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-4" + }, + "period": { + "start": "2022-07-15", + "end": "2022-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-4-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-665116572976", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-4-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-4-encounter-4" + }, + "occurrenceDateTime": "2022-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-4-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-248892276091", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-4-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-4" + }, + "period": { + "start": "2022-07-15", + "end": "2022-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-4-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-096729682799", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-4-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-4-encounter-5" + }, + "occurrenceDateTime": "2022-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-4-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-976298577091", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-4-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-4" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-4-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-097634147553", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-4-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-4-encounter-6" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-4-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-492550432238", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-4-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-4" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-4-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-810995785282", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-6-month-patient-4-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-6-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-6-month-patient-4-encounter-7" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-6-month-patient-4-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-415268815027", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-6-month-patient-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "17" + } + ], + "name": [ + { + "family": "Gray", + "given": [ + "Hunter" + ] + } + ], + "birthDate": "2022-03-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-6-month-patient-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-642766114699", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-6-month-patient-5-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-6-month-patient-5" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-6-month-patient-5-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-286199819392", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-14-year-patient-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "43" + } + ], + "name": [ + { + "family": "Perez", + "given": [ + "Frank" + ] + } + ], + "birthDate": "2008-09-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-3" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-14-year-patient-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-839154581327", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-1-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "period": { + "start": "2008-11-15", + "end": "2008-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-803976756697", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-1-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-1" + }, + "occurrenceDateTime": "2008-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-1-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-906112097032", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-1-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "period": { + "start": "2008-11-15", + "end": "2008-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-138380846549", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-1-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-2" + }, + "occurrenceDateTime": "2008-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-1-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-285880384033", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-1-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "period": { + "start": "2008-11-15", + "end": "2008-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-618796520357", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-1-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-3" + }, + "occurrenceDateTime": "2008-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-1-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-497284214080", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-1-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "period": { + "start": "2009-01-15", + "end": "2009-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-417040280110", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-1-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-4" + }, + "occurrenceDateTime": "2009-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-1-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-679510448566", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-1-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "period": { + "start": "2009-01-15", + "end": "2009-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-924267963543", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-1-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-5" + }, + "occurrenceDateTime": "2009-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-1-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-507385691610", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-1-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "period": { + "start": "2009-01-15", + "end": "2009-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-816517313280", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-1-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-6" + }, + "occurrenceDateTime": "2009-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-1-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-734974149400", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-1-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "period": { + "start": "2009-03-15", + "end": "2009-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-948716526768", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-1-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-7" + }, + "occurrenceDateTime": "2009-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-1-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-097685980532", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-1-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "period": { + "start": "2009-09-15", + "end": "2009-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-042789244027", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-1-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-8" + }, + "occurrenceDateTime": "2009-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-1-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-672564617700", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-1-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "period": { + "start": "2009-09-15", + "end": "2009-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-536178585087", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-1-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-9" + }, + "occurrenceDateTime": "2009-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-1-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-762362619573", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-1-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "period": { + "start": "2009-09-15", + "end": "2009-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-962191578064", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-1-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-10" + }, + "occurrenceDateTime": "2009-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-1-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-042215652228", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-1-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "period": { + "start": "2009-12-15", + "end": "2009-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-845565101449", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-1-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-11" + }, + "occurrenceDateTime": "2009-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-1-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-412647175655", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-1-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "period": { + "start": "2010-03-15", + "end": "2010-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-955258932636", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-1-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-12" + }, + "occurrenceDateTime": "2010-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-1-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-357173418778", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-1-encounter-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "period": { + "start": "2012-09-15", + "end": "2012-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-220222257723", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-1-immunization-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "94", + "display": "measles, mumps, rubella, and varicella virus vaccine" + } + ], + "text": "measles, mumps, rubella, and varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-13" + }, + "occurrenceDateTime": "2012-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-1-immunization-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-500325917301", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-1-encounter-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "period": { + "start": "2012-09-15", + "end": "2012-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-175956721982", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-1-immunization-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-14" + }, + "occurrenceDateTime": "2012-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-1-immunization-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-891955758730", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-1-encounter-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "period": { + "start": "2020-09-15", + "end": "2020-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-320784362898", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-1-immunization-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "08", + "display": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + } + ], + "text": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-15" + }, + "occurrenceDateTime": "2020-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-1-immunization-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-632316365238", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-1-encounter-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "period": { + "start": "2020-09-15", + "end": "2020-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-250755563874", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-1-immunization-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "108", + "display": "meningococcal ACWY vaccine, unspecified formulation" + } + ], + "text": "meningococcal ACWY vaccine, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-16" + }, + "occurrenceDateTime": "2020-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-1-immunization-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-842223112429", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-1-encounter-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "period": { + "start": "2020-09-15", + "end": "2020-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-087775190419", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-1-immunization-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "137", + "display": "HPV, unspecified formulation" + } + ], + "text": "HPV, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-17" + }, + "occurrenceDateTime": "2020-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-1-immunization-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-735585121227", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-1-encounter-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-102877025804", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-1-immunization-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-18" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-1-immunization-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-157705192061", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-1-encounter-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-557934918181", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-1-immunization-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-1-encounter-19" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-1-immunization-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-773627075442", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-14-year-patient-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "44" + } + ], + "name": [ + { + "family": "Ignacio", + "given": [ + "Beatrice" + ] + } + ], + "birthDate": "2008-09-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-14-year-patient-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-829061391523", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-2-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "period": { + "start": "2008-11-15", + "end": "2008-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-947229013069", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-2-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-1" + }, + "occurrenceDateTime": "2008-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-2-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-620593144828", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-2-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "period": { + "start": "2008-11-15", + "end": "2008-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-017010755990", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-2-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-2" + }, + "occurrenceDateTime": "2008-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-2-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-024409348101", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-2-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "period": { + "start": "2008-11-15", + "end": "2008-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-238083973703", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-2-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-3" + }, + "occurrenceDateTime": "2008-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-2-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-336842279271", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-2-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "period": { + "start": "2009-01-15", + "end": "2009-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-599637725922", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-2-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-4" + }, + "occurrenceDateTime": "2009-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-2-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-451212762006", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-2-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "period": { + "start": "2009-01-15", + "end": "2009-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-644456670648", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-2-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-5" + }, + "occurrenceDateTime": "2009-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-2-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-779068364036", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-2-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "period": { + "start": "2009-01-15", + "end": "2009-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-451662572879", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-2-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-6" + }, + "occurrenceDateTime": "2009-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-2-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-394082054774", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-2-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "period": { + "start": "2009-03-15", + "end": "2009-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-306593315372", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-2-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-7" + }, + "occurrenceDateTime": "2009-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-2-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-128448934781", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-2-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "period": { + "start": "2009-09-15", + "end": "2009-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-202184527426", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-2-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-8" + }, + "occurrenceDateTime": "2009-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-2-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-912883681064", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-2-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "period": { + "start": "2009-09-15", + "end": "2009-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-819076873830", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-2-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-9" + }, + "occurrenceDateTime": "2009-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-2-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-029801599757", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-2-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "period": { + "start": "2009-09-15", + "end": "2009-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-805412595280", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-2-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-10" + }, + "occurrenceDateTime": "2009-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-2-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-152469609787", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-2-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "period": { + "start": "2009-12-15", + "end": "2009-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-667199423563", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-2-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-11" + }, + "occurrenceDateTime": "2009-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-2-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-548205152746", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-2-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "period": { + "start": "2010-03-15", + "end": "2010-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-620212667607", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-2-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-12" + }, + "occurrenceDateTime": "2010-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-2-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-228120853265", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-2-encounter-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "period": { + "start": "2012-09-15", + "end": "2012-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-356077638160", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-2-immunization-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "94", + "display": "measles, mumps, rubella, and varicella virus vaccine" + } + ], + "text": "measles, mumps, rubella, and varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-13" + }, + "occurrenceDateTime": "2012-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-2-immunization-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-738290432102", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-2-encounter-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "period": { + "start": "2012-09-15", + "end": "2012-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-117248412747", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-2-immunization-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-14" + }, + "occurrenceDateTime": "2012-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-2-immunization-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-438116707632", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-2-encounter-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "period": { + "start": "2020-09-15", + "end": "2020-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-062282370974", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-2-immunization-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "08", + "display": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + } + ], + "text": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-15" + }, + "occurrenceDateTime": "2020-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-2-immunization-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-202411864898", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-2-encounter-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "period": { + "start": "2020-09-15", + "end": "2020-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-618965233643", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-2-immunization-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "108", + "display": "meningococcal ACWY vaccine, unspecified formulation" + } + ], + "text": "meningococcal ACWY vaccine, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-16" + }, + "occurrenceDateTime": "2020-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-2-immunization-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-526588940025", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-2-encounter-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "period": { + "start": "2020-09-15", + "end": "2020-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-803782853344", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-2-immunization-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "137", + "display": "HPV, unspecified formulation" + } + ], + "text": "HPV, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-17" + }, + "occurrenceDateTime": "2020-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-2-immunization-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-740479863651", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-2-encounter-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-597973271313", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-2-immunization-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-18" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-2-immunization-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-992691012877", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-2-encounter-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-817532639612", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-2-immunization-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-2-encounter-19" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-2-immunization-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-060260752313", + "resource": { + "resourceType": "Observation", + "id": "ImmunizationStatus-14-year-patient-2-observation-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Observation" + ] + }, + "status": "final", + "code": { + "coding": [ + { + "system": "http://loinc.org", + "code": "82810-3", + "display": "Pregnancy status" + } + ] + }, + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "effectiveDateTime": "2022-09-15", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://loinc.org", + "code": "LA15173-0", + "display": "Pregnant" + } + ], + "text": "Pregnant" + } + }, + "request": { + "method": "PUT", + "url": "Observation/ImmunizationStatus-14-year-patient-2-observation-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-368846578374", + "resource": { + "resourceType": "Observation", + "id": "ImmunizationStatus-14-year-patient-2-observation-2", + "status": "final", + "code": { + "coding": [ + { + "system": "http://loinc.org", + "code": "49051-6", + "display": "Gestational age in weeks" + } + ] + }, + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-2" + }, + "effectiveDateTime": "2022-09-15", + "valueQuantity": { + "value": 28, + "system": "http://unitsofmeasure.org", + "code": "wk" + } + }, + "request": { + "method": "PUT", + "url": "Observation/ImmunizationStatus-14-year-patient-2-observation-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-333847808669", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-14-year-patient-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "45" + } + ], + "name": [ + { + "family": "Hayes", + "given": [ + "Nicole" + ] + } + ], + "birthDate": "2008-09-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-14-year-patient-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-081634968804", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-3-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "period": { + "start": "2008-11-15", + "end": "2008-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-601936529615", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-3-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-1" + }, + "occurrenceDateTime": "2008-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-3-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-301539107604", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-3-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "period": { + "start": "2008-11-15", + "end": "2008-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-565083370388", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-3-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-2" + }, + "occurrenceDateTime": "2008-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-3-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-859624396799", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-3-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "period": { + "start": "2008-11-15", + "end": "2008-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-561760779701", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-3-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-3" + }, + "occurrenceDateTime": "2008-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-3-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-306754058420", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-3-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "period": { + "start": "2009-01-15", + "end": "2009-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-381821153446", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-3-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-4" + }, + "occurrenceDateTime": "2009-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-3-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-999475824336", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-3-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "period": { + "start": "2009-01-15", + "end": "2009-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-365586116792", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-3-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-5" + }, + "occurrenceDateTime": "2009-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-3-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-273528503873", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-3-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "period": { + "start": "2009-01-15", + "end": "2009-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-633579328983", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-3-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-6" + }, + "occurrenceDateTime": "2009-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-3-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-585493117053", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-3-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "period": { + "start": "2009-03-15", + "end": "2009-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-452932167522", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-3-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-7" + }, + "occurrenceDateTime": "2009-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-3-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-224732696301", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-3-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "period": { + "start": "2009-09-15", + "end": "2009-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-770309075517", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-3-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-8" + }, + "occurrenceDateTime": "2009-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-3-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-761706040189", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-3-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "period": { + "start": "2009-09-15", + "end": "2009-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-074231086946", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-3-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-9" + }, + "occurrenceDateTime": "2009-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-3-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-249699563824", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-3-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "period": { + "start": "2009-09-15", + "end": "2009-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-251978514348", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-3-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-10" + }, + "occurrenceDateTime": "2009-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-3-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-275832678192", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-3-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "period": { + "start": "2009-12-15", + "end": "2009-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-105102718017", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-3-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-11" + }, + "occurrenceDateTime": "2009-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-3-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-650547016526", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-3-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "period": { + "start": "2010-03-15", + "end": "2010-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-849323737501", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-3-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-12" + }, + "occurrenceDateTime": "2010-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-3-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-124562941381", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-3-encounter-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "period": { + "start": "2012-09-15", + "end": "2012-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-223883072884", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-3-immunization-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "94", + "display": "measles, mumps, rubella, and varicella virus vaccine" + } + ], + "text": "measles, mumps, rubella, and varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-13" + }, + "occurrenceDateTime": "2012-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-3-immunization-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-031366746467", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-3-encounter-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "period": { + "start": "2012-09-15", + "end": "2012-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-991654732887", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-3-immunization-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-14" + }, + "occurrenceDateTime": "2012-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-3-immunization-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-066308253895", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-3-encounter-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "period": { + "start": "2020-09-15", + "end": "2020-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-477903972928", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-3-immunization-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "08", + "display": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + } + ], + "text": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-15" + }, + "occurrenceDateTime": "2020-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-3-immunization-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-397543635685", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-3-encounter-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "period": { + "start": "2020-09-15", + "end": "2020-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-673888097599", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-3-immunization-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "108", + "display": "meningococcal ACWY vaccine, unspecified formulation" + } + ], + "text": "meningococcal ACWY vaccine, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-16" + }, + "occurrenceDateTime": "2020-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-3-immunization-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-939376460295", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-3-encounter-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "period": { + "start": "2020-09-15", + "end": "2020-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-850893608431", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-3-immunization-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "137", + "display": "HPV, unspecified formulation" + } + ], + "text": "HPV, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-17" + }, + "occurrenceDateTime": "2020-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-3-immunization-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-458612727033", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-3-encounter-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-025672043698", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-3-immunization-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-3-encounter-18" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-3-immunization-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-775937933729", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-14-year-patient-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "46" + } + ], + "name": [ + { + "family": "Nicholls", + "given": [ + "Riley" + ] + } + ], + "birthDate": "2008-09-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-14-year-patient-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-537835031055", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-4-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "period": { + "start": "2008-11-15", + "end": "2008-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-028757231182", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-4-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-1" + }, + "occurrenceDateTime": "2008-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-4-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-387384126478", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-4-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "period": { + "start": "2008-11-15", + "end": "2008-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-761760882697", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-4-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-2" + }, + "occurrenceDateTime": "2008-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-4-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-867021595030", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-4-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "period": { + "start": "2008-11-15", + "end": "2008-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-460195560892", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-4-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-3" + }, + "occurrenceDateTime": "2008-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-4-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-143066067449", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-4-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "period": { + "start": "2009-01-15", + "end": "2009-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-040103038063", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-4-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-4" + }, + "occurrenceDateTime": "2009-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-4-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-881415454423", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-4-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "period": { + "start": "2009-01-15", + "end": "2009-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-909450331996", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-4-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-5" + }, + "occurrenceDateTime": "2009-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-4-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-822767757200", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-4-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "period": { + "start": "2009-01-15", + "end": "2009-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-903253366318", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-4-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-6" + }, + "occurrenceDateTime": "2009-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-4-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-412454128161", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-4-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "period": { + "start": "2009-03-15", + "end": "2009-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-769989772534", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-4-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-7" + }, + "occurrenceDateTime": "2009-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-4-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-417998830641", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-4-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "period": { + "start": "2009-09-15", + "end": "2009-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-024950183696", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-4-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-8" + }, + "occurrenceDateTime": "2009-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-4-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-469682603666", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-4-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "period": { + "start": "2009-09-15", + "end": "2009-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-672373676587", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-4-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-9" + }, + "occurrenceDateTime": "2009-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-4-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-551761265673", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-4-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "period": { + "start": "2009-09-15", + "end": "2009-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-549309746754", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-4-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-10" + }, + "occurrenceDateTime": "2009-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-4-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-307938264584", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-4-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "period": { + "start": "2009-12-15", + "end": "2009-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-788122812557", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-4-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-11" + }, + "occurrenceDateTime": "2009-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-4-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-904461662267", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-4-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "period": { + "start": "2010-03-15", + "end": "2010-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-594811039793", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-4-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-12" + }, + "occurrenceDateTime": "2010-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-4-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-548221775944", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-4-encounter-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "period": { + "start": "2012-09-15", + "end": "2012-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-999675383787", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-4-immunization-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "94", + "display": "measles, mumps, rubella, and varicella virus vaccine" + } + ], + "text": "measles, mumps, rubella, and varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-13" + }, + "occurrenceDateTime": "2012-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-4-immunization-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-771818243565", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-4-encounter-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "period": { + "start": "2012-09-15", + "end": "2012-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-459925956513", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-4-immunization-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-14" + }, + "occurrenceDateTime": "2012-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-4-immunization-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-264347013903", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-4-encounter-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "period": { + "start": "2020-09-15", + "end": "2020-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-992740276248", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-4-immunization-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "08", + "display": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + } + ], + "text": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-15" + }, + "occurrenceDateTime": "2020-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-4-immunization-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-764886469824", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-4-encounter-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "period": { + "start": "2020-09-15", + "end": "2020-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-385138981789", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-4-immunization-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "108", + "display": "meningococcal ACWY vaccine, unspecified formulation" + } + ], + "text": "meningococcal ACWY vaccine, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-16" + }, + "occurrenceDateTime": "2020-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-4-immunization-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-542029264353", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-4-encounter-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "period": { + "start": "2020-09-15", + "end": "2020-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-396050693445", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-4-immunization-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "137", + "display": "HPV, unspecified formulation" + } + ], + "text": "HPV, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-17" + }, + "occurrenceDateTime": "2020-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-4-immunization-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-784832729693", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-4-encounter-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-454647912869", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-4-immunization-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-18" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-4-immunization-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-912140618392", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-4-encounter-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "period": { + "start": "2017-10-15", + "end": "2017-10-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-247393407152", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-14-year-patient-4-immunization-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-14-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-14-year-patient-4-encounter-19" + }, + "occurrenceDateTime": "2017-10-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-14-year-patient-4-immunization-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-863046073242", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-14-year-patient-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "47" + } + ], + "name": [ + { + "family": "Elliot", + "given": [ + "Patrick" + ] + } + ], + "birthDate": "2008-09-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-14-year-patient-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-832966227824", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-14-year-patient-5-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-14-year-patient-5" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-14-year-patient-5-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-339902162034", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-15-month-patient-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "23" + } + ], + "name": [ + { + "family": "Williams", + "given": [ + "Alice" + ] + } + ], + "birthDate": "2021-06-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-15-month-patient-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-254038958290", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-1-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-1" + }, + "period": { + "start": "2021-08-15", + "end": "2021-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-1-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-254484820042", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-1-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-1-encounter-1" + }, + "occurrenceDateTime": "2021-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-1-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-785284220557", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-1-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-1" + }, + "period": { + "start": "2021-08-15", + "end": "2021-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-1-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-266098165137", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-1-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-1-encounter-2" + }, + "occurrenceDateTime": "2021-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-1-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-523301137688", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-1-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-1" + }, + "period": { + "start": "2021-08-15", + "end": "2021-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-1-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-126396385659", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-1-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-1-encounter-3" + }, + "occurrenceDateTime": "2021-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-1-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-356923514007", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-1-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-1" + }, + "period": { + "start": "2021-10-15", + "end": "2021-10-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-1-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-673622609759", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-1-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-1-encounter-4" + }, + "occurrenceDateTime": "2021-10-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-1-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-364394974079", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-1-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-1" + }, + "period": { + "start": "2021-10-15", + "end": "2021-10-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-1-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-969728541688", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-1-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-1-encounter-5" + }, + "occurrenceDateTime": "2021-10-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-1-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-802746498890", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-1-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-1" + }, + "period": { + "start": "2021-10-15", + "end": "2021-10-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-1-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-708185438736", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-1-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-1-encounter-6" + }, + "occurrenceDateTime": "2021-10-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-1-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-103024647411", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-1-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-1" + }, + "period": { + "start": "2021-12-15", + "end": "2021-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-1-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-683048325400", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-1-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-1-encounter-7" + }, + "occurrenceDateTime": "2021-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-1-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-630122078784", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-1-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-1" + }, + "period": { + "start": "2022-06-15", + "end": "2022-06-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-1-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-456606848285", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-1-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-1-encounter-8" + }, + "occurrenceDateTime": "2022-06-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-1-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-401431670109", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-1-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-1" + }, + "period": { + "start": "2022-06-15", + "end": "2022-06-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-1-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-666753198133", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-1-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-1-encounter-9" + }, + "occurrenceDateTime": "2022-06-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-1-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-052092364901", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-1-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-1" + }, + "period": { + "start": "2022-06-15", + "end": "2022-06-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-1-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-181409834388", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-1-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-1-encounter-10" + }, + "occurrenceDateTime": "2022-06-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-1-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-680993907222", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-1-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-4" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-1-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-194614350894", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-1-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-1-encounter-11" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-1-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-840453611229", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-1-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + } + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-1-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-829579761612", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-1-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-1-encounter-12" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-1-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-029092690413", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-15-month-patient-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "24" + } + ], + "name": [ + { + "family": "Thornton", + "given": [ + "Victoria" + ] + } + ], + "birthDate": "2021-06-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-15-month-patient-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-733557807638", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-2-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-2" + }, + "period": { + "start": "2021-08-15", + "end": "2021-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-2-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-971537583829", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-2-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-2-encounter-1" + }, + "occurrenceDateTime": "2021-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-2-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-770545214069", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-2-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-2" + }, + "period": { + "start": "2021-08-15", + "end": "2021-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-2-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-612378912621", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-2-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-2-encounter-2" + }, + "occurrenceDateTime": "2021-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-2-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-045520183628", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-2-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-2" + }, + "period": { + "start": "2021-08-15", + "end": "2021-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-2-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-738827496044", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-2-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-2-encounter-3" + }, + "occurrenceDateTime": "2021-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-2-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-946200630346", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-2-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-2" + }, + "period": { + "start": "2021-10-15", + "end": "2021-10-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-2-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-274462530290", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-2-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-2-encounter-4" + }, + "occurrenceDateTime": "2021-10-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-2-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-376586095531", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-2-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-2" + }, + "period": { + "start": "2021-10-15", + "end": "2021-10-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-2-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-338222076963", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-2-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-2-encounter-5" + }, + "occurrenceDateTime": "2021-10-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-2-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-694538987602", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-2-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-2" + }, + "period": { + "start": "2021-10-15", + "end": "2021-10-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-2-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-829261226163", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-2-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-2-encounter-6" + }, + "occurrenceDateTime": "2021-10-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-2-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-895690288996", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-2-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-2" + }, + "period": { + "start": "2021-12-15", + "end": "2021-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-2-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-263377588061", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-2-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-2-encounter-7" + }, + "occurrenceDateTime": "2021-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-2-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-581416557437", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-2-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-2" + }, + "period": { + "start": "2022-06-15", + "end": "2022-06-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-2-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-825424900027", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-2-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-2-encounter-8" + }, + "occurrenceDateTime": "2022-06-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-2-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-935601137933", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-2-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-2" + }, + "period": { + "start": "2022-06-15", + "end": "2022-06-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-2-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-719674168050", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-2-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-2-encounter-9" + }, + "occurrenceDateTime": "2022-06-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-2-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-289732481785", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-2-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-2" + }, + "period": { + "start": "2022-06-15", + "end": "2022-06-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-2-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-338735941517", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-2-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-2-encounter-10" + }, + "occurrenceDateTime": "2022-06-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-2-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-864946876121", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-2-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-2" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-2-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-343618547820", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-2-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-2-encounter-11" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-2-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-563544516058", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-15-month-patient-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "25" + } + ], + "name": [ + { + "family": "Buckley", + "given": [ + "Elizabeth" + ] + } + ], + "birthDate": "2021-06-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-15-month-patient-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-155581645454", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-3-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-3" + }, + "period": { + "start": "2021-08-15", + "end": "2021-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-3-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-255984016720", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-3-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-3-encounter-1" + }, + "occurrenceDateTime": "2021-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-3-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-848954339387", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-3-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-3" + }, + "period": { + "start": "2021-08-15", + "end": "2021-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-3-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-574161572921", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-3-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-3-encounter-2" + }, + "occurrenceDateTime": "2021-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-3-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-254346049271", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-3-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-3" + }, + "period": { + "start": "2021-08-15", + "end": "2021-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-3-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-345244740892", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-3-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-3-encounter-3" + }, + "occurrenceDateTime": "2021-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-3-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-521201337129", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-3-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-3" + }, + "period": { + "start": "2021-10-15", + "end": "2021-10-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-3-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-000578555687", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-3-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-3-encounter-4" + }, + "occurrenceDateTime": "2021-10-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-3-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-243430532965", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-3-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-3" + }, + "period": { + "start": "2021-10-15", + "end": "2021-10-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-3-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-461107454456", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-3-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-3-encounter-5" + }, + "occurrenceDateTime": "2021-10-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-3-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-316738070255", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-3-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-3" + }, + "period": { + "start": "2021-10-15", + "end": "2021-10-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-3-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-588351656226", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-3-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-3-encounter-6" + }, + "occurrenceDateTime": "2021-10-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-3-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-221555543470", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-3-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-3" + }, + "period": { + "start": "2021-12-15", + "end": "2021-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-3-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-327842583620", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-3-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-3-encounter-7" + }, + "occurrenceDateTime": "2021-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-3-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-628257577759", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-3-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-3" + }, + "period": { + "start": "2022-06-15", + "end": "2022-06-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-3-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-614500959481", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-3-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-3-encounter-8" + }, + "occurrenceDateTime": "2022-06-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-3-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-752314958400", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-3-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-3" + }, + "period": { + "start": "2022-06-15", + "end": "2022-06-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-3-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-083351925562", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-3-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-3-encounter-9" + }, + "occurrenceDateTime": "2022-06-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-3-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-281719031446", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-3-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-3" + }, + "period": { + "start": "2022-06-15", + "end": "2022-06-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-3-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-688725324797", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-3-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-3-encounter-10" + }, + "occurrenceDateTime": "2022-06-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-3-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-510633705399", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-3-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-3" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-3-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-421088307462", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-3-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-3-encounter-11" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-3-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-900078889320", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-15-month-patient-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "26" + } + ], + "name": [ + { + "family": "Mills", + "given": [ + "Robert" + ] + } + ], + "birthDate": "2021-06-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-15-month-patient-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-697920846092", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-4-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-4" + }, + "period": { + "start": "2021-08-15", + "end": "2021-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-4-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-420381472498", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-4-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-4-encounter-1" + }, + "occurrenceDateTime": "2021-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-4-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-076564741774", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-4-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-4" + }, + "period": { + "start": "2021-08-15", + "end": "2021-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-4-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-615261317495", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-4-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-4-encounter-2" + }, + "occurrenceDateTime": "2021-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-4-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-721898008618", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-4-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-4" + }, + "period": { + "start": "2021-08-15", + "end": "2021-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-4-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-380107170250", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-4-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-4-encounter-3" + }, + "occurrenceDateTime": "2021-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-4-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-577112350391", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-4-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-4" + }, + "period": { + "start": "2021-10-15", + "end": "2021-10-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-4-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-607130095748", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-4-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-4-encounter-4" + }, + "occurrenceDateTime": "2021-10-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-4-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-438867989726", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-4-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-4" + }, + "period": { + "start": "2021-10-15", + "end": "2021-10-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-4-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-459476673232", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-4-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-4-encounter-5" + }, + "occurrenceDateTime": "2021-10-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-4-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-181700915493", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-4-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-4" + }, + "period": { + "start": "2021-10-15", + "end": "2021-10-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-4-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-226369970254", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-4-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-4-encounter-6" + }, + "occurrenceDateTime": "2021-10-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-4-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-614347200318", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-4-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-4" + }, + "period": { + "start": "2021-12-15", + "end": "2021-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-4-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-350492462116", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-4-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-4-encounter-7" + }, + "occurrenceDateTime": "2021-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-4-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-832246458624", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-4-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-4" + }, + "period": { + "start": "2022-06-15", + "end": "2022-06-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-4-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-581735702226", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-4-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-4-encounter-8" + }, + "occurrenceDateTime": "2022-06-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-4-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-104422878461", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-4-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-4" + }, + "period": { + "start": "2022-06-15", + "end": "2022-06-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-4-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-391981477051", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-4-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-4-encounter-9" + }, + "occurrenceDateTime": "2022-06-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-4-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-413310385056", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-4-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-4" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-4-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-127809382136", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-4-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-4-encounter-10" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-4-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-866863513575", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-4-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-4" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-4-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-991965112240", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-15-month-patient-4-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-15-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-15-month-patient-4-encounter-11" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-15-month-patient-4-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-537225655372", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-15-month-patient-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "27" + } + ], + "name": [ + { + "family": "Barlow", + "given": [ + "Jake" + ] + } + ], + "birthDate": "2021-06-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-15-month-patient-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-845402242743", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-15-month-patient-5-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-15-month-patient-5" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-15-month-patient-5-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-597420561708", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-18-month-patient-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "28" + } + ], + "name": [ + { + "family": "Haskett", + "given": [ + "Michael" + ] + } + ], + "birthDate": "2021-03-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-18-month-patient-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-121084222292", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-1-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "period": { + "start": "2021-05-15", + "end": "2021-05-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-961787546200", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-1-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-1" + }, + "occurrenceDateTime": "2021-05-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-1-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-928039905000", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-1-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "period": { + "start": "2021-05-15", + "end": "2021-05-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-109678578018", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-1-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-2" + }, + "occurrenceDateTime": "2021-05-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-1-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-259026762408", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-1-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "period": { + "start": "2021-05-15", + "end": "2021-05-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-616955409930", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-1-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-3" + }, + "occurrenceDateTime": "2021-05-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-1-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-043274613804", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-1-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "period": { + "start": "2021-07-15", + "end": "2021-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-003129553267", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-1-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-4" + }, + "occurrenceDateTime": "2021-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-1-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-002721842420", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-1-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "period": { + "start": "2021-07-15", + "end": "2021-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-590674033413", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-1-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-5" + }, + "occurrenceDateTime": "2021-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-1-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-362700100384", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-1-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "period": { + "start": "2021-07-15", + "end": "2021-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-976940364627", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-1-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-6" + }, + "occurrenceDateTime": "2021-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-1-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-782521091798", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-1-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "period": { + "start": "2021-09-15", + "end": "2021-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-465480888099", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-1-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-7" + }, + "occurrenceDateTime": "2021-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-1-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-938667272535", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-1-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "period": { + "start": "2022-03-15", + "end": "2022-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-645334329250", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-1-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-8" + }, + "occurrenceDateTime": "2022-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-1-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-398384686496", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-1-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "period": { + "start": "2022-03-15", + "end": "2022-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-065041816376", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-1-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-9" + }, + "occurrenceDateTime": "2022-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-1-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-136319951152", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-1-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "period": { + "start": "2022-03-15", + "end": "2022-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-213626944564", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-1-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-10" + }, + "occurrenceDateTime": "2022-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-1-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-952005968967", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-1-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "period": { + "start": "2022-06-15", + "end": "2022-06-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-825500229572", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-1-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-11" + }, + "occurrenceDateTime": "2022-06-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-1-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-497279424796", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-1-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-133830919904", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-1-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-12" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-1-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-836550549557", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-1-encounter-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-124485754816", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-1-immunization-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-1-encounter-13" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-1-immunization-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-414515176684", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-18-month-patient-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "29" + } + ], + "name": [ + { + "family": "Chamberlain", + "given": [ + "Leo" + ] + } + ], + "birthDate": "2021-03-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-18-month-patient-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-995245681402", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-2-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-2" + }, + "period": { + "start": "2021-05-15", + "end": "2021-05-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-2-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-376138349500", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-2-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-2-encounter-1" + }, + "occurrenceDateTime": "2021-05-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-2-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-423114390733", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-2-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-2" + }, + "period": { + "start": "2021-05-15", + "end": "2021-05-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-2-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-006068396247", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-2-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-2-encounter-2" + }, + "occurrenceDateTime": "2021-05-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-2-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-762707216505", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-2-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-2" + }, + "period": { + "start": "2021-05-15", + "end": "2021-05-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-2-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-956176628739", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-2-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-2-encounter-3" + }, + "occurrenceDateTime": "2021-05-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-2-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-494660158742", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-2-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-2" + }, + "period": { + "start": "2021-07-15", + "end": "2021-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-2-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-581119734193", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-2-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-2-encounter-4" + }, + "occurrenceDateTime": "2021-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-2-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-947702503917", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-2-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-2" + }, + "period": { + "start": "2021-07-15", + "end": "2021-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-2-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-654538109737", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-2-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-2-encounter-5" + }, + "occurrenceDateTime": "2021-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-2-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-705016310595", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-2-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-2" + }, + "period": { + "start": "2021-07-15", + "end": "2021-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-2-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-499231295124", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-2-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-2-encounter-6" + }, + "occurrenceDateTime": "2021-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-2-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-206424350440", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-2-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-2" + }, + "period": { + "start": "2021-09-15", + "end": "2021-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-2-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-206887864024", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-2-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-2-encounter-7" + }, + "occurrenceDateTime": "2021-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-2-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-365326843613", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-2-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-2" + }, + "period": { + "start": "2022-03-15", + "end": "2022-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-2-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-315433210973", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-2-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-2-encounter-8" + }, + "occurrenceDateTime": "2022-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-2-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-602661625842", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-2-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-2" + }, + "period": { + "start": "2022-03-15", + "end": "2022-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-2-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-157220004316", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-2-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-2-encounter-9" + }, + "occurrenceDateTime": "2022-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-2-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-883585798176", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-2-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-2" + }, + "period": { + "start": "2022-03-15", + "end": "2022-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-2-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-460097487633", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-2-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-2-encounter-10" + }, + "occurrenceDateTime": "2022-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-2-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-869844647017", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-2-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-2" + }, + "period": { + "start": "2022-06-15", + "end": "2022-06-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-2-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-404416422206", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-2-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-2-encounter-11" + }, + "occurrenceDateTime": "2022-06-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-2-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-846790176797", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-2-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-2" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-2-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-032540364699", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-2-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-2-encounter-12" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-2-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-587576410105", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-18-month-patient-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "30" + } + ], + "name": [ + { + "family": "Morton", + "given": [ + "Sophie" + ] + } + ], + "birthDate": "2021-02-23", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-18-month-patient-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-627811755592", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-3-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-3" + }, + "period": { + "start": "2021-05-15", + "end": "2021-05-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-3-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-582731470050", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-3-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-3-encounter-1" + }, + "occurrenceDateTime": "2021-05-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-3-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-134564725900", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-3-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-3" + }, + "period": { + "start": "2021-05-15", + "end": "2021-05-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-3-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-141884220407", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-3-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-3-encounter-2" + }, + "occurrenceDateTime": "2021-05-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-3-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-024957163528", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-3-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-3" + }, + "period": { + "start": "2021-05-15", + "end": "2021-05-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-3-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-921312480354", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-3-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-3-encounter-3" + }, + "occurrenceDateTime": "2021-05-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-3-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-240777892041", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-3-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-3" + }, + "period": { + "start": "2021-07-15", + "end": "2021-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-3-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-535696693659", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-3-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-3-encounter-4" + }, + "occurrenceDateTime": "2021-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-3-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-705976926607", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-3-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-3" + }, + "period": { + "start": "2021-07-15", + "end": "2021-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-3-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-246548737097", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-3-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-3-encounter-5" + }, + "occurrenceDateTime": "2021-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-3-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-323254193410", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-3-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-3" + }, + "period": { + "start": "2021-07-15", + "end": "2021-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-3-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-649775225187", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-3-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-3-encounter-6" + }, + "occurrenceDateTime": "2021-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-3-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-264196714691", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-3-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-3" + }, + "period": { + "start": "2021-09-15", + "end": "2021-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-3-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-542483743071", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-3-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-3-encounter-7" + }, + "occurrenceDateTime": "2021-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-3-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-379690470323", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-3-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-3" + }, + "period": { + "start": "2022-03-15", + "end": "2022-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-3-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-500453569461", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-3-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-3-encounter-8" + }, + "occurrenceDateTime": "2022-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-3-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-805503781488", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-3-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-3" + }, + "period": { + "start": "2022-03-15", + "end": "2022-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-3-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-000299157114", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-3-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-3-encounter-9" + }, + "occurrenceDateTime": "2022-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-3-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-534328249285", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-3-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-3" + }, + "period": { + "start": "2022-03-15", + "end": "2022-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-3-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-641276662483", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-3-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-3-encounter-10" + }, + "occurrenceDateTime": "2022-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-3-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-622556716437", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-3-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-3" + }, + "period": { + "start": "2022-06-15", + "end": "2022-06-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-3-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-776061210197", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-3-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-3-encounter-11" + }, + "occurrenceDateTime": "2022-06-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-3-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-049324250669", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-3-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-3" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-3-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-807624203057", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-3-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-3-encounter-12" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-3-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-931416735190", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-18-month-patient-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "31" + } + ], + "name": [ + { + "family": "Coates", + "given": [ + "Max" + ] + } + ], + "birthDate": "2021-03-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-18-month-patient-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-479065727294", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-4-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-4" + }, + "period": { + "start": "2021-05-15", + "end": "2021-05-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-4-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-954678592176", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-4-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-4-encounter-1" + }, + "occurrenceDateTime": "2021-05-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-4-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-524857459269", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-4-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-4" + }, + "period": { + "start": "2021-05-15", + "end": "2021-05-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-4-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-827229658158", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-4-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-4-encounter-2" + }, + "occurrenceDateTime": "2021-05-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-4-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-869954536075", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-4-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-4" + }, + "period": { + "start": "2021-05-15", + "end": "2021-05-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-4-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-833231461037", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-4-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-4-encounter-3" + }, + "occurrenceDateTime": "2021-05-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-4-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-622487774323", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-4-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-4" + }, + "period": { + "start": "2021-07-15", + "end": "2021-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-4-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-032545125225", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-4-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-4-encounter-4" + }, + "occurrenceDateTime": "2021-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-4-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-954061403893", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-4-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-4" + }, + "period": { + "start": "2021-07-15", + "end": "2021-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-4-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-188816129913", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-4-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-4-encounter-5" + }, + "occurrenceDateTime": "2021-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-4-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-112932531133", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-4-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-4" + }, + "period": { + "start": "2021-07-15", + "end": "2021-07-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-4-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-077328497541", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-4-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-4-encounter-6" + }, + "occurrenceDateTime": "2021-07-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-4-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-068265731429", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-4-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-4" + }, + "period": { + "start": "2021-09-15", + "end": "2021-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-4-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-213434015768", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-4-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-4-encounter-7" + }, + "occurrenceDateTime": "2021-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-4-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-956712000281", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-4-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-4" + }, + "period": { + "start": "2022-03-15", + "end": "2022-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-4-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-373352478613", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-4-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-4-encounter-8" + }, + "occurrenceDateTime": "2022-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-4-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-842043864014", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-4-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-4" + }, + "period": { + "start": "2022-03-15", + "end": "2022-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-4-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-937308993600", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-4-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-4-encounter-9" + }, + "occurrenceDateTime": "2022-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-4-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-040483427032", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-4-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-4" + }, + "period": { + "start": "2022-06-15", + "end": "2022-06-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-4-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-087186971737", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-4-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-4-encounter-10" + }, + "occurrenceDateTime": "2022-06-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-4-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-176662461310", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-4-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-4" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-4-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-886334430515", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-4-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-4-encounter-11" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-4-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-676900440271", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-4-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-4" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-4-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-488665260832", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-18-month-patient-4-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-18-month-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-18-month-patient-4-encounter-12" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-18-month-patient-4-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-073724409600", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-18-month-patient-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "32" + } + ], + "name": [ + { + "family": "Douglas", + "given": [ + "Kyle" + ] + } + ], + "birthDate": "2021-03-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-18-month-patient-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-127755235640", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-18-month-patient-5-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-18-month-patient-5" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-18-month-patient-5-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-770233443580", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-24-year-patient-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "48" + } + ], + "name": [ + { + "family": "Watson", + "given": [ + "Daniel" + ] + } + ], + "birthDate": "1998-09-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-24-year-patient-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-099864601587", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-1-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "period": { + "start": "1998-11-15", + "end": "1998-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-575336062929", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-1-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-1" + }, + "occurrenceDateTime": "1998-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-1-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-010380052780", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-1-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "period": { + "start": "1998-11-15", + "end": "1998-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-747600057074", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-1-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-2" + }, + "occurrenceDateTime": "1998-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-1-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-161184730451", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-1-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "period": { + "start": "1998-11-15", + "end": "1998-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-330199621874", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-1-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-3" + }, + "occurrenceDateTime": "1998-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-1-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-623165700590", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-1-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "period": { + "start": "1999-01-15", + "end": "1999-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-335785826730", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-1-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-4" + }, + "occurrenceDateTime": "1999-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-1-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-369541998707", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-1-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "period": { + "start": "1999-01-15", + "end": "1999-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-541902142275", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-1-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-5" + }, + "occurrenceDateTime": "1999-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-1-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-191847987755", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-1-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "period": { + "start": "1999-01-15", + "end": "1999-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-555736104717", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-1-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-6" + }, + "occurrenceDateTime": "1999-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-1-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-743811097285", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-1-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "period": { + "start": "1999-03-15", + "end": "1999-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-155604498177", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-1-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-7" + }, + "occurrenceDateTime": "1999-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-1-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-020445764326", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-1-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "period": { + "start": "1999-09-15", + "end": "1999-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-337238929205", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-1-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-8" + }, + "occurrenceDateTime": "1999-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-1-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-784334189584", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-1-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "period": { + "start": "1999-09-15", + "end": "1999-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-851344102141", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-1-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-9" + }, + "occurrenceDateTime": "1999-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-1-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-334370469856", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-1-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "period": { + "start": "1999-09-15", + "end": "1999-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-207149330467", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-1-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-10" + }, + "occurrenceDateTime": "1999-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-1-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-271230873608", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-1-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "period": { + "start": "1999-12-15", + "end": "1999-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-195445738154", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-1-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-11" + }, + "occurrenceDateTime": "1999-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-1-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-546290065153", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-1-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "period": { + "start": "2000-03-15", + "end": "2000-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-277060298681", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-1-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-12" + }, + "occurrenceDateTime": "2000-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-1-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-212978219278", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-1-encounter-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "period": { + "start": "2002-09-15", + "end": "2002-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-279931119312", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-1-immunization-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "94", + "display": "measles, mumps, rubella, and varicella virus vaccine" + } + ], + "text": "measles, mumps, rubella, and varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-13" + }, + "occurrenceDateTime": "2002-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-1-immunization-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-834804724675", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-1-encounter-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "period": { + "start": "2002-09-15", + "end": "2002-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-110787989785", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-1-immunization-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-14" + }, + "occurrenceDateTime": "2002-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-1-immunization-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-698893363662", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-1-encounter-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "period": { + "start": "2010-09-15", + "end": "2010-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-283737525528", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-1-immunization-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "08", + "display": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + } + ], + "text": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-15" + }, + "occurrenceDateTime": "2010-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-1-immunization-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-814093072862", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-1-encounter-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "period": { + "start": "2010-09-15", + "end": "2010-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-689378092897", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-1-immunization-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "108", + "display": "meningococcal ACWY vaccine, unspecified formulation" + } + ], + "text": "meningococcal ACWY vaccine, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-16" + }, + "occurrenceDateTime": "2010-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-1-immunization-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-405730659221", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-1-encounter-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "period": { + "start": "2010-09-15", + "end": "2010-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-053490066658", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-1-immunization-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "137", + "display": "HPV, unspecified formulation" + } + ], + "text": "HPV, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-17" + }, + "occurrenceDateTime": "2010-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-1-immunization-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-296155903145", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-1-encounter-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "period": { + "start": "2012-09-15", + "end": "2012-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-064751177947", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-1-immunization-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-18" + }, + "occurrenceDateTime": "2012-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-1-immunization-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-894683923276", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-1-encounter-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-696584535788", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-1-immunization-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-19" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-1-immunization-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-606317178897", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-1-encounter-20", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-20" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-876661185848", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-1-immunization-20", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-1-encounter-20" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-1-immunization-20" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-838697322274", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-24-year-patient-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "50" + } + ], + "name": [ + { + "family": "Harvey", + "given": [ + "Sofia" + ] + } + ], + "birthDate": "1998-09-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-24-year-patient-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-190659473054", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-3-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "period": { + "start": "1998-11-15", + "end": "1998-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-169397227314", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-3-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-1" + }, + "occurrenceDateTime": "1998-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-3-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-631526561923", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-3-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "period": { + "start": "1998-11-15", + "end": "1998-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-514538675801", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-3-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-2" + }, + "occurrenceDateTime": "1998-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-3-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-981127748426", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-3-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "period": { + "start": "1998-11-15", + "end": "1998-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-925091744304", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-3-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-3" + }, + "occurrenceDateTime": "1998-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-3-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-317045027232", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-3-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "period": { + "start": "1999-01-15", + "end": "1999-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-310645721199", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-3-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-4" + }, + "occurrenceDateTime": "1999-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-3-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-547635543416", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-3-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "period": { + "start": "1999-01-15", + "end": "1999-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-858339272109", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-3-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-5" + }, + "occurrenceDateTime": "1999-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-3-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-079605621782", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-3-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "period": { + "start": "1999-01-15", + "end": "1999-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-279532180051", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-3-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-6" + }, + "occurrenceDateTime": "1999-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-3-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-542838130106", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-3-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "period": { + "start": "1999-03-15", + "end": "1999-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-740840060868", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-3-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-7" + }, + "occurrenceDateTime": "1999-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-3-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-748522578090", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-3-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "period": { + "start": "1999-09-15", + "end": "1999-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-968433389102", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-3-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-8" + }, + "occurrenceDateTime": "1999-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-3-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-808605414366", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-3-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "period": { + "start": "1999-09-15", + "end": "1999-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-310164869779", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-3-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-9" + }, + "occurrenceDateTime": "1999-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-3-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-131623216128", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-3-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "period": { + "start": "1999-09-15", + "end": "1999-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-044992018537", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-3-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-10" + }, + "occurrenceDateTime": "1999-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-3-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-462215745216", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-3-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "period": { + "start": "1999-12-15", + "end": "1999-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-201547494745", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-3-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-11" + }, + "occurrenceDateTime": "1999-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-3-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-479950334921", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-3-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "period": { + "start": "2000-03-15", + "end": "2000-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-349061250604", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-3-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-12" + }, + "occurrenceDateTime": "2000-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-3-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-661082649890", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-3-encounter-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "period": { + "start": "2002-09-15", + "end": "2002-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-588997349504", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-3-immunization-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "94", + "display": "measles, mumps, rubella, and varicella virus vaccine" + } + ], + "text": "measles, mumps, rubella, and varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-13" + }, + "occurrenceDateTime": "2002-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-3-immunization-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-095276150721", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-3-encounter-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "period": { + "start": "2002-09-15", + "end": "2002-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-052386365639", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-3-immunization-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-14" + }, + "occurrenceDateTime": "2002-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-3-immunization-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-350478378273", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-3-encounter-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "period": { + "start": "2010-09-15", + "end": "2010-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-112901698043", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-3-immunization-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "08", + "display": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + } + ], + "text": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-15" + }, + "occurrenceDateTime": "2010-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-3-immunization-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-497506138213", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-3-encounter-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "period": { + "start": "2010-09-15", + "end": "2010-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-285292478196", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-3-immunization-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "108", + "display": "meningococcal ACWY vaccine, unspecified formulation" + } + ], + "text": "meningococcal ACWY vaccine, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-16" + }, + "occurrenceDateTime": "2010-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-3-immunization-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-711215569997", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-3-encounter-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "period": { + "start": "2010-09-15", + "end": "2010-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-6" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-052003400397", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-3-immunization-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "137", + "display": "HPV, unspecified formulation" + } + ], + "text": "HPV, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-17" + }, + "occurrenceDateTime": "2010-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-3-immunization-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-728969385148", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-3-encounter-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "period": { + "start": "2012-09-15", + "end": "2012-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-487808412047", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-3-immunization-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-18" + }, + "occurrenceDateTime": "2012-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-3-immunization-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-561893130081", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-3-encounter-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-835520695019", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-3-immunization-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-3-encounter-19" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-3-immunization-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-094475369272", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-24-year-patient-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "49" + } + ], + "name": [ + { + "family": "Fox", + "given": [ + "Matilda" + ] + } + ], + "birthDate": "1998-09-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-24-year-patient-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-360307416064", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-2-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "period": { + "start": "1998-11-15", + "end": "1998-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-013904333962", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-2-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-1" + }, + "occurrenceDateTime": "1998-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-2-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-951777866819", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-2-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "period": { + "start": "1998-11-15", + "end": "1998-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-697206234571", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-2-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-2" + }, + "occurrenceDateTime": "1998-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-2-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-787095127646", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-2-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "period": { + "start": "1998-11-15", + "end": "1998-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-021312925112", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-2-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-3" + }, + "occurrenceDateTime": "1998-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-2-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-555181440211", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-2-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "period": { + "start": "1999-01-15", + "end": "1999-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-056095263926", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-2-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-4" + }, + "occurrenceDateTime": "1999-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-2-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-833135449236", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-2-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "period": { + "start": "1999-01-15", + "end": "1999-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-854458612578", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-2-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-5" + }, + "occurrenceDateTime": "1999-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-2-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-036279279442", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-2-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "period": { + "start": "1999-01-15", + "end": "1999-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-701186290100", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-2-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-6" + }, + "occurrenceDateTime": "1999-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-2-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-328959623071", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-2-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "period": { + "start": "1999-03-15", + "end": "1999-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-528493734171", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-2-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-7" + }, + "occurrenceDateTime": "1999-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-2-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-690177658871", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-2-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "period": { + "start": "1999-09-15", + "end": "1999-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-760543563198", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-2-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-8" + }, + "occurrenceDateTime": "1999-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-2-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-407224274498", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-2-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "period": { + "start": "1999-09-15", + "end": "1999-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-945459572559", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-2-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-9" + }, + "occurrenceDateTime": "1999-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-2-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-354324128538", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-2-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "period": { + "start": "1999-09-15", + "end": "1999-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-808249871175", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-2-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-10" + }, + "occurrenceDateTime": "1999-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-2-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-873869555368", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-2-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "period": { + "start": "1999-12-15", + "end": "1999-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-076347248305", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-2-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-11" + }, + "occurrenceDateTime": "1999-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-2-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-395354756669", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-2-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "period": { + "start": "2000-03-15", + "end": "2000-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-141702880215", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-2-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-12" + }, + "occurrenceDateTime": "2000-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-2-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-362715519502", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-2-encounter-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "period": { + "start": "2002-09-15", + "end": "2002-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-359318684355", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-2-immunization-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "94", + "display": "measles, mumps, rubella, and varicella virus vaccine" + } + ], + "text": "measles, mumps, rubella, and varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-13" + }, + "occurrenceDateTime": "2002-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-2-immunization-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-647009007547", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-2-encounter-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "period": { + "start": "2002-09-15", + "end": "2002-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-398536088546", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-2-immunization-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-14" + }, + "occurrenceDateTime": "2002-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-2-immunization-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-034114647282", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-2-encounter-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "period": { + "start": "2010-09-15", + "end": "2010-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-182904834814", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-2-immunization-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "08", + "display": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + } + ], + "text": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-15" + }, + "occurrenceDateTime": "2010-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-2-immunization-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-436056560210", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-2-encounter-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "period": { + "start": "2010-09-15", + "end": "2010-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-853857546758", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-2-immunization-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "108", + "display": "meningococcal ACWY vaccine, unspecified formulation" + } + ], + "text": "meningococcal ACWY vaccine, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-16" + }, + "occurrenceDateTime": "2010-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-2-immunization-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-164767420069", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-2-encounter-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "period": { + "start": "2010-09-15", + "end": "2010-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-341073003310", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-2-immunization-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "137", + "display": "HPV, unspecified formulation" + } + ], + "text": "HPV, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-17" + }, + "occurrenceDateTime": "2010-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-2-immunization-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-360704475092", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-2-encounter-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "period": { + "start": "2012-09-15", + "end": "2012-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-807723899740", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-2-immunization-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-18" + }, + "occurrenceDateTime": "2012-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-2-immunization-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-895529016751", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-2-encounter-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-124785196253", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-2-immunization-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-19" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-2-immunization-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-796267546868", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-2-encounter-20", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-20" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-071763383015", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-2-immunization-20", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-2-encounter-20" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-2-immunization-20" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-817805469799", + "resource": { + "resourceType": "Observation", + "id": "ImmunizationStatus-24-year-patient-2-observation-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Observation" + ] + }, + "status": "final", + "code": { + "coding": [ + { + "system": "http://loinc.org", + "code": "82810-3", + "display": "Pregnancy status" + } + ] + }, + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "effectiveDateTime": "2022-09-15", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://loinc.org", + "code": "LA15173-0", + "display": "Pregnant" + } + ], + "text": "Pregnant" + } + }, + "request": { + "method": "PUT", + "url": "Observation/ImmunizationStatus-24-year-patient-2-observation-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-098363059885", + "resource": { + "resourceType": "Observation", + "id": "ImmunizationStatus-24-year-patient-2-observation-2", + "status": "final", + "code": { + "coding": [ + { + "system": "http://loinc.org", + "code": "49051-6", + "display": "Gestational age in weeks" + } + ] + }, + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-2" + }, + "effectiveDateTime": "2022-09-15", + "valueQuantity": { + "value": 22, + "system": "http://unitsofmeasure.org", + "code": "wk" + } + }, + "request": { + "method": "PUT", + "url": "Observation/ImmunizationStatus-24-year-patient-2-observation-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-629461789415", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-24-year-patient-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "51" + } + ], + "name": [ + { + "family": "Bell", + "given": [ + "Alexander" + ] + } + ], + "birthDate": "1998-09-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-24-year-patient-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-962325764027", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-4-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "period": { + "start": "1998-11-15", + "end": "1998-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-896812328341", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-4-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-1" + }, + "occurrenceDateTime": "1998-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-4-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-605511745361", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-4-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "period": { + "start": "1998-11-15", + "end": "1998-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-579406308149", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-4-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-2" + }, + "occurrenceDateTime": "1998-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-4-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-781644457036", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-4-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "period": { + "start": "1998-11-15", + "end": "1998-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-197156555891", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-4-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-3" + }, + "occurrenceDateTime": "1998-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-4-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-079456075970", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-4-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "period": { + "start": "1999-01-15", + "end": "1999-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-162082778404", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-4-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-4" + }, + "occurrenceDateTime": "1999-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-4-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-142775220019", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-4-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "period": { + "start": "1999-01-15", + "end": "1999-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-396263471372", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-4-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-5" + }, + "occurrenceDateTime": "1999-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-4-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-213678886573", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-4-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "period": { + "start": "1999-01-15", + "end": "1999-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-583175328899", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-4-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-6" + }, + "occurrenceDateTime": "1999-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-4-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-223731616242", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-4-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "period": { + "start": "1999-03-15", + "end": "1999-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-995972629825", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-4-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-7" + }, + "occurrenceDateTime": "1999-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-4-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-692536222171", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-4-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "period": { + "start": "1999-09-15", + "end": "1999-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-694001510706", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-4-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-8" + }, + "occurrenceDateTime": "1999-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-4-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-369129350447", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-4-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "period": { + "start": "1999-09-15", + "end": "1999-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-105986246771", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-4-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-9" + }, + "occurrenceDateTime": "1999-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-4-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-389225231630", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-4-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "period": { + "start": "1999-09-15", + "end": "1999-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-267682750326", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-4-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-10" + }, + "occurrenceDateTime": "1999-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-4-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-579335269591", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-4-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "period": { + "start": "1999-12-15", + "end": "1999-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-437640963836", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-4-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-11" + }, + "occurrenceDateTime": "1999-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-4-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-958749238734", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-4-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "period": { + "start": "2000-03-15", + "end": "2000-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-102826314243", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-4-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-12" + }, + "occurrenceDateTime": "2000-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-4-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-701850064239", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-4-encounter-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "period": { + "start": "2002-09-15", + "end": "2002-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-116643887141", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-4-immunization-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "94", + "display": "measles, mumps, rubella, and varicella virus vaccine" + } + ], + "text": "measles, mumps, rubella, and varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-13" + }, + "occurrenceDateTime": "2002-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-4-immunization-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-164284720725", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-4-encounter-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "period": { + "start": "2002-09-15", + "end": "2002-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-873503907470", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-4-immunization-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-14" + }, + "occurrenceDateTime": "2002-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-4-immunization-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-202939087216", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-4-encounter-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "period": { + "start": "2010-09-15", + "end": "2010-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-872402748449", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-4-immunization-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "08", + "display": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + } + ], + "text": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-15" + }, + "occurrenceDateTime": "2010-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-4-immunization-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-807341255578", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-4-encounter-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "period": { + "start": "2010-09-15", + "end": "2010-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-568053880475", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-4-immunization-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "137", + "display": "HPV, unspecified formulation" + } + ], + "text": "HPV, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-16" + }, + "occurrenceDateTime": "2010-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-4-immunization-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-814638441400", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-4-encounter-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "period": { + "start": "2012-09-15", + "end": "2012-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-730014605808", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-4-immunization-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-17" + }, + "occurrenceDateTime": "2012-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-4-immunization-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-137766544735", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-4-encounter-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-410259917548", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-4-immunization-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-18" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-4-immunization-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-237074501727", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-4-encounter-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-086796947548", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-24-year-patient-4-immunization-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-24-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-24-year-patient-4-encounter-19" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-24-year-patient-4-immunization-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-208471043164", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-24-year-patient-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "52" + } + ], + "name": [ + { + "family": "Bevan", + "given": [ + "Kate" + ] + } + ], + "birthDate": "1998-09-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-24-year-patient-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-237035418162", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-24-year-patient-5-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-24-year-patient-5" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-24-year-patient-5-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-173013858238", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-34-year-patient-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "53" + } + ], + "name": [ + { + "family": "White", + "given": [ + "April" + ] + } + ], + "birthDate": "1988-08-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-34-year-patient-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-464207278587", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-1-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "period": { + "start": "1988-10-15", + "end": "1988-10-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-640593637232", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-1-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-1" + }, + "occurrenceDateTime": "1988-10-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-1-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-533991778509", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-1-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "period": { + "start": "1988-10-15", + "end": "1988-10-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-487080042712", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-1-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-2" + }, + "occurrenceDateTime": "1988-10-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-1-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-725176954028", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-1-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "period": { + "start": "1988-10-15", + "end": "1988-10-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-808739953742", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-1-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-3" + }, + "occurrenceDateTime": "1988-10-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-1-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-102149371726", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-1-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "period": { + "start": "1988-12-15", + "end": "1988-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-192245681335", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-1-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-4" + }, + "occurrenceDateTime": "1988-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-1-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-763004976528", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-1-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "period": { + "start": "1988-12-15", + "end": "1988-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-999567687960", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-1-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-5" + }, + "occurrenceDateTime": "1988-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-1-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-087930422381", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-1-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "period": { + "start": "1988-12-15", + "end": "1988-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-383804293139", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-1-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-6" + }, + "occurrenceDateTime": "1988-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-1-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-939314589880", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-1-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "period": { + "start": "1989-02-15", + "end": "1989-02-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-156570788974", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-1-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-7" + }, + "occurrenceDateTime": "1989-02-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-1-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-835820732390", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-1-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "period": { + "start": "1989-08-15", + "end": "1989-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-978909782936", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-1-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-8" + }, + "occurrenceDateTime": "1989-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-1-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-592173084400", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-1-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "period": { + "start": "1989-08-15", + "end": "1989-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-954547920196", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-1-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-9" + }, + "occurrenceDateTime": "1989-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-1-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-352638222692", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-1-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "period": { + "start": "1989-08-15", + "end": "1989-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-351390105819", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-1-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-10" + }, + "occurrenceDateTime": "1989-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-1-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-499802737997", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-1-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "period": { + "start": "1989-11-15", + "end": "1989-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-282324046940", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-1-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-11" + }, + "occurrenceDateTime": "1989-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-1-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-199678258072", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-1-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "period": { + "start": "1990-02-15", + "end": "1990-02-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-388499042980", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-1-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-12" + }, + "occurrenceDateTime": "1990-02-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-1-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-215252946977", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-1-encounter-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "period": { + "start": "1992-08-15", + "end": "1992-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-670751830926", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-1-immunization-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "94", + "display": "measles, mumps, rubella, and varicella virus vaccine" + } + ], + "text": "measles, mumps, rubella, and varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-13" + }, + "occurrenceDateTime": "1992-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-1-immunization-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-880426443616", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-1-encounter-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "period": { + "start": "1992-08-15", + "end": "1992-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-938331934707", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-1-immunization-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-14" + }, + "occurrenceDateTime": "1992-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-1-immunization-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-239777643625", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-1-encounter-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "period": { + "start": "2000-08-15", + "end": "2000-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-084741818419", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-1-immunization-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "08", + "display": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + } + ], + "text": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-15" + }, + "occurrenceDateTime": "2000-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-1-immunization-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-108782469750", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-1-encounter-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "period": { + "start": "2000-08-15", + "end": "2000-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-532271810181", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-1-immunization-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "108", + "display": "meningococcal ACWY vaccine, unspecified formulation" + } + ], + "text": "meningococcal ACWY vaccine, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-16" + }, + "occurrenceDateTime": "2000-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-1-immunization-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-003397963547", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-1-encounter-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "period": { + "start": "2000-08-15", + "end": "2000-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-262934444655", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-1-immunization-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "137", + "display": "HPV, unspecified formulation" + } + ], + "text": "HPV, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-17" + }, + "occurrenceDateTime": "2000-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-1-immunization-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-566452409600", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-1-encounter-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "period": { + "start": "2002-08-15", + "end": "2002-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-984670953458", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-1-immunization-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-18" + }, + "occurrenceDateTime": "2002-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-1-immunization-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-229914969900", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-1-encounter-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "period": { + "start": "2012-08-15", + "end": "2012-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-427256823690", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-1-immunization-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-19" + }, + "occurrenceDateTime": "2012-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-1-immunization-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-483347581461", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-1-encounter-20", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "period": { + "start": "2022-08-15", + "end": "2022-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-20" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-377189849378", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-1-immunization-20", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "139", + "display": "Td(adult) unspecified formulation" + } + ], + "text": "Td(adult) unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-20" + }, + "occurrenceDateTime": "2022-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-1-immunization-20" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-953053585254", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-1-encounter-21", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-21" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-432859298493", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-1-immunization-21", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-1-encounter-21" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-1-immunization-21" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-202167739016", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-34-year-patient-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "54" + } + ], + "name": [ + { + "family": "Holmes", + "given": [ + "Courtney" + ] + } + ], + "birthDate": "1988-08-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-34-year-patient-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-932830436316", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-2-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "period": { + "start": "1988-10-15", + "end": "1988-10-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-462687684653", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-2-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-1" + }, + "occurrenceDateTime": "1988-10-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-2-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-834478428989", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-2-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "period": { + "start": "1988-10-15", + "end": "1988-10-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-469505488300", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-2-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-2" + }, + "occurrenceDateTime": "1988-10-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-2-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-845170839340", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-2-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "period": { + "start": "1988-10-15", + "end": "1988-10-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-528811825744", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-2-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-3" + }, + "occurrenceDateTime": "1988-10-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-2-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-737801798698", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-2-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "period": { + "start": "1988-12-15", + "end": "1988-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-361788068157", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-2-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-4" + }, + "occurrenceDateTime": "1988-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-2-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-915005694319", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-2-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "period": { + "start": "1988-12-15", + "end": "1988-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-685506682014", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-2-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-5" + }, + "occurrenceDateTime": "1988-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-2-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-825786461934", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-2-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "period": { + "start": "1988-12-15", + "end": "1988-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-659782531106", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-2-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-6" + }, + "occurrenceDateTime": "1988-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-2-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-965958167693", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-2-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "period": { + "start": "1989-02-15", + "end": "1989-02-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-843680223246", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-2-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-7" + }, + "occurrenceDateTime": "1989-02-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-2-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-834381946705", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-2-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "period": { + "start": "1989-08-15", + "end": "1989-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-913843928807", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-2-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-8" + }, + "occurrenceDateTime": "1989-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-2-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-834725463584", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-2-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "period": { + "start": "1989-08-15", + "end": "1989-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-335761439439", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-2-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-9" + }, + "occurrenceDateTime": "1989-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-2-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-258052626158", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-2-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "period": { + "start": "1989-08-15", + "end": "1989-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-490306452360", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-2-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-10" + }, + "occurrenceDateTime": "1989-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-2-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-396281766141", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-2-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "period": { + "start": "1989-11-15", + "end": "1989-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-001104275557", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-2-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-11" + }, + "occurrenceDateTime": "1989-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-2-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-671744389706", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-2-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "period": { + "start": "1990-02-15", + "end": "1990-02-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-316373762155", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-2-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-12" + }, + "occurrenceDateTime": "1990-02-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-2-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-823995030829", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-2-encounter-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "period": { + "start": "1992-08-15", + "end": "1992-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-711272461810", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-2-immunization-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "94", + "display": "measles, mumps, rubella, and varicella virus vaccine" + } + ], + "text": "measles, mumps, rubella, and varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-13" + }, + "occurrenceDateTime": "1992-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-2-immunization-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-593992279419", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-2-encounter-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "period": { + "start": "1992-08-15", + "end": "1992-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-061452811386", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-2-immunization-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-14" + }, + "occurrenceDateTime": "1992-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-2-immunization-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-378291396583", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-2-encounter-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "period": { + "start": "2000-08-15", + "end": "2000-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-985972022194", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-2-immunization-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "08", + "display": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + } + ], + "text": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-15" + }, + "occurrenceDateTime": "2000-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-2-immunization-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-823322178642", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-2-encounter-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "period": { + "start": "2000-08-15", + "end": "2000-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-485110942556", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-2-immunization-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "108", + "display": "meningococcal ACWY vaccine, unspecified formulation" + } + ], + "text": "meningococcal ACWY vaccine, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-16" + }, + "occurrenceDateTime": "2000-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-2-immunization-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-971747338816", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-2-encounter-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "period": { + "start": "2000-08-15", + "end": "2000-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-204907727498", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-2-immunization-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "137", + "display": "HPV, unspecified formulation" + } + ], + "text": "HPV, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-17" + }, + "occurrenceDateTime": "2000-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-2-immunization-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-518859881712", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-2-encounter-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "period": { + "start": "2002-08-15", + "end": "2002-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-968199475847", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-2-immunization-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-18" + }, + "occurrenceDateTime": "2002-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-2-immunization-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-603179454546", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-2-encounter-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "period": { + "start": "2012-08-15", + "end": "2012-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-189406475509", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-2-immunization-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-19" + }, + "occurrenceDateTime": "2012-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-2-immunization-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-447167608379", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-2-encounter-20", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "period": { + "start": "2022-08-15", + "end": "2022-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-20" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-032274676586", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-2-immunization-20", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "139", + "display": "Td(adult) unspecified formulation" + } + ], + "text": "Td(adult) unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-20" + }, + "occurrenceDateTime": "2022-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-2-immunization-20" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-921844732820", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-2-encounter-21", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-21" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-373741882700", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-2-immunization-21", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-2-encounter-21" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-2-immunization-21" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-293059823263", + "resource": { + "resourceType": "Observation", + "id": "ImmunizationStatus-34-year-patient-2-observation-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Observation" + ] + }, + "status": "final", + "code": { + "coding": [ + { + "system": "http://loinc.org", + "code": "82810-3", + "display": "Pregnancy status" + } + ] + }, + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "effectiveDateTime": "2022-09-15", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://loinc.org", + "code": "LA15173-0", + "display": "Pregnant" + } + ], + "text": "Pregnant" + } + }, + "request": { + "method": "PUT", + "url": "Observation/ImmunizationStatus-34-year-patient-2-observation-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-932667206755", + "resource": { + "resourceType": "Observation", + "id": "ImmunizationStatus-34-year-patient-2-observation-2", + "status": "final", + "code": { + "coding": [ + { + "system": "http://loinc.org", + "code": "49051-6", + "display": "Gestational age in weeks" + } + ] + }, + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-2" + }, + "effectiveDateTime": "2022-09-15", + "valueQuantity": { + "value": 30, + "system": "http://unitsofmeasure.org", + "code": "wk" + } + }, + "request": { + "method": "PUT", + "url": "Observation/ImmunizationStatus-34-year-patient-2-observation-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-300604879408", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-34-year-patient-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "55" + } + ], + "name": [ + { + "family": "Morris", + "given": [ + "James" + ] + } + ], + "birthDate": "1988-08-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-34-year-patient-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-410686918370", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-3-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "period": { + "start": "1988-10-15", + "end": "1988-10-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-337333827730", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-3-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-1" + }, + "occurrenceDateTime": "1988-10-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-3-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-806713623189", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-3-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "period": { + "start": "1988-10-15", + "end": "1988-10-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-674615775185", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-3-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-2" + }, + "occurrenceDateTime": "1988-10-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-3-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-791845994760", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-3-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "period": { + "start": "1988-10-15", + "end": "1988-10-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-495168570738", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-3-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-3" + }, + "occurrenceDateTime": "1988-10-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-3-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-286149621648", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-3-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "period": { + "start": "1988-12-15", + "end": "1988-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-992978782019", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-3-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-4" + }, + "occurrenceDateTime": "1988-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-3-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-651518822835", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-3-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "period": { + "start": "1988-12-15", + "end": "1988-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-675970007136", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-3-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-5" + }, + "occurrenceDateTime": "1988-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-3-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-248967818623", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-3-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "period": { + "start": "1988-12-15", + "end": "1988-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-723508005348", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-3-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-6" + }, + "occurrenceDateTime": "1988-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-3-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-862877209795", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-3-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "period": { + "start": "1989-02-15", + "end": "1989-02-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-887541344093", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-3-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-7" + }, + "occurrenceDateTime": "1989-02-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-3-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-889240389172", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-3-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "period": { + "start": "1989-08-15", + "end": "1989-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-942684058488", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-3-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-8" + }, + "occurrenceDateTime": "1989-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-3-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-235279284089", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-3-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "period": { + "start": "1989-08-15", + "end": "1989-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-497252084292", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-3-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-9" + }, + "occurrenceDateTime": "1989-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-3-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-869213261259", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-3-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "period": { + "start": "1989-08-15", + "end": "1989-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-633414631834", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-3-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-10" + }, + "occurrenceDateTime": "1989-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-3-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-995559026092", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-3-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "period": { + "start": "1989-11-15", + "end": "1989-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-274951646775", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-3-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-11" + }, + "occurrenceDateTime": "1989-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-3-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-466775896103", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-3-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "period": { + "start": "1990-02-15", + "end": "1990-02-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-261186066879", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-3-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-12" + }, + "occurrenceDateTime": "1990-02-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-3-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-049692703903", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-3-encounter-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "period": { + "start": "1992-08-15", + "end": "1992-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-499348581543", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-3-immunization-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "94", + "display": "measles, mumps, rubella, and varicella virus vaccine" + } + ], + "text": "measles, mumps, rubella, and varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-13" + }, + "occurrenceDateTime": "1992-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-3-immunization-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-356556382482", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-3-encounter-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "period": { + "start": "1992-08-15", + "end": "1992-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-603204208762", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-3-immunization-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-14" + }, + "occurrenceDateTime": "1992-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-3-immunization-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-796254107926", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-3-encounter-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "period": { + "start": "2000-08-15", + "end": "2000-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-871062321464", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-3-immunization-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "08", + "display": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + } + ], + "text": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-15" + }, + "occurrenceDateTime": "2000-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-3-immunization-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-674629234237", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-3-encounter-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "period": { + "start": "2000-08-15", + "end": "2000-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-834522165720", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-3-immunization-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "108", + "display": "meningococcal ACWY vaccine, unspecified formulation" + } + ], + "text": "meningococcal ACWY vaccine, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-16" + }, + "occurrenceDateTime": "2000-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-3-immunization-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-153529438252", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-3-encounter-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "period": { + "start": "2000-08-15", + "end": "2000-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-791144455700", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-3-immunization-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "137", + "display": "HPV, unspecified formulation" + } + ], + "text": "HPV, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-17" + }, + "occurrenceDateTime": "2000-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-3-immunization-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-625363942156", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-3-encounter-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "period": { + "start": "2002-08-15", + "end": "2002-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-158622806461", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-3-immunization-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-18" + }, + "occurrenceDateTime": "2002-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-3-immunization-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-397128195417", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-3-encounter-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "period": { + "start": "2012-08-15", + "end": "2012-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-319045371733", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-3-immunization-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-19" + }, + "occurrenceDateTime": "2012-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-3-immunization-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-982782299393", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-3-encounter-20", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "period": { + "start": "2022-08-15", + "end": "2022-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-20" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-269668301114", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-3-immunization-20", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-3-encounter-20" + }, + "occurrenceDateTime": "2022-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-3-immunization-20" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-946341177336", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-34-year-patient-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "56" + } + ], + "name": [ + { + "family": "Gordon", + "given": [ + "Ben" + ] + } + ], + "birthDate": "1988-08-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-34-year-patient-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-042836168422", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-4-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "period": { + "start": "1988-10-15", + "end": "1988-10-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-385492595281", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-4-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-1" + }, + "occurrenceDateTime": "1988-10-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-4-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-382973283432", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-4-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "period": { + "start": "1988-10-15", + "end": "1988-10-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-598684870064", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-4-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-2" + }, + "occurrenceDateTime": "1988-10-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-4-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-493437652398", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-4-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "period": { + "start": "1988-10-15", + "end": "1988-10-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-815613301410", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-4-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-3" + }, + "occurrenceDateTime": "1988-10-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-4-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-818605334563", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-4-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "period": { + "start": "1988-12-15", + "end": "1988-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-926215880603", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-4-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-4" + }, + "occurrenceDateTime": "1988-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-4-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-736741222327", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-4-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "period": { + "start": "1988-12-15", + "end": "1988-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-205109260807", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-4-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-5" + }, + "occurrenceDateTime": "1988-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-4-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-050291318787", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-4-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "period": { + "start": "1988-12-15", + "end": "1988-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-200327443218", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-4-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-6" + }, + "occurrenceDateTime": "1988-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-4-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-549032840361", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-4-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "period": { + "start": "1989-02-15", + "end": "1989-02-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-261909026565", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-4-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-7" + }, + "occurrenceDateTime": "1989-02-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-4-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-193243919506", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-4-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "period": { + "start": "1989-08-15", + "end": "1989-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-341067851769", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-4-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-8" + }, + "occurrenceDateTime": "1989-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-4-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-972530386941", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-4-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "period": { + "start": "1989-08-15", + "end": "1989-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-296049149848", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-4-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-9" + }, + "occurrenceDateTime": "1989-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-4-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-874380436110", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-4-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "period": { + "start": "1989-08-15", + "end": "1989-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-608126498316", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-4-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-10" + }, + "occurrenceDateTime": "1989-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-4-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-350130993967", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-4-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "period": { + "start": "1989-11-15", + "end": "1989-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-495768997441", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-4-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-11" + }, + "occurrenceDateTime": "1989-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-4-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-091403081485", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-4-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "period": { + "start": "1990-02-15", + "end": "1990-02-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-161200429996", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-4-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-12" + }, + "occurrenceDateTime": "1990-02-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-4-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-890327884841", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-4-encounter-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "period": { + "start": "1992-08-15", + "end": "1992-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-881030857793", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-4-immunization-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "94", + "display": "measles, mumps, rubella, and varicella virus vaccine" + } + ], + "text": "measles, mumps, rubella, and varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-13" + }, + "occurrenceDateTime": "1992-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-4-immunization-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-092813824937", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-4-encounter-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "period": { + "start": "1992-08-15", + "end": "1992-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-097174062749", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-4-immunization-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-14" + }, + "occurrenceDateTime": "1992-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-4-immunization-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-990944780168", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-4-encounter-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "period": { + "start": "2000-08-15", + "end": "2000-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-941715518668", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-4-immunization-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "08", + "display": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + } + ], + "text": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-15" + }, + "occurrenceDateTime": "2000-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-4-immunization-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-468560671232", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-4-encounter-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "period": { + "start": "2000-08-15", + "end": "2000-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-178167394655", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-4-immunization-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "108", + "display": "meningococcal ACWY vaccine, unspecified formulation" + } + ], + "text": "meningococcal ACWY vaccine, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-16" + }, + "occurrenceDateTime": "2000-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-4-immunization-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-797544130965", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-4-encounter-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "period": { + "start": "2000-08-15", + "end": "2000-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-709028510434", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-4-immunization-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "137", + "display": "HPV, unspecified formulation" + } + ], + "text": "HPV, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-17" + }, + "occurrenceDateTime": "2000-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-4-immunization-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-283110987528", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-4-encounter-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "period": { + "start": "2002-08-15", + "end": "2002-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-125293869734", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-4-immunization-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-18" + }, + "occurrenceDateTime": "2002-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-4-immunization-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-411525614810", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-4-encounter-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "period": { + "start": "2012-08-15", + "end": "2012-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-892176117288", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-4-immunization-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-19" + }, + "occurrenceDateTime": "2012-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-4-immunization-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-716169238105", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-4-encounter-20", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "period": { + "start": "2022-08-15", + "end": "2022-08-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-20" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-102147821120", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-34-year-patient-4-immunization-20", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "139", + "display": "Td(adult) unspecified formulation" + } + ], + "text": "Td(adult) unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-34-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-34-year-patient-4-encounter-20" + }, + "occurrenceDateTime": "2022-08-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-34-year-patient-4-immunization-20" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-397510035987", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-34-year-patient-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "57" + } + ], + "name": [ + { + "family": "Rees", + "given": [ + "Andrew" + ] + } + ], + "birthDate": "1988-08-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-34-year-patient-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-757268355089", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-34-year-patient-5-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-34-year-patient-5" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-34-year-patient-5-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-132194558083", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-65-year-patient-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "58" + } + ], + "name": [ + { + "family": "Redmon", + "given": [ + "Daniel" + ] + } + ], + "birthDate": "1957-09-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-65-year-patient-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-824638452511", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-1-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "period": { + "start": "1957-11-15", + "end": "1957-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-274521972967", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-1-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-1" + }, + "occurrenceDateTime": "1957-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-1-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-518544066938", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-1-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "period": { + "start": "1957-11-15", + "end": "1957-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-471533174406", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-1-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-2" + }, + "occurrenceDateTime": "1957-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-1-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-189258336065", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-1-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "period": { + "start": "1957-11-15", + "end": "1957-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-471933104625", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-1-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-3" + }, + "occurrenceDateTime": "1957-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-1-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-434127413698", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-1-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "period": { + "start": "1958-01-15", + "end": "1958-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-649957692385", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-1-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-4" + }, + "occurrenceDateTime": "1958-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-1-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-195490391327", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-1-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "period": { + "start": "1958-01-15", + "end": "1958-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-120976093240", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-1-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-5" + }, + "occurrenceDateTime": "1958-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-1-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-441400900562", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-1-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "period": { + "start": "1958-01-15", + "end": "1958-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-015701619890", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-1-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-6" + }, + "occurrenceDateTime": "1958-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-1-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-051730557114", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-1-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "period": { + "start": "1958-03-15", + "end": "1958-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-904650237235", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-1-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-7" + }, + "occurrenceDateTime": "1958-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-1-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-898313669525", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-1-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "period": { + "start": "1958-09-15", + "end": "1958-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-163381521971", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-1-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-8" + }, + "occurrenceDateTime": "1958-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-1-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-378107827350", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-1-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "period": { + "start": "1958-09-15", + "end": "1958-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-097473895044", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-1-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-9" + }, + "occurrenceDateTime": "1958-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-1-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-055061675186", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-1-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "period": { + "start": "1958-09-15", + "end": "1958-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-130492074955", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-1-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-10" + }, + "occurrenceDateTime": "1958-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-1-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-514150410157", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-1-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "period": { + "start": "1958-12-15", + "end": "1958-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-820622764412", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-1-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-11" + }, + "occurrenceDateTime": "1958-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-1-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-007251222878", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-1-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "period": { + "start": "1959-03-15", + "end": "1959-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-642266327927", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-1-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-12" + }, + "occurrenceDateTime": "1959-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-1-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-718142784778", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-1-encounter-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "period": { + "start": "1961-09-15", + "end": "1961-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-428341584216", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-1-immunization-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "94", + "display": "measles, mumps, rubella, and varicella virus vaccine" + } + ], + "text": "measles, mumps, rubella, and varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-13" + }, + "occurrenceDateTime": "1961-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-1-immunization-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-333257268232", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-1-encounter-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "period": { + "start": "1961-09-15", + "end": "1961-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-175766994096", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-1-immunization-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-14" + }, + "occurrenceDateTime": "1961-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-1-immunization-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-224327940126", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-1-encounter-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "period": { + "start": "1969-09-15", + "end": "1969-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-791751121428", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-1-immunization-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "08", + "display": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + } + ], + "text": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-15" + }, + "occurrenceDateTime": "1969-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-1-immunization-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-251926583558", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-1-encounter-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "period": { + "start": "1969-09-15", + "end": "1969-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-304544766963", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-1-immunization-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "108", + "display": "meningococcal ACWY vaccine, unspecified formulation" + } + ], + "text": "meningococcal ACWY vaccine, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-16" + }, + "occurrenceDateTime": "1969-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-1-immunization-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-055660766769", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-1-encounter-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "period": { + "start": "1969-09-15", + "end": "1969-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-209208940470", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-1-immunization-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "137", + "display": "HPV, unspecified formulation" + } + ], + "text": "HPV, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-17" + }, + "occurrenceDateTime": "1969-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-1-immunization-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-938608693272", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-1-encounter-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "period": { + "start": "1971-09-15", + "end": "1971-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-196807910008", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-1-immunization-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-18" + }, + "occurrenceDateTime": "1971-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-1-immunization-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-405584945716", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-1-encounter-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "period": { + "start": "1981-09-15", + "end": "1981-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-426724479214", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-1-immunization-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-19" + }, + "occurrenceDateTime": "1981-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-1-immunization-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-858418059234", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-1-encounter-20", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "period": { + "start": "2021-09-15", + "end": "2021-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-20" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-922494912162", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-1-immunization-20", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "139", + "display": "Td(adult) unspecified formulation" + } + ], + "text": "Td(adult) unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-20" + }, + "occurrenceDateTime": "2021-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-1-immunization-20" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-450410820114", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-1-encounter-21", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-21" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-187885153720", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-1-immunization-21", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "121", + "display": "zoster vaccine, live" + } + ], + "text": "zoster vaccine, live" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-21" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-1-immunization-21" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-558828298624", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-1-encounter-22", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-22" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-938212922274", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-1-immunization-22", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "33", + "display": "pneumococcal polysaccharide vaccine, 23 valent" + } + ], + "text": "pneumococcal polysaccharide vaccine, 23 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-22" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-1-immunization-22" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-798047213158", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-1-encounter-23", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-23" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-203851773030", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-1-immunization-23", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-1-encounter-23" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-1-immunization-23" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-655759421349", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-65-year-patient-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "59" + } + ], + "name": [ + { + "family": "McDaniel", + "given": [ + "Cynthia" + ] + } + ], + "birthDate": "1957-09-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-65-year-patient-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-862605199657", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-2-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "period": { + "start": "1957-11-15", + "end": "1957-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-952251353785", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-2-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-1" + }, + "occurrenceDateTime": "1957-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-2-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-980752567946", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-2-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "period": { + "start": "1957-11-15", + "end": "1957-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-531090843611", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-2-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-2" + }, + "occurrenceDateTime": "1957-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-2-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-806990127961", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-2-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "period": { + "start": "1957-11-15", + "end": "1957-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-892468635698", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-2-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-3" + }, + "occurrenceDateTime": "1957-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-2-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-695630984462", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-2-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "period": { + "start": "1958-01-15", + "end": "1958-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-554260454394", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-2-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-4" + }, + "occurrenceDateTime": "1958-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-2-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-435853866239", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-2-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "period": { + "start": "1958-01-15", + "end": "1958-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-532907074457", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-2-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-5" + }, + "occurrenceDateTime": "1958-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-2-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-470083930867", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-2-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "period": { + "start": "1958-01-15", + "end": "1958-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-910073335325", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-2-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-6" + }, + "occurrenceDateTime": "1958-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-2-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-758012358288", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-2-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "period": { + "start": "1958-03-15", + "end": "1958-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-867401050943", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-2-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-7" + }, + "occurrenceDateTime": "1958-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-2-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-301200635701", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-2-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "period": { + "start": "1958-09-15", + "end": "1958-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-858447829968", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-2-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-8" + }, + "occurrenceDateTime": "1958-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-2-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-132019360517", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-2-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "period": { + "start": "1958-09-15", + "end": "1958-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-350264277414", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-2-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-9" + }, + "occurrenceDateTime": "1958-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-2-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-639359462400", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-2-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "period": { + "start": "1958-09-15", + "end": "1958-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-564167794588", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-2-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-10" + }, + "occurrenceDateTime": "1958-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-2-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-684223443634", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-2-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "period": { + "start": "1958-12-15", + "end": "1958-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-456585823270", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-2-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-11" + }, + "occurrenceDateTime": "1958-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-2-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-499911057844", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-2-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "period": { + "start": "1959-03-15", + "end": "1959-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-417398102181", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-2-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-12" + }, + "occurrenceDateTime": "1959-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-2-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-003108082627", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-2-encounter-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "period": { + "start": "1961-09-15", + "end": "1961-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-608180382960", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-2-immunization-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "94", + "display": "measles, mumps, rubella, and varicella virus vaccine" + } + ], + "text": "measles, mumps, rubella, and varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-13" + }, + "occurrenceDateTime": "1961-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-2-immunization-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-289536439278", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-2-encounter-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "period": { + "start": "1961-09-15", + "end": "1961-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-737626342172", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-2-immunization-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-14" + }, + "occurrenceDateTime": "1961-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-2-immunization-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-033141425217", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-2-encounter-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "period": { + "start": "1969-09-15", + "end": "1969-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-600318832465", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-2-immunization-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "08", + "display": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + } + ], + "text": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-15" + }, + "occurrenceDateTime": "1969-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-2-immunization-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-536729792664", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-2-encounter-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "period": { + "start": "1969-09-15", + "end": "1969-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-561681190449", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-2-immunization-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "108", + "display": "meningococcal ACWY vaccine, unspecified formulation" + } + ], + "text": "meningococcal ACWY vaccine, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-16" + }, + "occurrenceDateTime": "1969-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-2-immunization-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-933543891028", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-2-encounter-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "period": { + "start": "1969-09-15", + "end": "1969-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-623538375045", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-2-immunization-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "137", + "display": "HPV, unspecified formulation" + } + ], + "text": "HPV, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-17" + }, + "occurrenceDateTime": "1969-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-2-immunization-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-601102891190", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-2-encounter-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "period": { + "start": "1971-09-15", + "end": "1971-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-314278053166", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-2-immunization-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-18" + }, + "occurrenceDateTime": "1971-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-2-immunization-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-227173031953", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-2-encounter-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "period": { + "start": "1981-09-15", + "end": "1981-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-831644629142", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-2-immunization-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-19" + }, + "occurrenceDateTime": "1981-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-2-immunization-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-509402980802", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-2-encounter-20", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "period": { + "start": "2021-09-15", + "end": "2021-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-20" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-344914205657", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-2-immunization-20", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "139", + "display": "Td(adult) unspecified formulation" + } + ], + "text": "Td(adult) unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-20" + }, + "occurrenceDateTime": "2021-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-2-immunization-20" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-471020908916", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-2-encounter-21", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-21" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-677103565449", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-2-immunization-21", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "121", + "display": "zoster vaccine, live" + } + ], + "text": "zoster vaccine, live" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-21" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-2-immunization-21" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-471696455153", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-2-encounter-22", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-22" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-807211261296", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-2-immunization-22", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "33", + "display": "pneumococcal polysaccharide vaccine, 23 valent" + } + ], + "text": "pneumococcal polysaccharide vaccine, 23 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-22" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-2-immunization-22" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-593136715370", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-2-encounter-23", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-23" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-124542429489", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-2-immunization-23", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-23" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-2-immunization-23" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-353283955946", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-2-encounter-24", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-24" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-834063154565", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-2-immunization-24", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-2-encounter-24" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-2-immunization-24" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-040278977645", + "resource": { + "resourceType": "Observation", + "id": "ImmunizationStatus-65-year-patient-2-observation-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Observation" + ] + }, + "status": "final", + "code": { + "coding": [ + { + "system": "http://loinc.org", + "code": "82810-3", + "display": "Pregnancy status" + } + ] + }, + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "effectiveDateTime": "2022-09-15", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://loinc.org", + "code": "LA15173-0", + "display": "Pregnant" + } + ], + "text": "Pregnant" + } + }, + "request": { + "method": "PUT", + "url": "Observation/ImmunizationStatus-65-year-patient-2-observation-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-069373743404", + "resource": { + "resourceType": "Observation", + "id": "ImmunizationStatus-65-year-patient-2-observation-2", + "status": "final", + "code": { + "coding": [ + { + "system": "http://loinc.org", + "code": "49051-6", + "display": "Gestational age in weeks" + } + ] + }, + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-2" + }, + "effectiveDateTime": "2022-09-15", + "valueQuantity": { + "value": 32, + "system": "http://unitsofmeasure.org", + "code": "wk" + } + }, + "request": { + "method": "PUT", + "url": "Observation/ImmunizationStatus-65-year-patient-2-observation-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-537645860378", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-65-year-patient-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "60" + } + ], + "name": [ + { + "family": "Denton", + "given": [ + "Brianna" + ] + } + ], + "birthDate": "1957-09-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-2" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-65-year-patient-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-448546162906", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-3-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "period": { + "start": "1957-11-15", + "end": "1957-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-070411721876", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-3-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-1" + }, + "occurrenceDateTime": "1957-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-3-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-677255597090", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-3-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "period": { + "start": "1957-11-15", + "end": "1957-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-113381216159", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-3-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-2" + }, + "occurrenceDateTime": "1957-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-3-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-082098942102", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-3-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "period": { + "start": "1957-11-15", + "end": "1957-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-403979285812", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-3-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-3" + }, + "occurrenceDateTime": "1957-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-3-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-350830154435", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-3-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "period": { + "start": "1958-01-15", + "end": "1958-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-733949184710", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-3-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-4" + }, + "occurrenceDateTime": "1958-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-3-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-636487575418", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-3-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "period": { + "start": "1958-01-15", + "end": "1958-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-134356553619", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-3-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-5" + }, + "occurrenceDateTime": "1958-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-3-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-668966086297", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-3-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "period": { + "start": "1958-01-15", + "end": "1958-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-796478199183", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-3-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-6" + }, + "occurrenceDateTime": "1958-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-3-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-837619484144", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-3-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "period": { + "start": "1958-03-15", + "end": "1958-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-884061297290", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-3-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-7" + }, + "occurrenceDateTime": "1958-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-3-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-254100638722", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-3-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "period": { + "start": "1958-09-15", + "end": "1958-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-747913975482", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-3-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-8" + }, + "occurrenceDateTime": "1958-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-3-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-943115216282", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-3-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "period": { + "start": "1958-09-15", + "end": "1958-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-510915407865", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-3-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-9" + }, + "occurrenceDateTime": "1958-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-3-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-879128949136", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-3-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "period": { + "start": "1958-09-15", + "end": "1958-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-214167721990", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-3-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-10" + }, + "occurrenceDateTime": "1958-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-3-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-657481935926", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-3-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "period": { + "start": "1958-12-15", + "end": "1958-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-659236073220", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-3-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-11" + }, + "occurrenceDateTime": "1958-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-3-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-692183032014", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-3-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "period": { + "start": "1959-03-15", + "end": "1959-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-325916008560", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-3-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-12" + }, + "occurrenceDateTime": "1959-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-3-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-387735820624", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-3-encounter-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "period": { + "start": "1961-09-15", + "end": "1961-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-990010692467", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-3-immunization-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "94", + "display": "measles, mumps, rubella, and varicella virus vaccine" + } + ], + "text": "measles, mumps, rubella, and varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-13" + }, + "occurrenceDateTime": "1961-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-3-immunization-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-186454254349", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-3-encounter-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "period": { + "start": "1961-09-15", + "end": "1961-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-324571784156", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-3-immunization-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-14" + }, + "occurrenceDateTime": "1961-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-3-immunization-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-701595396141", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-3-encounter-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "period": { + "start": "1969-09-15", + "end": "1969-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-620524573760", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-3-immunization-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "08", + "display": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + } + ], + "text": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-15" + }, + "occurrenceDateTime": "1969-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-3-immunization-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-149569020919", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-3-encounter-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "period": { + "start": "1969-09-15", + "end": "1969-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-419189379773", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-3-immunization-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "108", + "display": "meningococcal ACWY vaccine, unspecified formulation" + } + ], + "text": "meningococcal ACWY vaccine, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-16" + }, + "occurrenceDateTime": "1969-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-3-immunization-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-899261143117", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-3-encounter-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "period": { + "start": "1969-09-15", + "end": "1969-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-273278525997", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-3-immunization-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "137", + "display": "HPV, unspecified formulation" + } + ], + "text": "HPV, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-17" + }, + "occurrenceDateTime": "1969-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-3-immunization-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-029397572940", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-3-encounter-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "period": { + "start": "1971-09-15", + "end": "1971-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-623642114790", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-3-immunization-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-18" + }, + "occurrenceDateTime": "1971-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-3-immunization-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-134369696333", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-3-encounter-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "period": { + "start": "1981-09-15", + "end": "1981-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-458259959038", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-3-immunization-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-19" + }, + "occurrenceDateTime": "1981-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-3-immunization-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-991900066807", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-3-encounter-20", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "period": { + "start": "2021-09-15", + "end": "2021-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-20" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-091024611125", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-3-immunization-20", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "139", + "display": "Td(adult) unspecified formulation" + } + ], + "text": "Td(adult) unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-20" + }, + "occurrenceDateTime": "2021-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-3-immunization-20" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-581591103688", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-3-encounter-21", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-21" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-063656040815", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-3-immunization-21", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "121", + "display": "zoster vaccine, live" + } + ], + "text": "zoster vaccine, live" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-21" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-3-immunization-21" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-950768101672", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-3-encounter-22", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-22" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-735570346534", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-3-immunization-22", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-3-encounter-22" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-3-immunization-22" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-843073333750", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-65-year-patient-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "61" + } + ], + "name": [ + { + "family": "Barrenger", + "given": [ + "Flynn" + ] + } + ], + "birthDate": "1957-09-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-5" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-65-year-patient-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-260817671306", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-4-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "period": { + "start": "1957-11-15", + "end": "1957-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-783254895804", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-4-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-1" + }, + "occurrenceDateTime": "1957-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-4-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-522224606583", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-4-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "period": { + "start": "1957-11-15", + "end": "1957-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-790101473922", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-4-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-2" + }, + "occurrenceDateTime": "1957-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-4-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-728077654840", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-4-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "period": { + "start": "1957-11-15", + "end": "1957-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-605715035889", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-4-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-3" + }, + "occurrenceDateTime": "1957-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-4-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-123713106349", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-4-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "period": { + "start": "1958-01-15", + "end": "1958-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-365251575679", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-4-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-4" + }, + "occurrenceDateTime": "1958-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-4-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-358135356863", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-4-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "period": { + "start": "1958-01-15", + "end": "1958-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-788991560373", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-4-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-5" + }, + "occurrenceDateTime": "1958-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-4-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-905849718435", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-4-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "period": { + "start": "1958-01-15", + "end": "1958-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-901540110293", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-4-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-6" + }, + "occurrenceDateTime": "1958-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-4-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-217759685276", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-4-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "period": { + "start": "1958-03-15", + "end": "1958-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-992122310890", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-4-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-7" + }, + "occurrenceDateTime": "1958-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-4-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-054522434801", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-4-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "period": { + "start": "1958-09-15", + "end": "1958-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-827108502714", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-4-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-8" + }, + "occurrenceDateTime": "1958-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-4-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-236440576693", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-4-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "period": { + "start": "1958-09-15", + "end": "1958-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-672837324403", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-4-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-9" + }, + "occurrenceDateTime": "1958-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-4-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-541176541988", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-4-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "period": { + "start": "1958-09-15", + "end": "1958-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-133481060460", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-4-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-10" + }, + "occurrenceDateTime": "1958-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-4-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-768578139820", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-4-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "period": { + "start": "1958-12-15", + "end": "1958-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-350033466208", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-4-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-11" + }, + "occurrenceDateTime": "1958-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-4-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-623532407820", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-4-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "period": { + "start": "1959-03-15", + "end": "1959-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-055975860553", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-4-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-12" + }, + "occurrenceDateTime": "1959-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-4-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-299360802202", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-4-encounter-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "period": { + "start": "1961-09-15", + "end": "1961-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-393747753767", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-4-immunization-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "94", + "display": "measles, mumps, rubella, and varicella virus vaccine" + } + ], + "text": "measles, mumps, rubella, and varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-13" + }, + "occurrenceDateTime": "1961-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-4-immunization-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-503524785507", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-4-encounter-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "period": { + "start": "1961-09-15", + "end": "1961-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-470744362006", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-4-immunization-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-14" + }, + "occurrenceDateTime": "1961-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-4-immunization-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-057889040783", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-4-encounter-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "period": { + "start": "1969-09-15", + "end": "1969-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-987982546245", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-4-immunization-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "08", + "display": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + } + ], + "text": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-15" + }, + "occurrenceDateTime": "1969-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-4-immunization-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-815334325192", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-4-encounter-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "period": { + "start": "1969-09-15", + "end": "1969-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-564397140103", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-4-immunization-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "108", + "display": "meningococcal ACWY vaccine, unspecified formulation" + } + ], + "text": "meningococcal ACWY vaccine, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-16" + }, + "occurrenceDateTime": "1969-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-4-immunization-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-142484973604", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-4-encounter-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "period": { + "start": "1969-09-15", + "end": "1969-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-078332746910", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-4-immunization-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "137", + "display": "HPV, unspecified formulation" + } + ], + "text": "HPV, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-17" + }, + "occurrenceDateTime": "1969-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-4-immunization-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-954507954619", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-4-encounter-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "period": { + "start": "1971-09-15", + "end": "1971-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-644210591542", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-4-immunization-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-18" + }, + "occurrenceDateTime": "1971-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-4-immunization-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-179312022107", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-4-encounter-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "period": { + "start": "1981-09-15", + "end": "1981-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-256019187661", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-4-immunization-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-19" + }, + "occurrenceDateTime": "1981-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-4-immunization-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-840112789165", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-4-encounter-20", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "period": { + "start": "2021-09-15", + "end": "2021-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-20" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-734587852381", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-4-immunization-20", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "139", + "display": "Td(adult) unspecified formulation" + } + ], + "text": "Td(adult) unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-20" + }, + "occurrenceDateTime": "2021-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-4-immunization-20" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-246275183687", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-4-encounter-21", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-21" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-681162115622", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-65-year-patient-4-immunization-21", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-65-year-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-65-year-patient-4-encounter-21" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-65-year-patient-4-immunization-21" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-603233678677", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-65-year-patient-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "62" + } + ], + "name": [ + { + "family": "Docker", + "given": [ + "Hunter" + ] + } + ], + "birthDate": "1957-09-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-1" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-65-year-patient-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-899111659537", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-65-year-patient-5-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-65-year-patient-5" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-65-year-patient-5-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-620588772225", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-cut-off-age-group-patient-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "0" + } + ], + "name": [ + { + "family": "Dere", + "given": [ + "Ben" + ] + } + ], + "birthDate": "2022-08-10", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-1" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-cut-off-age-group-patient-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-665110742762", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-cut-off-age-group-patient-1-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-cut-off-age-group-patient-1" + }, + "period": { + "start": "2022-08-18", + "end": "2022-08-18" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-cut-off-age-group-patient-1-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-720425400399", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-cut-off-age-group-patient-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "1" + } + ], + "name": [ + { + "family": "Whyte", + "given": [ + "Diane" + ] + } + ], + "birthDate": "2022-09-01", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-cut-off-age-group-patient-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-822606980999", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-cut-off-age-group-patient-2-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-cut-off-age-group-patient-2" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-cut-off-age-group-patient-2-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-711086588484", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-cut-off-age-group-patient-2-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-cut-off-age-group-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-cut-off-age-group-patient-2-encounter-1" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-cut-off-age-group-patient-2-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-983744957397", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-cut-off-age-group-patient-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "2" + } + ], + "name": [ + { + "family": "Smith", + "given": [ + "Bethany" + ] + } + ], + "birthDate": "1810-02-01", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-cut-off-age-group-patient-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-370481670110", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-cut-off-age-group-patient-3-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-cut-off-age-group-patient-3" + }, + "period": { + "start": "1810-02-01", + "end": "1810-02-01" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-cut-off-age-group-patient-3-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-258821598445", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-grade-7-patient-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "38" + } + ], + "name": [ + { + "family": "Witman", + "given": [ + "Sheila" + ] + } + ], + "birthDate": "2010-09-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-grade-7-patient-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-790531429161", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-1-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "period": { + "start": "2010-11-15", + "end": "2010-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-063467676370", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-1-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-1" + }, + "occurrenceDateTime": "2010-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-1-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-725255214953", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-1-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "period": { + "start": "2010-11-15", + "end": "2010-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-361304371567", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-1-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-2" + }, + "occurrenceDateTime": "2010-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-1-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-471801507161", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-1-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "period": { + "start": "2010-11-15", + "end": "2010-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-276700712668", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-1-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-3" + }, + "occurrenceDateTime": "2010-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-1-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-565486625887", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-1-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "period": { + "start": "2011-01-15", + "end": "2011-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-712661118855", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-1-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-4" + }, + "occurrenceDateTime": "2011-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-1-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-849393880339", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-1-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "period": { + "start": "2011-01-15", + "end": "2011-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-887657505690", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-1-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-5" + }, + "occurrenceDateTime": "2011-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-1-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-062325388265", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-1-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "period": { + "start": "2011-01-15", + "end": "2011-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-156558581683", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-1-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-6" + }, + "occurrenceDateTime": "2011-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-1-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-886863825261", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-1-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "period": { + "start": "2011-03-15", + "end": "2011-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-805196345154", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-1-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-7" + }, + "occurrenceDateTime": "2011-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-1-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-046461232700", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-1-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "period": { + "start": "2011-09-15", + "end": "2011-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-907401878784", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-1-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-8" + }, + "occurrenceDateTime": "2011-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-1-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-681902294434", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-1-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "period": { + "start": "2011-09-15", + "end": "2011-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-341820216445", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-1-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-9" + }, + "occurrenceDateTime": "2011-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-1-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-601401044545", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-1-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "period": { + "start": "2011-09-15", + "end": "2011-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-749040077348", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-1-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-10" + }, + "occurrenceDateTime": "2011-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-1-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-832857710082", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-1-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "period": { + "start": "2011-12-15", + "end": "2011-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-536297924631", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-1-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-11" + }, + "occurrenceDateTime": "2011-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-1-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-173534348667", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-1-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "period": { + "start": "2012-03-15", + "end": "2012-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-043362445761", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-1-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-12" + }, + "occurrenceDateTime": "2012-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-1-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-493397999307", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-1-encounter-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "period": { + "start": "2014-09-15", + "end": "2014-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-458925322110", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-1-immunization-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "94", + "display": "measles, mumps, rubella, and varicella virus vaccine" + } + ], + "text": "measles, mumps, rubella, and varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-13" + }, + "occurrenceDateTime": "2014-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-1-immunization-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-603815336218", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-1-encounter-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "period": { + "start": "2014-09-15", + "end": "2014-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-843121528001", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-1-immunization-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-14" + }, + "occurrenceDateTime": "2014-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-1-immunization-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-092735838152", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-1-encounter-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-152271802571", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-1-immunization-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "08", + "display": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + } + ], + "text": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-15" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-1-immunization-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-823210099445", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-1-encounter-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-842973672271", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-1-immunization-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "108", + "display": "meningococcal ACWY vaccine, unspecified formulation" + } + ], + "text": "meningococcal ACWY vaccine, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-16" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-1-immunization-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-719574681009", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-1-encounter-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-279426369999", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-1-immunization-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "137", + "display": "HPV, unspecified formulation" + } + ], + "text": "HPV, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-17" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-1-immunization-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-213794793518", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-1-encounter-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-207440883720", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-1-immunization-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-1" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-1-encounter-18" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-1-immunization-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-258321140403", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-grade-7-patient-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "39" + } + ], + "name": [ + { + "family": "Buchanan", + "given": [ + "Mary" + ] + } + ], + "birthDate": "2010-09-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-7" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-grade-7-patient-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-605387520975", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-2-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "period": { + "start": "2010-11-15", + "end": "2010-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-968622687449", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-2-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-1" + }, + "occurrenceDateTime": "2010-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-2-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-388871902227", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-2-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "period": { + "start": "2010-11-15", + "end": "2010-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-521127571140", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-2-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-2" + }, + "occurrenceDateTime": "2010-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-2-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-666265999163", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-2-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "period": { + "start": "2010-11-15", + "end": "2010-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-175051667990", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-2-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-3" + }, + "occurrenceDateTime": "2010-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-2-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-735505803219", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-2-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "period": { + "start": "2011-01-15", + "end": "2011-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-473122486421", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-2-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-4" + }, + "occurrenceDateTime": "2011-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-2-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-483710158077", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-2-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "period": { + "start": "2011-01-15", + "end": "2011-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-579910883838", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-2-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-5" + }, + "occurrenceDateTime": "2011-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-2-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-746172379438", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-2-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "period": { + "start": "2011-01-15", + "end": "2011-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-760233343923", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-2-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-6" + }, + "occurrenceDateTime": "2011-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-2-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-715874550481", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-2-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "period": { + "start": "2011-03-15", + "end": "2011-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-585198629648", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-2-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-7" + }, + "occurrenceDateTime": "2011-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-2-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-665915513102", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-2-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "period": { + "start": "2011-09-15", + "end": "2011-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-088718776009", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-2-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-8" + }, + "occurrenceDateTime": "2011-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-2-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-585441438127", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-2-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "period": { + "start": "2011-09-15", + "end": "2011-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-052202796501", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-2-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-9" + }, + "occurrenceDateTime": "2011-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-2-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-559531912135", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-2-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "period": { + "start": "2011-09-15", + "end": "2011-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-778396117760", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-2-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-10" + }, + "occurrenceDateTime": "2011-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-2-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-729994116619", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-2-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "period": { + "start": "2011-12-15", + "end": "2011-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-719588635235", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-2-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-11" + }, + "occurrenceDateTime": "2011-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-2-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-137649299181", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-2-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "period": { + "start": "2012-03-15", + "end": "2012-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-692472466868", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-2-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-12" + }, + "occurrenceDateTime": "2012-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-2-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-593683540818", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-2-encounter-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "period": { + "start": "2014-09-15", + "end": "2014-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-422296311819", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-2-immunization-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "94", + "display": "measles, mumps, rubella, and varicella virus vaccine" + } + ], + "text": "measles, mumps, rubella, and varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-13" + }, + "occurrenceDateTime": "2014-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-2-immunization-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-261472818220", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-2-encounter-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "period": { + "start": "2014-09-15", + "end": "2014-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-861348529101", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-2-immunization-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-14" + }, + "occurrenceDateTime": "2014-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-2-immunization-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-093803641233", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-2-encounter-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-607556568389", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-2-immunization-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "08", + "display": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + } + ], + "text": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-15" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-2-immunization-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-749844663198", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-2-encounter-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-933971379998", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-2-immunization-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "108", + "display": "meningococcal ACWY vaccine, unspecified formulation" + } + ], + "text": "meningococcal ACWY vaccine, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-16" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-2-immunization-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-196924603407", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-2-encounter-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-781677761247", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-2-immunization-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "137", + "display": "HPV, unspecified formulation" + } + ], + "text": "HPV, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-17" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-2-immunization-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-650035134794", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-2-encounter-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-108203933165", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-2-immunization-18", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-18" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-2-immunization-18" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-554942903330", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-2-encounter-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-921466565172", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-2-immunization-19", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-2-encounter-19" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-2-immunization-19" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-849042686393", + "resource": { + "resourceType": "Observation", + "id": "ImmunizationStatus-grade-7-patient-2-observation-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Observation" + ] + }, + "status": "final", + "code": { + "coding": [ + { + "system": "http://loinc.org", + "code": "82810-3", + "display": "Pregnancy status" + } + ] + }, + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "effectiveDateTime": "2022-09-15", + "valueCodeableConcept": { + "coding": [ + { + "system": "http://loinc.org", + "code": "LA15173-0", + "display": "Pregnant" + } + ], + "text": "Pregnant" + } + }, + "request": { + "method": "PUT", + "url": "Observation/ImmunizationStatus-grade-7-patient-2-observation-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-043585461100", + "resource": { + "resourceType": "Observation", + "id": "ImmunizationStatus-grade-7-patient-2-observation-2", + "status": "final", + "code": { + "coding": [ + { + "system": "http://loinc.org", + "code": "49051-6", + "display": "Gestational age in weeks" + } + ] + }, + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-2" + }, + "effectiveDateTime": "2022-09-15", + "valueQuantity": { + "value": 30, + "system": "http://unitsofmeasure.org", + "code": "wk" + } + }, + "request": { + "method": "PUT", + "url": "Observation/ImmunizationStatus-grade-7-patient-2-observation-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-512348516091", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-grade-7-patient-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "40" + } + ], + "name": [ + { + "family": "McKinley", + "given": [ + "Koby" + ] + } + ], + "birthDate": "2010-09-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-1" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-grade-7-patient-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-922584530868", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-3-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "period": { + "start": "2010-11-15", + "end": "2010-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-947181603069", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-3-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-1" + }, + "occurrenceDateTime": "2010-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-3-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-572151088288", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-3-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "period": { + "start": "2010-11-15", + "end": "2010-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-782693742925", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-3-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-2" + }, + "occurrenceDateTime": "2010-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-3-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-486024197601", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-3-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "period": { + "start": "2010-11-15", + "end": "2010-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-257578694876", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-3-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-3" + }, + "occurrenceDateTime": "2010-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-3-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-408833548720", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-3-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "period": { + "start": "2011-01-15", + "end": "2011-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-980463981803", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-3-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-4" + }, + "occurrenceDateTime": "2011-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-3-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-243643503502", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-3-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "period": { + "start": "2011-01-15", + "end": "2011-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-9" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-969626590092", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-3-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-5" + }, + "occurrenceDateTime": "2011-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-3-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-271294165044", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-3-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "period": { + "start": "2011-01-15", + "end": "2011-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-564820721037", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-3-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-6" + }, + "occurrenceDateTime": "2011-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-3-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-808715622577", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-3-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "period": { + "start": "2011-03-15", + "end": "2011-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-348538037007", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-3-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-7" + }, + "occurrenceDateTime": "2011-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-3-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-254600391301", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-3-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "period": { + "start": "2011-09-15", + "end": "2011-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-289217990630", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-3-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-8" + }, + "occurrenceDateTime": "2011-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-3-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-800019107262", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-3-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "period": { + "start": "2011-09-15", + "end": "2011-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-114029313497", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-3-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-9" + }, + "occurrenceDateTime": "2011-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-3-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-346468921787", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-3-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "period": { + "start": "2011-09-15", + "end": "2011-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-056980204808", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-3-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-10" + }, + "occurrenceDateTime": "2011-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-3-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-286860429042", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-3-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "period": { + "start": "2011-12-15", + "end": "2011-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-458182247410", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-3-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-11" + }, + "occurrenceDateTime": "2011-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-3-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-247909838244", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-3-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "period": { + "start": "2012-03-15", + "end": "2012-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-865240603472", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-3-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-12" + }, + "occurrenceDateTime": "2012-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-3-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-324907077293", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-3-encounter-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "period": { + "start": "2014-09-15", + "end": "2014-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-349208042481", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-3-immunization-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "94", + "display": "measles, mumps, rubella, and varicella virus vaccine" + } + ], + "text": "measles, mumps, rubella, and varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-13" + }, + "occurrenceDateTime": "2014-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-3-immunization-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-407088445555", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-3-encounter-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "period": { + "start": "2014-09-15", + "end": "2014-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-485691173671", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-3-immunization-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-14" + }, + "occurrenceDateTime": "2014-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-3-immunization-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-325165967405", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-3-encounter-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-212410542886", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-3-immunization-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "08", + "display": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + } + ], + "text": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-15" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-3-immunization-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-957217663498", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-3-encounter-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-142304737976", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-3-immunization-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "108", + "display": "meningococcal ACWY vaccine, unspecified formulation" + } + ], + "text": "meningococcal ACWY vaccine, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-16" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-3-immunization-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-272576303192", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-3-encounter-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-839781174138", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-3-immunization-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-3" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-3-encounter-17" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-3-immunization-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-365942479624", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-grade-7-patient-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "41" + } + ], + "name": [ + { + "family": "Annois", + "given": [ + "Xavier" + ] + } + ], + "birthDate": "2010-09-15", + "gender": "male", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-1" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-grade-7-patient-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-302968195846", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-4-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "period": { + "start": "2010-11-15", + "end": "2010-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-909615047836", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-4-immunization-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-1" + }, + "occurrenceDateTime": "2010-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-4-immunization-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-297577800153", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-4-encounter-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "period": { + "start": "2010-11-15", + "end": "2010-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-755962958757", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-4-immunization-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-2" + }, + "occurrenceDateTime": "2010-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-4-immunization-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-224330981912", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-4-encounter-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "period": { + "start": "2010-11-15", + "end": "2010-11-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-345819297176", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-4-immunization-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-3" + }, + "occurrenceDateTime": "2010-11-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-4-immunization-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-118164781254", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-4-encounter-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "period": { + "start": "2011-01-15", + "end": "2011-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-014513841375", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-4-immunization-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-4" + }, + "occurrenceDateTime": "2011-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-4-immunization-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-974652930033", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-4-encounter-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "period": { + "start": "2011-01-15", + "end": "2011-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-031433483028", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-4-immunization-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-5" + }, + "occurrenceDateTime": "2011-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-4-immunization-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-603998402154", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-4-encounter-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "period": { + "start": "2011-01-15", + "end": "2011-01-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-420963271844", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-4-immunization-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + } + ], + "text": "rotavirus, live, pentavalent vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-6" + }, + "occurrenceDateTime": "2011-01-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-4-immunization-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-843356876860", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-4-encounter-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "period": { + "start": "2011-03-15", + "end": "2011-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-445399746379", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-4-immunization-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-7" + }, + "occurrenceDateTime": "2011-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-4-immunization-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-348391560035", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-4-encounter-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "period": { + "start": "2011-09-15", + "end": "2011-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-466077924310", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-4-immunization-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + } + ], + "text": "pneumococcal conjugate vaccine, 13 valent" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-8" + }, + "occurrenceDateTime": "2011-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-4-immunization-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-334857520968", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-4-encounter-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "period": { + "start": "2011-09-15", + "end": "2011-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-685172205452", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-4-immunization-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ], + "text": "meningococcal C conjugate vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-9" + }, + "occurrenceDateTime": "2011-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-4-immunization-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-936956582800", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-4-encounter-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "period": { + "start": "2011-09-15", + "end": "2011-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-373118805918", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-4-immunization-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ], + "text": "measles, mumps and rubella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-10" + }, + "occurrenceDateTime": "2011-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-4-immunization-10" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-977932711201", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-4-encounter-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "period": { + "start": "2011-12-15", + "end": "2011-12-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-964807383222", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-4-immunization-11", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "21", + "display": "varicella virus vaccine" + } + ], + "text": "varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-11" + }, + "occurrenceDateTime": "2011-12-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-4-immunization-11" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-104055835750", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-4-encounter-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "period": { + "start": "2012-03-15", + "end": "2012-03-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-047021831881", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-4-immunization-12", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + } + ], + "text": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-12" + }, + "occurrenceDateTime": "2012-03-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-4-immunization-12" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-050179084811", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-4-encounter-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "period": { + "start": "2014-09-15", + "end": "2014-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-677492312391", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-4-immunization-13", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "94", + "display": "measles, mumps, rubella, and varicella virus vaccine" + } + ], + "text": "measles, mumps, rubella, and varicella virus vaccine" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-13" + }, + "occurrenceDateTime": "2014-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-4-immunization-13" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-347159213612", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-4-encounter-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "period": { + "start": "2014-09-15", + "end": "2014-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-566580145158", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-4-immunization-14", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ], + "text": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-14" + }, + "occurrenceDateTime": "2014-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-4-immunization-14" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-468850935612", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-4-encounter-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-882295668571", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-4-immunization-15", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "08", + "display": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + } + ], + "text": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-15" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-4-immunization-15" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-321402770995", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-4-encounter-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-476642190306", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-4-immunization-16", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "137", + "display": "HPV, unspecified formulation" + } + ], + "text": "HPV, unspecified formulation" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-16" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-4-immunization-16" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-650269797133", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-4-encounter-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-433156849702", + "resource": { + "resourceType": "Immunization", + "id": "ImmunizationStatus-grade-7-patient-4-immunization-17", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Immunization" + ] + }, + "status": "completed", + "vaccineCode": { + "coding": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + } + ], + "text": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + "patient": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-4" + }, + "encounter": { + "reference": "Encounter/ImmunizationStatus-grade-7-patient-4-encounter-17" + }, + "occurrenceDateTime": "2022-09-15" + }, + "request": { + "method": "PUT", + "url": "Immunization/ImmunizationStatus-grade-7-patient-4-immunization-17" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-509142264574", + "resource": { + "resourceType": "Patient", + "id": "ImmunizationStatus-grade-7-patient-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Patient" + ] + }, + "identifier": [ + { + "use": "usual", + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "MR", + "display": "Medical Record Number" + } + ] + }, + "system": "http://hospital.smarthealthit.org", + "value": "42" + } + ], + "name": [ + { + "family": "Summerfield", + "given": [ + "Lily" + ] + } + ], + "birthDate": "2010-09-15", + "gender": "female", + "generalPractitioner": [ + { + "reference": "Practitioner/ImmunizationStatus-practitioner-8" + } + ] + }, + "request": { + "method": "PUT", + "url": "Patient/ImmunizationStatus-grade-7-patient-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-643533951946", + "resource": { + "resourceType": "Encounter", + "id": "ImmunizationStatus-grade-7-patient-5-encounter-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Encounter" + ] + }, + "status": "finished", + "class": { + "system": "http://terminology.hl7.org/CodeSystem/v3-ActCode", + "code": "AMB", + "display": "ambulatory" + }, + "type": [ + { + "coding": [ + { + "system": "http://www.ama-assn.org/go/cpt", + "version": "2.0.0", + "code": "99203", + "display": "Office or other outpatient visit for the evaluation and management of a new patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 30-44 minutes of total time is spent on the date of the encounter" + } + ] + } + ], + "subject": { + "reference": "Patient/ImmunizationStatus-grade-7-patient-5" + }, + "period": { + "start": "2022-09-15", + "end": "2022-09-15" + }, + "participant": [ + { + "type": [ + { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType", + "code": "PPRF" + } + ] + } + ], + "individual": { + "reference": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] + }, + "request": { + "method": "PUT", + "url": "Encounter/ImmunizationStatus-grade-7-patient-5-encounter-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-986623662723", + "resource": { + "resourceType": "Practitioner", + "id": "ImmunizationStatus-practitioner-1", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Practitioner" + ] + }, + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "NPI" + } + ] + }, + "system": "http://hl7.org/fhir/sid/us-npi", + "value": "1111111111" + } + ], + "name": [ + { + "family": "Test1", + "given": [ + "Test1" + ] + } + ] + }, + "request": { + "method": "PUT", + "url": "Practitioner/ImmunizationStatus-practitioner-1" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-764544737353", + "resource": { + "resourceType": "Practitioner", + "id": "ImmunizationStatus-practitioner-2", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Practitioner" + ] + }, + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "NPI" + } + ] + }, + "system": "http://hl7.org/fhir/sid/us-npi", + "value": "1111111111" + } + ], + "name": [ + { + "family": "Test2", + "given": [ + "Test2" + ] + } + ] + }, + "request": { + "method": "PUT", + "url": "Practitioner/ImmunizationStatus-practitioner-2" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-525360900691", + "resource": { + "resourceType": "Practitioner", + "id": "ImmunizationStatus-practitioner-3", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Practitioner" + ] + }, + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "NPI" + } + ] + }, + "system": "http://hl7.org/fhir/sid/us-npi", + "value": "1111111111" + } + ], + "name": [ + { + "family": "Test3", + "given": [ + "Test3" + ] + } + ] + }, + "request": { + "method": "PUT", + "url": "Practitioner/ImmunizationStatus-practitioner-3" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-244528297734", + "resource": { + "resourceType": "Practitioner", + "id": "ImmunizationStatus-practitioner-4", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Practitioner" + ] + }, + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "NPI" + } + ] + }, + "system": "http://hl7.org/fhir/sid/us-npi", + "value": "1111111111" + } + ], + "name": [ + { + "family": "Test4", + "given": [ + "Test4" + ] + } + ] + }, + "request": { + "method": "PUT", + "url": "Practitioner/ImmunizationStatus-practitioner-4" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-859606930469", + "resource": { + "resourceType": "Practitioner", + "id": "ImmunizationStatus-practitioner-5", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Practitioner" + ] + }, + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "NPI" + } + ] + }, + "system": "http://hl7.org/fhir/sid/us-npi", + "value": "1111111111" + } + ], + "name": [ + { + "family": "Test5", + "given": [ + "Test5" + ] + } + ] + }, + "request": { + "method": "PUT", + "url": "Practitioner/ImmunizationStatus-practitioner-5" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-107801624488", + "resource": { + "resourceType": "Practitioner", + "id": "ImmunizationStatus-practitioner-6", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Practitioner" + ] + }, + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "NPI" + } + ] + }, + "system": "http://hl7.org/fhir/sid/us-npi", + "value": "1111111111" + } + ], + "name": [ + { + "family": "Test6", + "given": [ + "Test6" + ] + } + ] + }, + "request": { + "method": "PUT", + "url": "Practitioner/ImmunizationStatus-practitioner-6" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-710504138592", + "resource": { + "resourceType": "Practitioner", + "id": "ImmunizationStatus-practitioner-7", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Practitioner" + ] + }, + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "NPI" + } + ] + }, + "system": "http://hl7.org/fhir/sid/us-npi", + "value": "1111111111" + } + ], + "name": [ + { + "family": "Test7", + "given": [ + "Test7" + ] + } + ] + }, + "request": { + "method": "PUT", + "url": "Practitioner/ImmunizationStatus-practitioner-7" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-699910156091", + "resource": { + "resourceType": "Practitioner", + "id": "ImmunizationStatus-practitioner-8", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Practitioner" + ] + }, + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "NPI" + } + ] + }, + "system": "http://hl7.org/fhir/sid/us-npi", + "value": "1111111111" + } + ], + "name": [ + { + "family": "Test8", + "given": [ + "Test8" + ] + } + ] + }, + "request": { + "method": "PUT", + "url": "Practitioner/ImmunizationStatus-practitioner-8" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-574779806322", + "resource": { + "resourceType": "Practitioner", + "id": "ImmunizationStatus-practitioner-9", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Practitioner" + ] + }, + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "NPI" + } + ] + }, + "system": "http://hl7.org/fhir/sid/us-npi", + "value": "1111111111" + } + ], + "name": [ + { + "family": "Test9", + "given": [ + "Test9" + ] + } + ] + }, + "request": { + "method": "PUT", + "url": "Practitioner/ImmunizationStatus-practitioner-9" + } + }, + { + "fullUrl": "urn:uuid:61ebe359-bfdc-4613-8bf2-086362266709", + "resource": { + "resourceType": "Practitioner", + "id": "ImmunizationStatus-practitioner-10", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/Practitioner" + ] + }, + "identifier": [ + { + "type": { + "coding": [ + { + "system": "http://terminology.hl7.org/CodeSystem/v2-0203", + "code": "NPI" + } + ] + }, + "system": "http://hl7.org/fhir/sid/us-npi", + "value": "1111111111" + } + ], + "name": [ + { + "family": "Test10", + "given": [ + "Test10" + ] + } + ] + }, + "request": { + "method": "PUT", + "url": "Practitioner/ImmunizationStatus-practitioner-10" + } + } + ] +} diff --git a/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/Terminology_ValueSets.json b/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/Terminology_ValueSets.json new file mode 100644 index 00000000000..bf593db8eb5 --- /dev/null +++ b/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/Terminology_ValueSets.json @@ -0,0 +1,612 @@ +{ + "resourceType": "Bundle", + "id": "valuesets-ImmunizationStatus-bundle", + "type": "transaction", + "entry": [ + { + "resource": { + "resourceType": "ValueSet", + "id": "2.16.840.1.113883.3.464.1003.196.11.1212", + "meta": { + "versionId": "27", + "lastUpdated": "2021-09-14T01:00:46.000-04:00" + }, + "url": "http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.3.464.1003.196.11.1212", + "version": "20210914", + "name": "DTaP Vaccine", + "status": "active", + "date": "2021-09-14T01:00:46-04:00", + "publisher": "NCQA PHEMUR", + "compose": { + "include": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "version": "20220615", + "concept": [ + { + "code": "106", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, 5 pertussis antigens" + }, + { + "code": "107", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, unspecified formulation" + }, + { + "code": "110", + "display": "DTaP-hepatitis B and poliovirus vaccine" + }, + { + "code": "120", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine, Haemophilus influenzae type b conjugate, and poliovirus vaccine, inactivated (DTaP-Hib-IPV)" + }, + { + "code": "146", + "display": "Diphtheria and Tetanus Toxoids and Acellular Pertussis Adsorbed, Inactivated Poliovirus, Haemophilus b Conjugate (Meningococcal Protein Conjugate), and Hepatitis B (Recombinant) Vaccine." + }, + { + "code": "20", + "display": "diphtheria, tetanus toxoids and acellular pertussis vaccine" + }, + { + "code": "50", + "display": "DTaP-Haemophilus influenzae type b conjugate vaccine" + } + ] + } + ] + } + }, + "request": { + "method": "PUT", + "url": "ValueSet/2.16.840.1.113883.3.464.1003.196.11.1212" + } + }, + { + "resource": { + "resourceType": "ValueSet", + "id": "valuesets-HB", + "url": "http://hl7.org/fhir/ValueSet/vaccine-HB", + "version": "4.0.1", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "compose": { + "include": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "concept": [ + { + "code": "08", + "display": "hepatitis B vaccine, pediatric or pediatric/adolescent dosage" + } + ] + } + ] + } + }, + "request": { + "method": "PUT", + "url": "ValueSet/valuesets-HB" + } + }, + { + "resource": { + "resourceType": "ValueSet", + "id": "valuesets-HPV-9", + "url": "http://hl7.org/fhir/ValueSet/vaccine-HPV-9", + "version": "4.0.1", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "compose": { + "include": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "concept": [ + { + "code": "137", + "display": "HPV, unspecified formulation" + } + ] + } + ] + } + }, + "request": { + "method": "PUT", + "url": "ValueSet/valuesets-HPV-9" + } + }, + { + "resource": { + "resourceType": "ValueSet", + "id": "valuesets-HZ", + "url": "http://hl7.org/fhir/ValueSet/vaccine-HZ", + "version": "4.0.1", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "compose": { + "include": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "concept": [ + { + "code": "121", + "display": "zoster vaccine, live" + } + ] + } + ] + } + }, + "request": { + "method": "PUT", + "url": "ValueSet/valuesets-HZ" + } + }, + { + "resource": { + "resourceType": "ValueSet", + "id": "valuesets-Inf", + "url": "http://hl7.org/fhir/ValueSet/vaccine-Inf", + "version": "4.0.1", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "compose": { + "include": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "concept": [ + { + "code": "135", + "display": "influenza, high dose seasonal, preservative-free" + }, + { + "code": "140", + "display": "Influenza, seasonal, injectable, preservative free" + }, + { + "code": "141", + "display": "Influenza, seasonal, injectable" + }, + { + "code": "144", + "display": "seasonal influenza, intradermal, preservative free" + }, + { + "code": "155", + "display": "Seasonal, trivalent, recombinant, injectable influenza vaccine, preservative free" + }, + { + "code": "168", + "display": "Seasonal trivalent influenza vaccine, adjuvanted, preservative free" + }, + { + "code": "185", + "display": "Seasonal, quadrivalent, recombinant, injectable influenza vaccine, preservative free" + }, + { + "code": "197", + "display": "influenza, high-dose seasonal, quadrivalent, .7mL dose, preservative free" + }, + { + "code": "205", + "display": "influenza, seasonal vaccine, quadrivalent, adjuvanted, .5mL dose, preservative free" + } + ] + } + ] + } + }, + "request": { + "method": "PUT", + "url": "ValueSet/valuesets-Inf" + } + }, + { + "resource": { + "resourceType": "ValueSet", + "id": "valuesets-Men-C-ACYW", + "url": "http://hl7.org/fhir/ValueSet/vaccine-Men-C-ACYW", + "version": "4.0.1", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "compose": { + "include": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "concept": [ + { + "code": "108", + "display": "meningococcal ACWY vaccine, unspecified formulation" + } + ] + } + ] + } + }, + "request": { + "method": "PUT", + "url": "ValueSet/valuesets-Men-C-ACYW" + } + }, + { + "resource": { + "resourceType": "ValueSet", + "id": "valuesets-Men-C-C", + "url": "http://hl7.org/fhir/ValueSet/vaccine-Men-C-C", + "version": "4.0.1", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "compose": { + "include": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "concept": [ + { + "code": "103", + "display": "meningococcal C conjugate vaccine" + } + ] + } + ] + } + }, + "request": { + "method": "PUT", + "url": "ValueSet/valuesets-Men-C-C" + } + }, + { + "resource": { + "resourceType": "ValueSet", + "id": "2.16.840.1.113883.3.464.1003.196.11.1235", + "meta": { + "versionId": "17", + "lastUpdated": "2021-02-02T15:59:43.000-05:00" + }, + "url": "http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.3.464.1003.196.11.1235", + "version": "20170504", + "name": "Measles, Mumps and Rubella (MMR) Vaccine", + "status": "active", + "date": "2017-05-04T01:00:13-04:00", + "publisher": "NCQA PHEMUR", + "compose": { + "include": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "version": "20220615", + "concept": [ + { + "code": "03", + "display": "measles, mumps and rubella virus vaccine" + } + ] + } + ] + } + }, + "request": { + "method": "PUT", + "url": "ValueSet/2.16.840.1.113883.3.464.1003.196.11.1235" + } + }, + { + "resource": { + "resourceType": "ValueSet", + "id": "valuesets-MMRV", + "url": "http://hl7.org/fhir/ValueSet/vaccine-MMRV", + "name": "measles, mumps, rubella, and varicella virus vaccine", + "status": "active", + "date": "2017-05-04T01:00:13-04:00", + "publisher": "NCQA PHEMUR", + "compose": { + "include": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "version": "20220615", + "concept": [ + { + "code": "94", + "display": "measles, mumps, rubella, and varicella virus vaccine" + } + ] + } + ] + } + }, + "request": { + "method": "PUT", + "url": "ValueSet/vaccine-MMRV" + } + }, + { + "resource": { + "resourceType": "ValueSet", + "id": "2.16.840.1.113883.3.464.1003.1158", + "meta": { + "versionId": "5", + "lastUpdated": "2022-02-02T01:02:05.000-05:00" + }, + "url": "http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.3.464.1003.1158", + "version": "20220202", + "name": "Adult Pneumococcal Vaccine", + "status": "active", + "date": "2022-02-02T01:02:05-05:00", + "publisher": "NCQA PHEMUR", + "compose": { + "include": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "version": "20220615", + "concept": [ + { + "code": "109", + "display": "pneumococcal vaccine, unspecified formulation" + }, + { + "code": "133", + "display": "pneumococcal conjugate vaccine, 13 valent" + }, + { + "code": "152", + "display": "Pneumococcal Conjugate, unspecified formulation" + }, + { + "code": "215", + "display": "Pneumococcal conjugate vaccine 15-valent (PCV15), polysaccharide CRM197 conjugate, adjuvant, preservative free" + }, + { + "code": "216", + "display": "Pneumococcal conjugate vaccine 20-valent (PCV20), polysaccharide CRM197 conjugate, adjuvant, preservative free" + } + ] + } + ] + } + }, + "request": { + "method": "PUT", + "url": "ValueSet/2.16.840.1.113883.3.464.1003.1158" + } + }, + { + "resource": { + "resourceType": "ValueSet", + "id": "valuesets-Pneu-P-23", + "url": "http://hl7.org/fhir/ValueSet/vaccine-Pneu-P-23", + "version": "4.0.1", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "compose": { + "include": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "concept": [ + { + "code": "33", + "display": "pneumococcal polysaccharide vaccine, 23 valent" + } + ] + } + ] + } + }, + "request": { + "method": "PUT", + "url": "ValueSet/valuesets-Pneu-P-23" + } + }, + { + "resource": { + "resourceType": "ValueSet", + "id": "valuesets-pregnancy-status", + "url": "http://hl7.org/fhir/ValueSet/valuesets-pregnancy-status", + "version": "4.0.1", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "compose": { + "include": [ + { + "system": "http://loinc.org", + "concept": [ + { + "code": "82810-3", + "display": "Pregnancy status" + } + ] + } + ] + } + }, + "request": { + "method": "PUT", + "url": "ValueSet/valuesets-pregnancy-status" + } + }, + { + "resource": { + "resourceType": "ValueSet", + "id": "2.16.840.1.113883.3.464.1003.196.11.1232", + "meta": { + "versionId": "21", + "lastUpdated": "2021-02-02T10:34:28.000-05:00" + }, + "url": "http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113883.3.464.1003.196.11.1232", + "version": "20180310", + "name": "Rotavirus Vaccine (3 dose schedule)", + "status": "active", + "date": "2018-03-10T01:00:08-05:00", + "publisher": "NCQA PHEMUR", + "compose": { + "include": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "version": "20220615", + "concept": [ + { + "code": "116", + "display": "rotavirus, live, pentavalent vaccine" + }, + { + "code": "122", + "display": "rotavirus vaccine, unspecified formulation" + } + ] + } + ] + } + }, + "request": { + "method": "PUT", + "url": "ValueSet/2.16.840.1.113883.3.464.1003.196.11.1232" + } + }, + { + "resource": { + "resourceType": "ValueSet", + "id": "valuesets-Tdap", + "url": "http://hl7.org/fhir/ValueSet/vaccine-Tdap", + "version": "4.0.1", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "compose": { + "include": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "concept": [ + { + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ] + } + ] + } + }, + "request": { + "method": "PUT", + "url": "ValueSet/valuesets-Tdap" + } + }, + { + "resource": { + "resourceType": "ValueSet", + "id": "valuesets-Tdap-IPV", + "url": "http://hl7.org/fhir/ValueSet/vaccine-Tdap-IPV", + "version": "4.0.1", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "compose": { + "include": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "concept": [ + { + "code": "115", + "display": "tetanus toxoid, reduced diphtheria toxoid, and acellular pertussis vaccine, adsorbed" + } + ] + } + ] + } + }, + "request": { + "method": "PUT", + "url": "ValueSet/valuesets-Tdap-IPV" + } + }, + { + "resource": { + "resourceType": "ValueSet", + "id": "valuesets-Td", + "url": "http://hl7.org/fhir/ValueSet/vaccine-Td", + "version": "4.0.1", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "compose": { + "include": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "concept": [ + { + "code": "139", + "display": "Td(adult) unspecified formulation" + } + ] + } + ] + } + }, + "request": { + "method": "PUT", + "url": "ValueSet/valuesets-Td" + } + }, + { + "resource": { + "resourceType": "ValueSet", + "id": "valuesets-vaccine-Var", + "url": "http://hl7.org/fhir/ValueSet/vaccine-Var", + "version": "4.0.1", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "compose": { + "include": [ + { + "system": "http://hl7.org/fhir/sid/cvx", + "concept": [ + { + "code": "21", + "display": "varicella virus vaccine" + } + ] + } + ] + } + }, + "request": { + "method": "PUT", + "url": "ValueSet/valuesets-vaccine-Var" + } + }, + { + "resource": { + "resourceType": "ValueSet", + "id": "valuesets-weeks-of-gestation", + "url": "http://hl7.org/fhir/ValueSet/valuesets-weeks-of-gestation", + "version": "4.0.1", + "status": "active", + "experimental": false, + "date": "2019-11-01T09:29:23+11:00", + "compose": { + "include": [ + { + "system": "http://loinc.org", + "concept": [ + { + "code": "49051-6", + "display": "Gestational age in weeks" + } + ] + } + ] + } + }, + "request": { + "method": "PUT", + "url": "ValueSet/valuesets-weeks-of-gestation" + } + } + ] +} diff --git a/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/cqls/1-Explicit-Vaccine-Codes-From-Any-System.cql b/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/cqls/1-Explicit-Vaccine-Codes-From-Any-System.cql deleted file mode 100644 index 66822ae6692..00000000000 --- a/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/cqls/1-Explicit-Vaccine-Codes-From-Any-System.cql +++ /dev/null @@ -1,22 +0,0 @@ -library Retrieve -using FHIR version '4.0.1' -include FHIRHelpers version '4.0.1' - -context Patient - -define "MMR Vaccinated": -[Immunization] Immu where -(Immu.vaccineCode.coding[0].code=('03')) or -(Immu.vaccineCode.coding[0].code=('94')) or -(Immu.vaccineCode.coding[0].code=('MMR')) or -(Immu.vaccineCode.coding[0].code=('MMRV')) or -(Immu.vaccineCode.coding[0].code=('MMRCSL')) - -define "InitialPopulation": - true - -define "Denominator": - true - -define "Numerator": - exists("MMR Vaccinated") diff --git a/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/cqls/2-Explicit-Vaccine-Codes-And-Systems.cql b/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/cqls/2-Explicit-Vaccine-Codes-And-Systems.cql deleted file mode 100644 index 1fed59b6ab0..00000000000 --- a/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/cqls/2-Explicit-Vaccine-Codes-And-Systems.cql +++ /dev/null @@ -1,32 +0,0 @@ -library Retrieve -using FHIR version '4.0.1' -include FHIRHelpers version '4.0.1' - -codesystem VaccineCVX: 'http://hl7.org/fhir/sid/cvx' -codesystem VaccineOID: 'urn:oid:1.2.36.1.2001.1005.17' - -context Patient - -define "MMR Vaccinated 03": -[Immunization: Code '03' from VaccineCVX] Immu where Immu.status in {'completed'} - -define "MMR Vaccinated 94": -[Immunization: Code '94' from VaccineCVX] Immu where Immu.status in {'completed'} - -define "MMR Vaccinated MMR": -[Immunization: Code 'MMR' from VaccineOID] Immu where Immu.status in {'completed'} - -define "MMR Vaccinated MMRCSL": -[Immunization: Code 'MMRCSL' from VaccineOID] Immu where Immu.status in {'completed'} - -define "InitialPopulation": - true - -define "Denominator": - true - -define "Numerator": - exists("MMR Vaccinated 03") or -exists("MMR Vaccinated 94") or -exists("MMR Vaccinated MMR") or -exists("MMR Vaccinated MMRCSL") diff --git a/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/cqls/3-Vaccine-Codes-Defined-By-ValueSet-MMR-Vaccine-Codes.cql b/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/cqls/3-Vaccine-Codes-Defined-By-ValueSet-MMR-Vaccine-Codes.cql deleted file mode 100644 index a9aa8d70f21..00000000000 --- a/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/cqls/3-Vaccine-Codes-Defined-By-ValueSet-MMR-Vaccine-Codes.cql +++ /dev/null @@ -1,20 +0,0 @@ -library Retrieve -using FHIR version '4.0.1' -include FHIRHelpers version '4.0.1' - -valueset "MMR Vaccinated": 'http://hl7.org/fhir/ValueSet/mmr-vaccine-codes' - -context Patient - -define "InitialPopulation": - [Patient] - -define "Denominator": - [Patient] - -define "Numerator": - "Qualifying Immunizations" - -define "Qualifying Immunizations": - [Immunization: "MMR Vaccinated"] ValidImmunization - where ValidImmunization.status = 'completed' diff --git a/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/cqls/4-Patients-ByAge.cql b/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/cqls/4-Patients-ByAge.cql deleted file mode 100644 index b7b3c44532e..00000000000 --- a/hapi-fhir-jpaserver-cql/src/test/resources/r4/immunization/cqls/4-Patients-ByAge.cql +++ /dev/null @@ -1,20 +0,0 @@ -library Retrieve -using FHIR version '4.0.1' -include FHIRHelpers version '4.0.1' - -valueset "MMRVaccinated": 'http://hl7.org/fhir/ValueSet/mmr-vaccine-codes' - -context Patient - -define "InitialPopulation": - [Patient] - -define "Denominator": - [Patient] myPatient where (myPatient.birthDate before (Today() - 1 year)) - -define "Numerator": - "QualifyingImmunizations" - -define "QualifyingImmunizations": - [Immunization: "MMRVaccinated"] myImmunization - where myImmunization.status = 'completed'