canvas 0.63.0__py3-none-any.whl → 0.89.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (185) hide show
  1. {canvas-0.63.0.dist-info → canvas-0.89.0.dist-info}/METADATA +4 -1
  2. {canvas-0.63.0.dist-info → canvas-0.89.0.dist-info}/RECORD +184 -98
  3. {canvas-0.63.0.dist-info → canvas-0.89.0.dist-info}/WHEEL +1 -1
  4. canvas_cli/apps/emit/event_fixtures/UNKNOWN.ndjson +1 -0
  5. canvas_cli/apps/logs/logs.py +386 -22
  6. canvas_cli/main.py +3 -1
  7. canvas_cli/templates/plugins/default/{{ cookiecutter.__project_slug }}/tests/test_models.py +46 -4
  8. canvas_cli/utils/context/context.py +13 -13
  9. canvas_cli/utils/validators/manifest_schema.py +26 -1
  10. canvas_generated/messages/effects_pb2.py +5 -5
  11. canvas_generated/messages/effects_pb2.pyi +108 -2
  12. canvas_generated/messages/events_pb2.py +6 -6
  13. canvas_generated/messages/events_pb2.pyi +282 -2
  14. canvas_sdk/clients/__init__.py +1 -0
  15. canvas_sdk/clients/llms/__init__.py +17 -0
  16. canvas_sdk/clients/llms/libraries/__init__.py +11 -0
  17. canvas_sdk/clients/llms/libraries/llm_anthropic.py +87 -0
  18. canvas_sdk/clients/llms/libraries/llm_api.py +143 -0
  19. canvas_sdk/clients/llms/libraries/llm_google.py +92 -0
  20. canvas_sdk/clients/llms/libraries/llm_openai.py +98 -0
  21. canvas_sdk/clients/llms/structures/__init__.py +9 -0
  22. canvas_sdk/clients/llms/structures/llm_response.py +33 -0
  23. canvas_sdk/clients/llms/structures/llm_tokens.py +53 -0
  24. canvas_sdk/clients/llms/structures/llm_turn.py +47 -0
  25. canvas_sdk/clients/llms/structures/settings/__init__.py +13 -0
  26. canvas_sdk/clients/llms/structures/settings/llm_settings.py +27 -0
  27. canvas_sdk/clients/llms/structures/settings/llm_settings_anthropic.py +43 -0
  28. canvas_sdk/clients/llms/structures/settings/llm_settings_gemini.py +40 -0
  29. canvas_sdk/clients/llms/structures/settings/llm_settings_gpt4.py +40 -0
  30. canvas_sdk/clients/llms/structures/settings/llm_settings_gpt5.py +48 -0
  31. canvas_sdk/clients/third_party.py +3 -0
  32. canvas_sdk/commands/__init__.py +12 -0
  33. canvas_sdk/commands/base.py +33 -2
  34. canvas_sdk/commands/commands/adjust_prescription.py +4 -0
  35. canvas_sdk/commands/commands/custom_command.py +86 -0
  36. canvas_sdk/commands/commands/family_history.py +17 -1
  37. canvas_sdk/commands/commands/immunization_statement.py +42 -2
  38. canvas_sdk/commands/commands/medication_statement.py +16 -1
  39. canvas_sdk/commands/commands/past_surgical_history.py +16 -1
  40. canvas_sdk/commands/commands/perform.py +18 -1
  41. canvas_sdk/commands/commands/prescribe.py +8 -9
  42. canvas_sdk/commands/commands/refill.py +5 -5
  43. canvas_sdk/commands/commands/resolve_condition.py +5 -5
  44. canvas_sdk/commands/commands/review/__init__.py +3 -0
  45. canvas_sdk/commands/commands/review/base.py +72 -0
  46. canvas_sdk/commands/commands/review/imaging.py +13 -0
  47. canvas_sdk/commands/commands/review/lab.py +13 -0
  48. canvas_sdk/commands/commands/review/referral.py +13 -0
  49. canvas_sdk/commands/commands/review/uncategorized_document.py +13 -0
  50. canvas_sdk/commands/validation.py +43 -0
  51. canvas_sdk/effects/batch_originate.py +22 -0
  52. canvas_sdk/effects/calendar/__init__.py +13 -3
  53. canvas_sdk/effects/calendar/{create_calendar.py → calendar.py} +19 -5
  54. canvas_sdk/effects/calendar/event.py +172 -0
  55. canvas_sdk/effects/claim_label.py +93 -0
  56. canvas_sdk/effects/claim_line_item.py +47 -0
  57. canvas_sdk/effects/claim_queue.py +49 -0
  58. canvas_sdk/effects/fax/__init__.py +3 -0
  59. canvas_sdk/effects/fax/base.py +77 -0
  60. canvas_sdk/effects/fax/note.py +42 -0
  61. canvas_sdk/effects/metadata.py +15 -1
  62. canvas_sdk/effects/note/__init__.py +8 -1
  63. canvas_sdk/effects/note/appointment.py +135 -7
  64. canvas_sdk/effects/note/base.py +17 -0
  65. canvas_sdk/effects/note/message.py +22 -14
  66. canvas_sdk/effects/note/note.py +150 -1
  67. canvas_sdk/effects/observation/__init__.py +11 -0
  68. canvas_sdk/effects/observation/base.py +206 -0
  69. canvas_sdk/effects/patient/__init__.py +2 -0
  70. canvas_sdk/effects/patient/base.py +8 -0
  71. canvas_sdk/effects/payment/__init__.py +11 -0
  72. canvas_sdk/effects/payment/base.py +355 -0
  73. canvas_sdk/effects/payment/post_claim_payment.py +49 -0
  74. canvas_sdk/effects/send_contact_verification.py +42 -0
  75. canvas_sdk/effects/task/__init__.py +2 -1
  76. canvas_sdk/effects/task/task.py +30 -0
  77. canvas_sdk/effects/validation/__init__.py +3 -0
  78. canvas_sdk/effects/validation/base.py +92 -0
  79. canvas_sdk/events/base.py +15 -0
  80. canvas_sdk/handlers/application.py +7 -7
  81. canvas_sdk/handlers/simple_api/api.py +1 -4
  82. canvas_sdk/handlers/simple_api/websocket.py +1 -4
  83. canvas_sdk/handlers/utils.py +14 -0
  84. canvas_sdk/questionnaires/utils.py +1 -0
  85. canvas_sdk/templates/utils.py +17 -4
  86. canvas_sdk/test_utils/factories/FACTORY_GUIDE.md +362 -0
  87. canvas_sdk/test_utils/factories/__init__.py +115 -0
  88. canvas_sdk/test_utils/factories/calendar.py +24 -0
  89. canvas_sdk/test_utils/factories/claim.py +81 -0
  90. canvas_sdk/test_utils/factories/claim_diagnosis_code.py +16 -0
  91. canvas_sdk/test_utils/factories/coverage.py +17 -0
  92. canvas_sdk/test_utils/factories/imaging.py +74 -0
  93. canvas_sdk/test_utils/factories/lab.py +192 -0
  94. canvas_sdk/test_utils/factories/medication_history.py +75 -0
  95. canvas_sdk/test_utils/factories/note.py +52 -0
  96. canvas_sdk/test_utils/factories/organization.py +50 -0
  97. canvas_sdk/test_utils/factories/practicelocation.py +88 -0
  98. canvas_sdk/test_utils/factories/referral.py +81 -0
  99. canvas_sdk/test_utils/factories/staff.py +111 -0
  100. canvas_sdk/test_utils/factories/task.py +66 -0
  101. canvas_sdk/test_utils/factories/uncategorized_clinical_document.py +48 -0
  102. canvas_sdk/utils/metrics.py +4 -1
  103. canvas_sdk/v1/data/__init__.py +66 -7
  104. canvas_sdk/v1/data/allergy_intolerance.py +5 -11
  105. canvas_sdk/v1/data/appointment.py +18 -4
  106. canvas_sdk/v1/data/assessment.py +2 -12
  107. canvas_sdk/v1/data/banner_alert.py +2 -4
  108. canvas_sdk/v1/data/base.py +53 -14
  109. canvas_sdk/v1/data/billing.py +8 -11
  110. canvas_sdk/v1/data/calendar.py +64 -0
  111. canvas_sdk/v1/data/care_team.py +4 -10
  112. canvas_sdk/v1/data/claim.py +172 -66
  113. canvas_sdk/v1/data/claim_diagnosis_code.py +19 -0
  114. canvas_sdk/v1/data/claim_line_item.py +2 -5
  115. canvas_sdk/v1/data/coding.py +19 -0
  116. canvas_sdk/v1/data/command.py +2 -4
  117. canvas_sdk/v1/data/common.py +10 -0
  118. canvas_sdk/v1/data/compound_medication.py +3 -4
  119. canvas_sdk/v1/data/condition.py +4 -9
  120. canvas_sdk/v1/data/coverage.py +66 -26
  121. canvas_sdk/v1/data/detected_issue.py +20 -20
  122. canvas_sdk/v1/data/device.py +2 -14
  123. canvas_sdk/v1/data/discount.py +2 -5
  124. canvas_sdk/v1/data/encounter.py +44 -0
  125. canvas_sdk/v1/data/facility.py +1 -0
  126. canvas_sdk/v1/data/goal.py +2 -14
  127. canvas_sdk/v1/data/imaging.py +4 -30
  128. canvas_sdk/v1/data/immunization.py +7 -15
  129. canvas_sdk/v1/data/lab.py +12 -65
  130. canvas_sdk/v1/data/line_item_transaction.py +2 -5
  131. canvas_sdk/v1/data/medication.py +3 -8
  132. canvas_sdk/v1/data/medication_history.py +142 -0
  133. canvas_sdk/v1/data/medication_statement.py +41 -0
  134. canvas_sdk/v1/data/message.py +4 -8
  135. canvas_sdk/v1/data/note.py +37 -38
  136. canvas_sdk/v1/data/observation.py +9 -36
  137. canvas_sdk/v1/data/organization.py +70 -9
  138. canvas_sdk/v1/data/patient.py +8 -12
  139. canvas_sdk/v1/data/patient_consent.py +4 -14
  140. canvas_sdk/v1/data/payment_collection.py +2 -5
  141. canvas_sdk/v1/data/posting.py +3 -9
  142. canvas_sdk/v1/data/practicelocation.py +66 -7
  143. canvas_sdk/v1/data/protocol_override.py +3 -4
  144. canvas_sdk/v1/data/protocol_result.py +3 -3
  145. canvas_sdk/v1/data/questionnaire.py +10 -26
  146. canvas_sdk/v1/data/reason_for_visit.py +2 -6
  147. canvas_sdk/v1/data/referral.py +41 -17
  148. canvas_sdk/v1/data/staff.py +34 -26
  149. canvas_sdk/v1/data/stop_medication_event.py +27 -0
  150. canvas_sdk/v1/data/task.py +30 -11
  151. canvas_sdk/v1/data/team.py +2 -4
  152. canvas_sdk/v1/data/uncategorized_clinical_document.py +84 -0
  153. canvas_sdk/v1/data/user.py +14 -0
  154. canvas_sdk/v1/data/utils.py +5 -0
  155. canvas_sdk/value_set/v2026/__init__.py +1 -0
  156. canvas_sdk/value_set/v2026/adverse_event.py +157 -0
  157. canvas_sdk/value_set/v2026/allergy.py +116 -0
  158. canvas_sdk/value_set/v2026/assessment.py +466 -0
  159. canvas_sdk/value_set/v2026/communication.py +496 -0
  160. canvas_sdk/value_set/v2026/condition.py +52934 -0
  161. canvas_sdk/value_set/v2026/device.py +315 -0
  162. canvas_sdk/value_set/v2026/diagnostic_study.py +5243 -0
  163. canvas_sdk/value_set/v2026/encounter.py +2714 -0
  164. canvas_sdk/value_set/v2026/immunization.py +297 -0
  165. canvas_sdk/value_set/v2026/individual_characteristic.py +339 -0
  166. canvas_sdk/value_set/v2026/intervention.py +1703 -0
  167. canvas_sdk/value_set/v2026/laboratory_test.py +1831 -0
  168. canvas_sdk/value_set/v2026/medication.py +8218 -0
  169. canvas_sdk/value_set/v2026/no_qdm_category_assigned.py +26493 -0
  170. canvas_sdk/value_set/v2026/physical_exam.py +342 -0
  171. canvas_sdk/value_set/v2026/procedure.py +27869 -0
  172. canvas_sdk/value_set/v2026/symptom.py +625 -0
  173. logger/logger.py +30 -31
  174. logger/logstash.py +282 -0
  175. logger/pubsub.py +26 -0
  176. plugin_runner/allowed-module-imports.json +940 -9
  177. plugin_runner/generate_allowed_imports.py +1 -0
  178. plugin_runner/installation.py +2 -2
  179. plugin_runner/plugin_runner.py +21 -24
  180. plugin_runner/sandbox.py +34 -0
  181. protobufs/canvas_generated/messages/effects.proto +65 -0
  182. protobufs/canvas_generated/messages/events.proto +150 -51
  183. settings.py +27 -11
  184. canvas_sdk/effects/calendar/create_event.py +0 -43
  185. {canvas-0.63.0.dist-info → canvas-0.89.0.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,625 @@
1
+ from ..value_set import ValueSet
2
+
3
+
4
+ class FrailtySymptom(ValueSet):
5
+ """
6
+ **Clinical Focus:** The purpose of this value set is to represent concepts for symptoms of frailty.
7
+
8
+ **Data Element Scope:** This value set may use a model element related to Symptom.
9
+
10
+ **Inclusion Criteria:** Includes concepts that identify a symptom of frailty.
11
+
12
+ **Exclusion Criteria:** No exclusions.
13
+ """
14
+
15
+ VALUE_SET_NAME = "Frailty Symptom"
16
+ OID = "2.16.840.1.113883.3.464.1003.113.12.1075"
17
+ DEFINITION_VERSION = "20230217"
18
+ EXPANSION_VERSION = "eCQM Update 2025-05-08"
19
+
20
+ ICD10CM = {
21
+ "R262", # Difficulty in walking, not elsewhere classified
22
+ "R2689", # Other abnormalities of gait and mobility
23
+ "R269", # Unspecified abnormalities of gait and mobility
24
+ "R531", # Weakness
25
+ "R5381", # Other malaise
26
+ "R54", # Age-related physical debility
27
+ "R627", # Adult failure to thrive
28
+ "R634", # Abnormal weight loss
29
+ "R636", # Underweight
30
+ "R64", # Cachexia
31
+ "R262", # Difficulty in walking, not elsewhere classified
32
+ "R2689", # Other abnormalities of gait and mobility
33
+ "R269", # Unspecified abnormalities of gait and mobility
34
+ "R531", # Weakness
35
+ "R5381", # Other malaise
36
+ "R54", # Age-related physical debility
37
+ "R627", # Adult failure to thrive
38
+ "R634", # Abnormal weight loss
39
+ "R636", # Underweight
40
+ "R64", # Cachexia
41
+ "R262", # Difficulty in walking, not elsewhere classified
42
+ "R2689", # Other abnormalities of gait and mobility
43
+ "R269", # Unspecified abnormalities of gait and mobility
44
+ "R531", # Weakness
45
+ "R5381", # Other malaise
46
+ "R54", # Age-related physical debility
47
+ "R627", # Adult failure to thrive
48
+ "R634", # Abnormal weight loss
49
+ "R636", # Underweight
50
+ "R64", # Cachexia
51
+ "R262", # Difficulty in walking, not elsewhere classified
52
+ "R2689", # Other abnormalities of gait and mobility
53
+ "R269", # Unspecified abnormalities of gait and mobility
54
+ "R531", # Weakness
55
+ "R5381", # Other malaise
56
+ "R54", # Age-related physical debility
57
+ "R627", # Adult failure to thrive
58
+ "R634", # Abnormal weight loss
59
+ "R636", # Underweight
60
+ "R64", # Cachexia
61
+ "R262", # Difficulty in walking, not elsewhere classified
62
+ "R2689", # Other abnormalities of gait and mobility
63
+ "R269", # Unspecified abnormalities of gait and mobility
64
+ "R531", # Weakness
65
+ "R5381", # Other malaise
66
+ "R54", # Age-related physical debility
67
+ "R627", # Adult failure to thrive
68
+ "R634", # Abnormal weight loss
69
+ "R636", # Underweight
70
+ "R64", # Cachexia
71
+ }
72
+
73
+
74
+ SNOMEDCT = {
75
+ "102492002", # Failure to maintain weight (finding)
76
+ "102568007", # Paresis of lower extremity (finding)
77
+ "105501005", # Dependence on enabling machine or device (finding)
78
+ "105503008", # Dependence on wheelchair (finding)
79
+ "105504002", # Dependence on walking stick (finding)
80
+ "126013009", # Subjective muscle weakness (finding)
81
+ "127378008", # Bilateral paresis (finding)
82
+ "13791008", # Asthenia (finding)
83
+ "152921000119101", # Dependence on respiratory device (finding)
84
+ "15634971000119107", # Weakness of bilateral upper limbs (finding)
85
+ "16018391000119104", # Paresis of left lower limb (finding)
86
+ "16018431000119109", # Paresis of right lower limb (finding)
87
+ "160681005", # Mobile outside with aid (finding)
88
+ "160683008", # Needs walking aid in home (finding)
89
+ "160684002", # Confined to chair (finding)
90
+ "160685001", # Bed-ridden (finding)
91
+ "160692006", # Mobility very poor (finding)
92
+ "160693001", # Mobility poor (finding)
93
+ "160734000", # Lives in nursing home (finding)
94
+ "160737007", # Lives in an old peoples home (finding)
95
+ "161832001", # Weight decreasing (finding)
96
+ "161873000", # Heavy legs (finding)
97
+ "161874006", # Heavy feeling (finding)
98
+ "162236007", # Weakness present (finding)
99
+ "162239000", # Abdominal weakness (finding)
100
+ "16419651000119103", # Dependence on biphasic positive airway pressure ventilation due to central sleep apnea syndrome (finding)
101
+ "165243005", # Independent in wheelchair (finding)
102
+ "165244004", # Minimal help in wheelchair (finding)
103
+ "18726006", # Senile asthenia (finding)
104
+ "20940004", # Spinal hemiparesis (finding)
105
+ "22090007", # Scissoring gait (finding)
106
+ "22325002", # Abnormal gait (finding)
107
+ "224960004", # Tired (finding)
108
+ "22631008", # Unsteady when walking (finding)
109
+ "23042008", # Spinal paraparesis (finding)
110
+ "238108007", # Cachexia (finding)
111
+ "248269005", # Tired on least exertion (finding)
112
+ "248278004", # Attacks of weakness (finding)
113
+ "248279007", # Frailty (finding)
114
+ "249888000", # Weakness of sternomastoid (finding)
115
+ "249937002", # Truncal muscle weakness (finding)
116
+ "249938007", # Weakness of back (finding)
117
+ "249939004", # Proximal muscle weakness (finding)
118
+ "249940002", # Shoulder girdle weakness (finding)
119
+ "249941003", # Pelvic girdle weakness (finding)
120
+ "249942005", # Distal muscle weakness (finding)
121
+ "249943000", # Weakness of distal arms and legs (finding)
122
+ "249946008", # Pyramidal type muscle weakness (finding)
123
+ "250003005", # Low level sensorimotor gait disorder (finding)
124
+ "250015009", # Arthritic gait (finding)
125
+ "250034009", # Middle level sensorimotor gait disorder (finding)
126
+ "250038007", # Retropulsion when walking (finding)
127
+ "250043000", # High level sensorimotor gait disorder (finding)
128
+ "250044006", # Cautious gait (finding)
129
+ "250045007", # Tottering gait (finding)
130
+ "250052009", # Petren's gait (finding)
131
+ "250054005", # Frontal gait disorder (finding)
132
+ "250991000119100", # Stumbling gait (finding)
133
+ "262285001", # Weight decreased (finding)
134
+ "26544005", # Muscle weakness (finding)
135
+ "267024001", # Abnormal weight loss (finding)
136
+ "267032009", # Tired all the time (finding)
137
+ "271795006", # Malaise and fatigue (finding)
138
+ "275313006", # Dragging leg (finding)
139
+ "284529003", # Cardiac cachexia (finding)
140
+ "298283006", # Hand muscle weakness (finding)
141
+ "300948004", # Quadriceps weakness (finding)
142
+ "309249007", # Calf muscle weakness (finding)
143
+ "309257005", # Excessive weight loss (finding)
144
+ "312444006", # Spastic paraparesis (finding)
145
+ "367391008", # Malaise (finding)
146
+ "371028005", # Spastic paresis (finding)
147
+ "373931001", # Sensation of heaviness in limbs (finding)
148
+ "397776000", # Festinating gait (finding)
149
+ "404904002", # Frail elderly (finding)
150
+ "413121008", # Dependent on helper pushing wheelchair (finding)
151
+ "41786007", # Neurological muscle weakness (finding)
152
+ "422868009", # Unexplained weight loss (finding)
153
+ "426977000", # Recent weight loss (finding)
154
+ "428116008", # Multifactorial gait problem (finding)
155
+ "428264009", # Painful gait (finding)
156
+ "429091008", # Dependence on biphasic positive airway pressure ventilation (finding)
157
+ "429487005", # Dependence on continuous positive airway pressure ventilation (finding)
158
+ "43005009", # Shuffling gait (finding)
159
+ "431524008", # Abnormal gait due to impairment of balance (finding)
160
+ "432559006", # Abnormal gait due to muscle weakness (finding)
161
+ "444932008", # Dependence on ventilator (finding)
162
+ "4468000", # Oppenheim's gait (finding)
163
+ "448765001", # Unintentional weight loss (finding)
164
+ "50314001", # Partial bilateral paresis (finding)
165
+ "60631000119109", # Dependence on home ventilator (finding)
166
+ "60651000119103", # Dependence on continuous supplemental oxygen (finding)
167
+ "67141003", # Antalgic gait (finding)
168
+ "69161000119103", # Functional gait abnormality (finding)
169
+ "713512009", # Muscle weakness of upper limb (finding)
170
+ "713514005", # Muscle weakness of limb (finding)
171
+ "713568000", # Occasionally tired (finding)
172
+ "713655003", # Dependence on non-invasive ventilation (finding)
173
+ "78119002", # Complete bilateral paresis (finding)
174
+ "78691002", # Staggering gait (finding)
175
+ "788876001", # Cachexia due to malignant neoplastic disease (finding)
176
+ "788900007", # Dependence on artificial heart (finding)
177
+ "79021000119104", # Dependence on aspirator (finding)
178
+ "79031000119101", # Dependence on respirator (finding)
179
+ "8510008", # Reduced mobility (finding)
180
+ "85711000119103", # Stumbling due to lack of coordination (finding)
181
+ "89201000119106", # Dependence on supplemental oxygen when ambulating (finding)
182
+ "89362005", # Weight loss (finding)
183
+ "931000119107", # Dependence on supplemental oxygen (finding)
184
+ "102492002", # Failure to maintain weight (finding)
185
+ "102568007", # Paresis of lower extremity (finding)
186
+ "105501005", # Dependence on enabling machine or device (finding)
187
+ "105503008", # Dependence on wheelchair (finding)
188
+ "105504002", # Dependence on walking stick (finding)
189
+ "126013009", # Subjective muscle weakness (finding)
190
+ "127378008", # Bilateral paresis (finding)
191
+ "13791008", # Asthenia (finding)
192
+ "152921000119101", # Dependence on respiratory device (finding)
193
+ "15634971000119107", # Weakness of bilateral upper limbs (finding)
194
+ "16018391000119104", # Paresis of left lower limb (finding)
195
+ "16018431000119109", # Paresis of right lower limb (finding)
196
+ "160681005", # Mobile outside with aid (finding)
197
+ "160683008", # Needs walking aid in home (finding)
198
+ "160684002", # Confined to chair (finding)
199
+ "160685001", # Bed-ridden (finding)
200
+ "160692006", # Mobility very poor (finding)
201
+ "160693001", # Mobility poor (finding)
202
+ "160734000", # Lives in nursing home (finding)
203
+ "160737007", # Lives in an old peoples home (finding)
204
+ "161832001", # Weight decreasing (finding)
205
+ "161873000", # Heavy legs (finding)
206
+ "161874006", # Heavy feeling (finding)
207
+ "162236007", # Weakness present (finding)
208
+ "162239000", # Abdominal weakness (finding)
209
+ "16419651000119103", # Dependence on biphasic positive airway pressure ventilation due to central sleep apnea syndrome (finding)
210
+ "165243005", # Independent in wheelchair (finding)
211
+ "165244004", # Minimal help in wheelchair (finding)
212
+ "18726006", # Senile asthenia (finding)
213
+ "20940004", # Spinal hemiparesis (finding)
214
+ "22090007", # Scissoring gait (finding)
215
+ "22325002", # Abnormal gait (finding)
216
+ "224960004", # Tired (finding)
217
+ "22631008", # Unsteady when walking (finding)
218
+ "23042008", # Spinal paraparesis (finding)
219
+ "238108007", # Cachexia (finding)
220
+ "248269005", # Tired on least exertion (finding)
221
+ "248278004", # Attacks of weakness (finding)
222
+ "248279007", # Frailty (finding)
223
+ "249888000", # Weakness of sternomastoid (finding)
224
+ "249937002", # Truncal muscle weakness (finding)
225
+ "249938007", # Weakness of back (finding)
226
+ "249939004", # Proximal muscle weakness (finding)
227
+ "249940002", # Shoulder girdle weakness (finding)
228
+ "249941003", # Pelvic girdle weakness (finding)
229
+ "249942005", # Distal muscle weakness (finding)
230
+ "249943000", # Weakness of distal arms and legs (finding)
231
+ "249946008", # Pyramidal type muscle weakness (finding)
232
+ "250003005", # Low level sensorimotor gait disorder (finding)
233
+ "250015009", # Arthritic gait (finding)
234
+ "250034009", # Middle level sensorimotor gait disorder (finding)
235
+ "250038007", # Retropulsion when walking (finding)
236
+ "250043000", # High level sensorimotor gait disorder (finding)
237
+ "250044006", # Cautious gait (finding)
238
+ "250045007", # Tottering gait (finding)
239
+ "250052009", # Petren's gait (finding)
240
+ "250054005", # Frontal gait disorder (finding)
241
+ "250991000119100", # Stumbling gait (finding)
242
+ "262285001", # Weight decreased (finding)
243
+ "26544005", # Muscle weakness (finding)
244
+ "267024001", # Abnormal weight loss (finding)
245
+ "267032009", # Tired all the time (finding)
246
+ "271795006", # Malaise and fatigue (finding)
247
+ "275313006", # Dragging leg (finding)
248
+ "284529003", # Cardiac cachexia (finding)
249
+ "298283006", # Hand muscle weakness (finding)
250
+ "300948004", # Quadriceps weakness (finding)
251
+ "309249007", # Calf muscle weakness (finding)
252
+ "309257005", # Excessive weight loss (finding)
253
+ "312444006", # Spastic paraparesis (finding)
254
+ "367391008", # Malaise (finding)
255
+ "371028005", # Spastic paresis (finding)
256
+ "373931001", # Sensation of heaviness in limbs (finding)
257
+ "397776000", # Festinating gait (finding)
258
+ "404904002", # Frail elderly (finding)
259
+ "413121008", # Dependent on helper pushing wheelchair (finding)
260
+ "41786007", # Neurological muscle weakness (finding)
261
+ "422868009", # Unexplained weight loss (finding)
262
+ "426977000", # Recent weight loss (finding)
263
+ "428116008", # Multifactorial gait problem (finding)
264
+ "428264009", # Painful gait (finding)
265
+ "429091008", # Dependence on biphasic positive airway pressure ventilation (finding)
266
+ "429487005", # Dependence on continuous positive airway pressure ventilation (finding)
267
+ "43005009", # Shuffling gait (finding)
268
+ "431524008", # Abnormal gait due to impairment of balance (finding)
269
+ "432559006", # Abnormal gait due to muscle weakness (finding)
270
+ "444932008", # Dependence on ventilator (finding)
271
+ "4468000", # Oppenheim's gait (finding)
272
+ "448765001", # Unintentional weight loss (finding)
273
+ "50314001", # Partial bilateral paresis (finding)
274
+ "60631000119109", # Dependence on home ventilator (finding)
275
+ "60651000119103", # Dependence on continuous supplemental oxygen (finding)
276
+ "67141003", # Antalgic gait (finding)
277
+ "69161000119103", # Functional gait abnormality (finding)
278
+ "713512009", # Muscle weakness of upper limb (finding)
279
+ "713514005", # Muscle weakness of limb (finding)
280
+ "713568000", # Occasionally tired (finding)
281
+ "713655003", # Dependence on non-invasive ventilation (finding)
282
+ "78119002", # Complete bilateral paresis (finding)
283
+ "78691002", # Staggering gait (finding)
284
+ "788876001", # Cachexia due to malignant neoplastic disease (finding)
285
+ "788900007", # Dependence on artificial heart (finding)
286
+ "79021000119104", # Dependence on aspirator (finding)
287
+ "79031000119101", # Dependence on respirator (finding)
288
+ "8510008", # Reduced mobility (finding)
289
+ "85711000119103", # Stumbling due to lack of coordination (finding)
290
+ "89201000119106", # Dependence on supplemental oxygen when ambulating (finding)
291
+ "89362005", # Weight loss (finding)
292
+ "931000119107", # Dependence on supplemental oxygen (finding)
293
+ "102492002", # Failure to maintain weight (finding)
294
+ "102568007", # Paresis of lower extremity (finding)
295
+ "105501005", # Dependence on enabling machine or device (finding)
296
+ "105503008", # Dependence on wheelchair (finding)
297
+ "105504002", # Dependence on walking stick (finding)
298
+ "126013009", # Subjective muscle weakness (finding)
299
+ "127378008", # Bilateral paresis (finding)
300
+ "13791008", # Asthenia (finding)
301
+ "152921000119101", # Dependence on respiratory device (finding)
302
+ "15634971000119107", # Weakness of bilateral upper limbs (finding)
303
+ "16018391000119104", # Paresis of left lower limb (finding)
304
+ "16018431000119109", # Paresis of right lower limb (finding)
305
+ "160681005", # Mobile outside with aid (finding)
306
+ "160683008", # Needs walking aid in home (finding)
307
+ "160684002", # Confined to chair (finding)
308
+ "160685001", # Bed-ridden (finding)
309
+ "160692006", # Mobility very poor (finding)
310
+ "160693001", # Mobility poor (finding)
311
+ "160734000", # Lives in nursing home (finding)
312
+ "160737007", # Lives in an old peoples home (finding)
313
+ "161832001", # Weight decreasing (finding)
314
+ "161873000", # Heavy legs (finding)
315
+ "161874006", # Heavy feeling (finding)
316
+ "162236007", # Weakness present (finding)
317
+ "162239000", # Abdominal weakness (finding)
318
+ "16419651000119103", # Dependence on biphasic positive airway pressure ventilation due to central sleep apnea syndrome (finding)
319
+ "165243005", # Independent in wheelchair (finding)
320
+ "165244004", # Minimal help in wheelchair (finding)
321
+ "18726006", # Senile asthenia (finding)
322
+ "20940004", # Spinal hemiparesis (finding)
323
+ "22090007", # Scissoring gait (finding)
324
+ "22325002", # Abnormal gait (finding)
325
+ "224960004", # Tired (finding)
326
+ "22631008", # Unsteady when walking (finding)
327
+ "23042008", # Spinal paraparesis (finding)
328
+ "238108007", # Cachexia (finding)
329
+ "248269005", # Tired on least exertion (finding)
330
+ "248278004", # Attacks of weakness (finding)
331
+ "248279007", # Frailty (finding)
332
+ "249888000", # Weakness of sternomastoid (finding)
333
+ "249937002", # Truncal muscle weakness (finding)
334
+ "249938007", # Weakness of back (finding)
335
+ "249939004", # Proximal muscle weakness (finding)
336
+ "249940002", # Shoulder girdle weakness (finding)
337
+ "249941003", # Pelvic girdle weakness (finding)
338
+ "249942005", # Distal muscle weakness (finding)
339
+ "249943000", # Weakness of distal arms and legs (finding)
340
+ "249946008", # Pyramidal type muscle weakness (finding)
341
+ "250003005", # Low level sensorimotor gait disorder (finding)
342
+ "250015009", # Arthritic gait (finding)
343
+ "250034009", # Middle level sensorimotor gait disorder (finding)
344
+ "250038007", # Retropulsion when walking (finding)
345
+ "250043000", # High level sensorimotor gait disorder (finding)
346
+ "250044006", # Cautious gait (finding)
347
+ "250045007", # Tottering gait (finding)
348
+ "250052009", # Petren's gait (finding)
349
+ "250054005", # Frontal gait disorder (finding)
350
+ "250991000119100", # Stumbling gait (finding)
351
+ "262285001", # Weight decreased (finding)
352
+ "26544005", # Muscle weakness (finding)
353
+ "267024001", # Abnormal weight loss (finding)
354
+ "267032009", # Tired all the time (finding)
355
+ "271795006", # Malaise and fatigue (finding)
356
+ "275313006", # Dragging leg (finding)
357
+ "284529003", # Cardiac cachexia (finding)
358
+ "298283006", # Hand muscle weakness (finding)
359
+ "300948004", # Quadriceps weakness (finding)
360
+ "309249007", # Calf muscle weakness (finding)
361
+ "309257005", # Excessive weight loss (finding)
362
+ "312444006", # Spastic paraparesis (finding)
363
+ "367391008", # Malaise (finding)
364
+ "371028005", # Spastic paresis (finding)
365
+ "373931001", # Sensation of heaviness in limbs (finding)
366
+ "397776000", # Festinating gait (finding)
367
+ "404904002", # Frail elderly (finding)
368
+ "413121008", # Dependent on helper pushing wheelchair (finding)
369
+ "41786007", # Neurological muscle weakness (finding)
370
+ "422868009", # Unexplained weight loss (finding)
371
+ "426977000", # Recent weight loss (finding)
372
+ "428116008", # Multifactorial gait problem (finding)
373
+ "428264009", # Painful gait (finding)
374
+ "429091008", # Dependence on biphasic positive airway pressure ventilation (finding)
375
+ "429487005", # Dependence on continuous positive airway pressure ventilation (finding)
376
+ "43005009", # Shuffling gait (finding)
377
+ "431524008", # Abnormal gait due to impairment of balance (finding)
378
+ "432559006", # Abnormal gait due to muscle weakness (finding)
379
+ "444932008", # Dependence on ventilator (finding)
380
+ "4468000", # Oppenheim's gait (finding)
381
+ "448765001", # Unintentional weight loss (finding)
382
+ "50314001", # Partial bilateral paresis (finding)
383
+ "60631000119109", # Dependence on home ventilator (finding)
384
+ "60651000119103", # Dependence on continuous supplemental oxygen (finding)
385
+ "67141003", # Antalgic gait (finding)
386
+ "69161000119103", # Functional gait abnormality (finding)
387
+ "713512009", # Muscle weakness of upper limb (finding)
388
+ "713514005", # Muscle weakness of limb (finding)
389
+ "713568000", # Occasionally tired (finding)
390
+ "713655003", # Dependence on non-invasive ventilation (finding)
391
+ "78119002", # Complete bilateral paresis (finding)
392
+ "78691002", # Staggering gait (finding)
393
+ "788876001", # Cachexia due to malignant neoplastic disease (finding)
394
+ "788900007", # Dependence on artificial heart (finding)
395
+ "79021000119104", # Dependence on aspirator (finding)
396
+ "79031000119101", # Dependence on respirator (finding)
397
+ "8510008", # Reduced mobility (finding)
398
+ "85711000119103", # Stumbling due to lack of coordination (finding)
399
+ "89201000119106", # Dependence on supplemental oxygen when ambulating (finding)
400
+ "89362005", # Weight loss (finding)
401
+ "931000119107", # Dependence on supplemental oxygen (finding)
402
+ "102492002", # Failure to maintain weight (finding)
403
+ "102568007", # Paresis of lower extremity (finding)
404
+ "105501005", # Dependence on enabling machine or device (finding)
405
+ "105503008", # Dependence on wheelchair (finding)
406
+ "105504002", # Dependence on walking stick (finding)
407
+ "126013009", # Subjective muscle weakness (finding)
408
+ "127378008", # Bilateral paresis (finding)
409
+ "13791008", # Asthenia (finding)
410
+ "152921000119101", # Dependence on respiratory device (finding)
411
+ "15634971000119107", # Weakness of bilateral upper limbs (finding)
412
+ "16018391000119104", # Paresis of left lower limb (finding)
413
+ "16018431000119109", # Paresis of right lower limb (finding)
414
+ "160681005", # Mobile outside with aid (finding)
415
+ "160683008", # Needs walking aid in home (finding)
416
+ "160684002", # Confined to chair (finding)
417
+ "160685001", # Bed-ridden (finding)
418
+ "160692006", # Mobility very poor (finding)
419
+ "160693001", # Mobility poor (finding)
420
+ "160734000", # Lives in nursing home (finding)
421
+ "160737007", # Lives in an old peoples home (finding)
422
+ "161832001", # Weight decreasing (finding)
423
+ "161873000", # Heavy legs (finding)
424
+ "161874006", # Heavy feeling (finding)
425
+ "162236007", # Weakness present (finding)
426
+ "162239000", # Abdominal weakness (finding)
427
+ "16419651000119103", # Dependence on biphasic positive airway pressure ventilation due to central sleep apnea syndrome (finding)
428
+ "165243005", # Independent in wheelchair (finding)
429
+ "165244004", # Minimal help in wheelchair (finding)
430
+ "18726006", # Senile asthenia (finding)
431
+ "20940004", # Spinal hemiparesis (finding)
432
+ "22090007", # Scissoring gait (finding)
433
+ "22325002", # Abnormal gait (finding)
434
+ "224960004", # Tired (finding)
435
+ "22631008", # Unsteady when walking (finding)
436
+ "23042008", # Spinal paraparesis (finding)
437
+ "238108007", # Cachexia (finding)
438
+ "248269005", # Tired on least exertion (finding)
439
+ "248278004", # Attacks of weakness (finding)
440
+ "248279007", # Frailty (finding)
441
+ "249888000", # Weakness of sternomastoid (finding)
442
+ "249937002", # Truncal muscle weakness (finding)
443
+ "249938007", # Weakness of back (finding)
444
+ "249939004", # Proximal muscle weakness (finding)
445
+ "249940002", # Shoulder girdle weakness (finding)
446
+ "249941003", # Pelvic girdle weakness (finding)
447
+ "249942005", # Distal muscle weakness (finding)
448
+ "249943000", # Weakness of distal arms and legs (finding)
449
+ "249946008", # Pyramidal type muscle weakness (finding)
450
+ "250003005", # Low level sensorimotor gait disorder (finding)
451
+ "250015009", # Arthritic gait (finding)
452
+ "250034009", # Middle level sensorimotor gait disorder (finding)
453
+ "250038007", # Retropulsion when walking (finding)
454
+ "250043000", # High level sensorimotor gait disorder (finding)
455
+ "250044006", # Cautious gait (finding)
456
+ "250045007", # Tottering gait (finding)
457
+ "250052009", # Petren's gait (finding)
458
+ "250054005", # Frontal gait disorder (finding)
459
+ "250991000119100", # Stumbling gait (finding)
460
+ "262285001", # Weight decreased (finding)
461
+ "26544005", # Muscle weakness (finding)
462
+ "267024001", # Abnormal weight loss (finding)
463
+ "267032009", # Tired all the time (finding)
464
+ "271795006", # Malaise and fatigue (finding)
465
+ "275313006", # Dragging leg (finding)
466
+ "284529003", # Cardiac cachexia (finding)
467
+ "298283006", # Hand muscle weakness (finding)
468
+ "300948004", # Quadriceps weakness (finding)
469
+ "309249007", # Calf muscle weakness (finding)
470
+ "309257005", # Excessive weight loss (finding)
471
+ "312444006", # Spastic paraparesis (finding)
472
+ "367391008", # Malaise (finding)
473
+ "371028005", # Spastic paresis (finding)
474
+ "373931001", # Sensation of heaviness in limbs (finding)
475
+ "397776000", # Festinating gait (finding)
476
+ "404904002", # Frail elderly (finding)
477
+ "413121008", # Dependent on helper pushing wheelchair (finding)
478
+ "41786007", # Neurological muscle weakness (finding)
479
+ "422868009", # Unexplained weight loss (finding)
480
+ "426977000", # Recent weight loss (finding)
481
+ "428116008", # Multifactorial gait problem (finding)
482
+ "428264009", # Painful gait (finding)
483
+ "429091008", # Dependence on biphasic positive airway pressure ventilation (finding)
484
+ "429487005", # Dependence on continuous positive airway pressure ventilation (finding)
485
+ "43005009", # Shuffling gait (finding)
486
+ "431524008", # Abnormal gait due to impairment of balance (finding)
487
+ "432559006", # Abnormal gait due to muscle weakness (finding)
488
+ "444932008", # Dependence on ventilator (finding)
489
+ "4468000", # Oppenheim's gait (finding)
490
+ "448765001", # Unintentional weight loss (finding)
491
+ "50314001", # Partial bilateral paresis (finding)
492
+ "60631000119109", # Dependence on home ventilator (finding)
493
+ "60651000119103", # Dependence on continuous supplemental oxygen (finding)
494
+ "67141003", # Antalgic gait (finding)
495
+ "69161000119103", # Functional gait abnormality (finding)
496
+ "713512009", # Muscle weakness of upper limb (finding)
497
+ "713514005", # Muscle weakness of limb (finding)
498
+ "713568000", # Occasionally tired (finding)
499
+ "713655003", # Dependence on non-invasive ventilation (finding)
500
+ "78119002", # Complete bilateral paresis (finding)
501
+ "78691002", # Staggering gait (finding)
502
+ "788876001", # Cachexia due to malignant neoplastic disease (finding)
503
+ "788900007", # Dependence on artificial heart (finding)
504
+ "79021000119104", # Dependence on aspirator (finding)
505
+ "79031000119101", # Dependence on respirator (finding)
506
+ "8510008", # Reduced mobility (finding)
507
+ "85711000119103", # Stumbling due to lack of coordination (finding)
508
+ "89201000119106", # Dependence on supplemental oxygen when ambulating (finding)
509
+ "89362005", # Weight loss (finding)
510
+ "931000119107", # Dependence on supplemental oxygen (finding)
511
+ "102492002", # Failure to maintain weight (finding)
512
+ "102568007", # Paresis of lower extremity (finding)
513
+ "105501005", # Dependence on enabling machine or device (finding)
514
+ "105503008", # Dependence on wheelchair (finding)
515
+ "105504002", # Dependence on walking stick (finding)
516
+ "126013009", # Subjective muscle weakness (finding)
517
+ "127378008", # Bilateral paresis (finding)
518
+ "13791008", # Asthenia (finding)
519
+ "152921000119101", # Dependence on respiratory device (finding)
520
+ "15634971000119107", # Weakness of bilateral upper limbs (finding)
521
+ "16018391000119104", # Paresis of left lower limb (finding)
522
+ "16018431000119109", # Paresis of right lower limb (finding)
523
+ "160681005", # Mobile outside with aid (finding)
524
+ "160683008", # Needs walking aid in home (finding)
525
+ "160684002", # Confined to chair (finding)
526
+ "160685001", # Bed-ridden (finding)
527
+ "160692006", # Mobility very poor (finding)
528
+ "160693001", # Mobility poor (finding)
529
+ "160734000", # Lives in nursing home (finding)
530
+ "160737007", # Lives in an old peoples home (finding)
531
+ "161832001", # Weight decreasing (finding)
532
+ "161873000", # Heavy legs (finding)
533
+ "161874006", # Heavy feeling (finding)
534
+ "162236007", # Weakness present (finding)
535
+ "162239000", # Abdominal weakness (finding)
536
+ "16419651000119103", # Dependence on biphasic positive airway pressure ventilation due to central sleep apnea syndrome (finding)
537
+ "165243005", # Independent in wheelchair (finding)
538
+ "165244004", # Minimal help in wheelchair (finding)
539
+ "18726006", # Senile asthenia (finding)
540
+ "20940004", # Spinal hemiparesis (finding)
541
+ "22090007", # Scissoring gait (finding)
542
+ "22325002", # Abnormal gait (finding)
543
+ "224960004", # Tired (finding)
544
+ "22631008", # Unsteady when walking (finding)
545
+ "23042008", # Spinal paraparesis (finding)
546
+ "238108007", # Cachexia (finding)
547
+ "248269005", # Tired on least exertion (finding)
548
+ "248278004", # Attacks of weakness (finding)
549
+ "248279007", # Frailty (finding)
550
+ "249888000", # Weakness of sternomastoid (finding)
551
+ "249937002", # Truncal muscle weakness (finding)
552
+ "249938007", # Weakness of back (finding)
553
+ "249939004", # Proximal muscle weakness (finding)
554
+ "249940002", # Shoulder girdle weakness (finding)
555
+ "249941003", # Pelvic girdle weakness (finding)
556
+ "249942005", # Distal muscle weakness (finding)
557
+ "249943000", # Weakness of distal arms and legs (finding)
558
+ "249946008", # Pyramidal type muscle weakness (finding)
559
+ "250003005", # Low level sensorimotor gait disorder (finding)
560
+ "250015009", # Arthritic gait (finding)
561
+ "250034009", # Middle level sensorimotor gait disorder (finding)
562
+ "250038007", # Retropulsion when walking (finding)
563
+ "250043000", # High level sensorimotor gait disorder (finding)
564
+ "250044006", # Cautious gait (finding)
565
+ "250045007", # Tottering gait (finding)
566
+ "250052009", # Petren's gait (finding)
567
+ "250054005", # Frontal gait disorder (finding)
568
+ "250991000119100", # Stumbling gait (finding)
569
+ "262285001", # Weight decreased (finding)
570
+ "26544005", # Muscle weakness (finding)
571
+ "267024001", # Abnormal weight loss (finding)
572
+ "267032009", # Tired all the time (finding)
573
+ "271795006", # Malaise and fatigue (finding)
574
+ "275313006", # Dragging leg (finding)
575
+ "284529003", # Cardiac cachexia (finding)
576
+ "298283006", # Hand muscle weakness (finding)
577
+ "300948004", # Quadriceps weakness (finding)
578
+ "309249007", # Calf muscle weakness (finding)
579
+ "309257005", # Excessive weight loss (finding)
580
+ "312444006", # Spastic paraparesis (finding)
581
+ "367391008", # Malaise (finding)
582
+ "371028005", # Spastic paresis (finding)
583
+ "373931001", # Sensation of heaviness in limbs (finding)
584
+ "397776000", # Festinating gait (finding)
585
+ "404904002", # Frail elderly (finding)
586
+ "413121008", # Dependent on helper pushing wheelchair (finding)
587
+ "41786007", # Neurological muscle weakness (finding)
588
+ "422868009", # Unexplained weight loss (finding)
589
+ "426977000", # Recent weight loss (finding)
590
+ "428116008", # Multifactorial gait problem (finding)
591
+ "428264009", # Painful gait (finding)
592
+ "429091008", # Dependence on biphasic positive airway pressure ventilation (finding)
593
+ "429487005", # Dependence on continuous positive airway pressure ventilation (finding)
594
+ "43005009", # Shuffling gait (finding)
595
+ "431524008", # Abnormal gait due to impairment of balance (finding)
596
+ "432559006", # Abnormal gait due to muscle weakness (finding)
597
+ "444932008", # Dependence on ventilator (finding)
598
+ "4468000", # Oppenheim's gait (finding)
599
+ "448765001", # Unintentional weight loss (finding)
600
+ "50314001", # Partial bilateral paresis (finding)
601
+ "60631000119109", # Dependence on home ventilator (finding)
602
+ "60651000119103", # Dependence on continuous supplemental oxygen (finding)
603
+ "67141003", # Antalgic gait (finding)
604
+ "69161000119103", # Functional gait abnormality (finding)
605
+ "713512009", # Muscle weakness of upper limb (finding)
606
+ "713514005", # Muscle weakness of limb (finding)
607
+ "713568000", # Occasionally tired (finding)
608
+ "713655003", # Dependence on non-invasive ventilation (finding)
609
+ "78119002", # Complete bilateral paresis (finding)
610
+ "78691002", # Staggering gait (finding)
611
+ "788876001", # Cachexia due to malignant neoplastic disease (finding)
612
+ "788900007", # Dependence on artificial heart (finding)
613
+ "79021000119104", # Dependence on aspirator (finding)
614
+ "79031000119101", # Dependence on respirator (finding)
615
+ "8510008", # Reduced mobility (finding)
616
+ "85711000119103", # Stumbling due to lack of coordination (finding)
617
+ "89201000119106", # Dependence on supplemental oxygen when ambulating (finding)
618
+ "89362005", # Weight loss (finding)
619
+ "931000119107", # Dependence on supplemental oxygen (finding)
620
+ }
621
+
622
+
623
+ __exports__ = (
624
+ "FrailtySymptom",
625
+ )