diff --git a/.github/workflows/CI_Pipeline.yml b/.github/workflows/CI_Pipeline.yml index ab2e2f58f..252f702b1 100644 --- a/.github/workflows/CI_Pipeline.yml +++ b/.github/workflows/CI_Pipeline.yml @@ -122,6 +122,7 @@ jobs: #--------------------------------------------------------------------------- # Job: Build VIPM Library + # Runs first after check-broken-vis; testcases wait for this to succeed. # Only runs when: # 1. check-broken-vis succeeded (implicit via needs) # 2. Branch does NOT match **testcase** (Build's original branch filter) @@ -150,7 +151,7 @@ jobs: with: LabVIEW_Version: 2017 VipbPath: ${{ github.workspace }} - timeout-minutes: 30 + timeout-minutes: 60 continue-on-error: true - name: Retry BuildDailyVIP if failed @@ -160,7 +161,7 @@ jobs: with: LabVIEW_Version: 2017 VipbPath: ${{ github.workspace }} - timeout-minutes: 30 + timeout-minutes: 60 - name: Upload a Build Artifact uses: actions/upload-artifact@v4.3.2 @@ -187,15 +188,20 @@ jobs: #--------------------------------------------------------------------------- # Job: Run Testcases - # Runs in parallel with build-vipm after check-broken-vis succeeds. - # Skipped when ONLY .vipb files changed (Check/Test's original path filter). + # Runs after build-vipm succeeds (sequential order). + # Only runs when testcase-relevant files changed. + # When build-vipm is skipped (e.g. only testcases changed), testcases still run. #--------------------------------------------------------------------------- run-testcases: - needs: check-broken-vis + needs: build-vipm if: | - needs.detect-changes.outputs.testcases == 'true' || - needs.detect-changes.outputs.internal_test == 'true' || - needs.detect-changes.outputs.source == 'true' + always() && ( + needs.build-vipm.result == 'success' || needs.build-vipm.result == 'skipped' + ) && ( + needs.detect-changes.outputs.testcases == 'true' || + needs.detect-changes.outputs.internal_test == 'true' || + needs.detect-changes.outputs.source == 'true' + ) runs-on: [self-hosted, lv2017] steps: - uses: actions/checkout@v4.2.2 @@ -210,7 +216,7 @@ jobs: timeout-minutes: 60 #--------------------------------------------------------------------------- - # Job: Notify — always runs after build + testcases finish + # Job: Notify — always runs after build → testcases both finish # Serves as the "group completed" signal point. #--------------------------------------------------------------------------- notify: diff --git a/.markdownlint.json b/.markdownlint.json deleted file mode 100644 index 738430faf..000000000 --- a/.markdownlint.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "MD033": false, - "MD013": false, - "MD032": false, - "MD028": false, - "MD024": false, - "MD007": false, - "MD022": false, - "MD040": false -} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index 20bd9c6d7..1b38f1f46 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,15 @@ { + "markdownlint.config": { + "MD033": false, + "MD013": false, + "MD032": false, + "MD028": false, + "MD024": false, + "MD007": false, + "MD022": false, + "MD040": false, + "MD041": false + }, "cSpell.words": [ "Cacher", "cloneable", diff --git a/Communicable State Machine(CSM).vipb b/Communicable State Machine(CSM).vipb index 5fcd82215..b2280c617 100644 --- a/Communicable State Machine(CSM).vipb +++ b/Communicable State Machine(CSM).vipb @@ -1,4 +1,4 @@ - + NEVSTOP_lib_Communicable_State_Machine 2026.4.0.1 @@ -66,23 +66,8 @@ For information on NEVSTOP-LAB, visit: <color=blue><u><i>https NEVSTOP https://github.com/NEVSTOP-LAB - Core -[update] #606 Add "Sync Response Only (F)" optional input for CSM - Run Script.vi -[update] #607 Expose "Wait (5000ms)" input for CSM watchdog thread -[fix] #620 Fix bug in CSM - Convert Argument to Error.vi -[update] #611 Set Menu Entry VIs as "Run When Opened", hide FP when run -[update] #612 Add CSM version in csmlog file -[update] #613 Update icon of "CSMLS - Define Loop State(s).vi" to indicate wiring order - -Debug Tools -[fix] Fix CSM_LAUNCH_INTERFACE_BROWSER loading -[update] Update Interface Browser.vi -[fix] Minor fix on module information page of Debug Console - -Doc/Palette -[doc] #617 Clarify chain mode routing semantics in zh/en API docs -[doc] #614 Add warning about reversed wiring in CSMLS - Define Loop State(s).vi help (en+zh) -[doc] Update documentation and fix type errors + [feature] #550 Linux support validation +[fix] #626 lvcsm is created when CSM is not used at all in project. diff --git a/README(zh-cn).md b/README(zh-cn).md index 9ac61cf6d..c5fb8fe95 100644 --- a/README(zh-cn).md +++ b/README(zh-cn).md @@ -17,10 +17,10 @@ _**CSM 函数面板**_ ![image](.doc/_img/CSM%20Palette.png) -**代码模板介绍:** +**代码模板介绍:** [English](src/help/NEVSTOP/Communicable%20State%20Machine(CSM)/Template%20Description(EN).md) | [中文](src/help/NEVSTOP/Communicable%20State%20Machine(CSM)/Template%20Description(zh-cn).md) -**API 介绍:** +**API 介绍:** [English](src/help/NEVSTOP/Communicable%20State%20Machine(CSM)/VI%20Description(EN).md) | [中文](src/help/NEVSTOP/Communicable%20State%20Machine(CSM)/VI%20Description(zh-cn).md) ## 创建可重用模块 @@ -82,7 +82,7 @@ _**CSM 函数面板**_ JKISM 仅支持 STRING 类型参数,但应用需要传输各种数据类型。下表列出了当前参数支持选项,部分为内置功能,其他需要安装插件。 | 参数 | 类型 | 描述 | -|---|---|---| +| --- | --- | --- | | SafeStr | 内置 | 特殊字符("->\| -> -@ & <- , ; []{}`")将被替换为 %[HEXCODE] | | HexStr | 内置 | 数据转换为 variant 并编码为十六进制字符串 | | [MassData](https://github.com/NEVSTOP-LAB/CSM-MassData-Parameter-Support) | 插件 | 数据存储在循环缓冲区中,传递起始位置和长度作为参数 | diff --git a/README.md b/README.md index 5dd79d495..c093bb99f 100644 --- a/README.md +++ b/README.md @@ -17,10 +17,10 @@ _**CSM API Palette**_ ![image](.doc/_img/CSM%20Palette.png) -**Template Description:** +**Template Description:** [English](src/help/NEVSTOP/Communicable%20State%20Machine(CSM)/Template%20Description(EN).md) | [中文](src/help/NEVSTOP/Communicable%20State%20Machine(CSM)/Template%20Description(zh-cn).md) -**API Description:** +**API Description:** [English](src/help/NEVSTOP/Communicable%20State%20Machine(CSM)/VI%20Description(EN).md) | [中文](src/help/NEVSTOP/Communicable%20State%20Machine(CSM)/VI%20Description(zh-cn).md) ## Create Reusable Modules @@ -82,7 +82,7 @@ See _**/Example/3. Caller is Other Framework Scenario**_ for an example. JKISM only supports STRING parameters, but applications need to transmit various data types. The table below lists current parameter support options—some built-in, others requiring addon installation. | Parameter | Type | Description | -|---|---|---| +| --- | --- | --- | | SafeStr | Built-in | Special characters ("->\| -> -@ & <- , ; []{}`") are replaced with %[HEXCODE] | | HexStr | Built-in | Data is converted to variant and encoded as hex string | | [MassData](https://github.com/NEVSTOP-LAB/CSM-MassData-Parameter-Support) | Addon | Data is stored in a circular buffer; StartPos with length is passed as parameter | diff --git a/src/API Tree.vi b/src/API Tree.vi index 2df494552..cead4e042 100644 Binary files a/src/API Tree.vi and b/src/API Tree.vi differ diff --git a/src/_TEST/test distributeControlsEvenly.vi b/src/_TEST/test distributeControlsEvenly.vi new file mode 100644 index 000000000..7b33764aa Binary files /dev/null and b/src/_TEST/test distributeControlsEvenly.vi differ diff --git a/src/_vipm/Post-Install Custom Action.vi b/src/_vipm/Post-Install Custom Action.vi index 5864deaa0..609f67484 100644 Binary files a/src/_vipm/Post-Install Custom Action.vi and b/src/_vipm/Post-Install Custom Action.vi differ diff --git a/src/_vipm/Pre-Build Custom Action.vi b/src/_vipm/Pre-Build Custom Action.vi index 83009b07f..1050df866 100644 Binary files a/src/_vipm/Pre-Build Custom Action.vi and b/src/_vipm/Pre-Build Custom Action.vi differ diff --git a/src/_vipm/Pre-Uninstall Custom Action.vi b/src/_vipm/Pre-Uninstall Custom Action.vi index e0357ee73..603cafa01 100644 Binary files a/src/_vipm/Pre-Uninstall Custom Action.vi and b/src/_vipm/Pre-Uninstall Custom Action.vi differ diff --git a/src/examples/NEVSTOP/Communicable State Machine(CSM)/0. Base Concepts/1. JKISM vs CSM.vi b/src/examples/NEVSTOP/Communicable State Machine(CSM)/0. Base Concepts/1. JKISM vs CSM.vi index 0223006dc..ce193bf8e 100644 Binary files a/src/examples/NEVSTOP/Communicable State Machine(CSM)/0. Base Concepts/1. JKISM vs CSM.vi and b/src/examples/NEVSTOP/Communicable State Machine(CSM)/0. Base Concepts/1. JKISM vs CSM.vi differ diff --git a/src/examples/NEVSTOP/Communicable State Machine(CSM)/1. Create a reuse Module/CSM Reuse Module.vi b/src/examples/NEVSTOP/Communicable State Machine(CSM)/1. Create a reuse Module/CSM Reuse Module.vi index 8b106f54b..3a3c3d50b 100644 Binary files a/src/examples/NEVSTOP/Communicable State Machine(CSM)/1. Create a reuse Module/CSM Reuse Module.vi and b/src/examples/NEVSTOP/Communicable State Machine(CSM)/1. Create a reuse Module/CSM Reuse Module.vi differ diff --git a/src/examples/NEVSTOP/Communicable State Machine(CSM)/2. Caller is CSM Scenario/CSM Example - Caller is a CSM.vi b/src/examples/NEVSTOP/Communicable State Machine(CSM)/2. Caller is CSM Scenario/CSM Example - Caller is a CSM.vi index 510bf2e2e..45384ef37 100644 Binary files a/src/examples/NEVSTOP/Communicable State Machine(CSM)/2. Caller is CSM Scenario/CSM Example - Caller is a CSM.vi and b/src/examples/NEVSTOP/Communicable State Machine(CSM)/2. Caller is CSM Scenario/CSM Example - Caller is a CSM.vi differ diff --git a/src/examples/NEVSTOP/Communicable State Machine(CSM)/3. Caller is Other Framework Scenario/CSM Example - Caller is NOT a CSM.vi b/src/examples/NEVSTOP/Communicable State Machine(CSM)/3. Caller is Other Framework Scenario/CSM Example - Caller is NOT a CSM.vi index a62a504bd..16c095c82 100644 Binary files a/src/examples/NEVSTOP/Communicable State Machine(CSM)/3. Caller is Other Framework Scenario/CSM Example - Caller is NOT a CSM.vi and b/src/examples/NEVSTOP/Communicable State Machine(CSM)/3. Caller is Other Framework Scenario/CSM Example - Caller is NOT a CSM.vi differ diff --git a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/1. Action Workers Example/Action Worker Mode Example.vi b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/1. Action Workers Example/Action Worker Mode Example.vi index 146c1643f..8f28a517c 100644 Binary files a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/1. Action Workers Example/Action Worker Mode Example.vi and b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/1. Action Workers Example/Action Worker Mode Example.vi differ diff --git a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/1. Action Workers Example/SubModules/Action Worker.vi b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/1. Action Workers Example/SubModules/Action Worker.vi index 6b3d500a3..49ceb19f7 100644 Binary files a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/1. Action Workers Example/SubModules/Action Worker.vi and b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/1. Action Workers Example/SubModules/Action Worker.vi differ diff --git a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/2. Chain of Responsiblility Example/Chain of Responsibility Example.vi b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/2. Chain of Responsiblility Example/Chain of Responsibility Example.vi index a4e44b17e..046e4752b 100644 Binary files a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/2. Chain of Responsiblility Example/Chain of Responsibility Example.vi and b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/2. Chain of Responsiblility Example/Chain of Responsibility Example.vi differ diff --git a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/2. Chain of Responsiblility Example/SubModules/ChainNode A.vi b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/2. Chain of Responsiblility Example/SubModules/ChainNode A.vi index 5c97ff694..dfb97e313 100644 Binary files a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/2. Chain of Responsiblility Example/SubModules/ChainNode A.vi and b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/2. Chain of Responsiblility Example/SubModules/ChainNode A.vi differ diff --git a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/2. Chain of Responsiblility Example/SubModules/ChainNode B.vi b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/2. Chain of Responsiblility Example/SubModules/ChainNode B.vi index 1063d3382..5906d83e1 100644 Binary files a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/2. Chain of Responsiblility Example/SubModules/ChainNode B.vi and b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/2. Chain of Responsiblility Example/SubModules/ChainNode B.vi differ diff --git a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/2. Chain of Responsiblility Example/SubModules/ChainNode C.vi b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/2. Chain of Responsiblility Example/SubModules/ChainNode C.vi index f8e0f8bc3..ae66f7131 100644 Binary files a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/2. Chain of Responsiblility Example/SubModules/ChainNode C.vi and b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/2. Chain of Responsiblility Example/SubModules/ChainNode C.vi differ diff --git a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/3. Build-in Error Handling Framework/SubModules/Error Module.vi b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/3. Build-in Error Handling Framework/SubModules/Error Module.vi index ef061f710..2a58d7c03 100644 Binary files a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/3. Build-in Error Handling Framework/SubModules/Error Module.vi and b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/3. Build-in Error Handling Framework/SubModules/Error Module.vi differ diff --git a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/3. Build-in Error Handling Framework/Topmost VI who Registers all Errors.vi b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/3. Build-in Error Handling Framework/Topmost VI who Registers all Errors.vi index d116fb9cb..958f3d983 100644 Binary files a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/3. Build-in Error Handling Framework/Topmost VI who Registers all Errors.vi and b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/3. Build-in Error Handling Framework/Topmost VI who Registers all Errors.vi differ diff --git a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/4. Global Log Filter Example/Filter From Subscriber(Queue).vi b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/4. Global Log Filter Example/Filter From Subscriber(Queue).vi index 7efccb5d6..85ecf6864 100644 Binary files a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/4. Global Log Filter Example/Filter From Subscriber(Queue).vi and b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/4. Global Log Filter Example/Filter From Subscriber(Queue).vi differ diff --git a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/5. Multi-Loop Module Example/Main - Call and Monitor TCP Traffic.vi b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/5. Multi-Loop Module Example/Main - Call and Monitor TCP Traffic.vi index c026cf85c..b9180f9d3 100644 Binary files a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/5. Multi-Loop Module Example/Main - Call and Monitor TCP Traffic.vi and b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/5. Multi-Loop Module Example/Main - Call and Monitor TCP Traffic.vi differ diff --git a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/5. Multi-Loop Module Example/TCP Server Module(Multi-Loop Support).vi b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/5. Multi-Loop Module Example/TCP Server Module(Multi-Loop Support).vi index 91a4f68da..8956f15a6 100644 Binary files a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/5. Multi-Loop Module Example/TCP Server Module(Multi-Loop Support).vi and b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/5. Multi-Loop Module Example/TCP Server Module(Multi-Loop Support).vi differ diff --git a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/6. Global Log Handling Capability/Global Log Handling Capability Example.vi b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/6. Global Log Handling Capability/Global Log Handling Capability Example.vi index be9f19d73..30890956c 100644 Binary files a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/6. Global Log Handling Capability/Global Log Handling Capability Example.vi and b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/6. Global Log Handling Capability/Global Log Handling Capability Example.vi differ diff --git a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/6. Global Log Handling Capability/SubModules/Module to Generate Flood of Logs.vi b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/6. Global Log Handling Capability/SubModules/Module to Generate Flood of Logs.vi index 65f8d8ee0..64c6e648a 100644 Binary files a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/6. Global Log Handling Capability/SubModules/Module to Generate Flood of Logs.vi and b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/6. Global Log Handling Capability/SubModules/Module to Generate Flood of Logs.vi differ diff --git a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/7. Register State as Status Example/Register State as Status Example.vi b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/7. Register State as Status Example/Register State as Status Example.vi index c63759476..b870ce425 100644 Binary files a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/7. Register State as Status Example/Register State as Status Example.vi and b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/7. Register State as Status Example/Register State as Status Example.vi differ diff --git a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/7. Register State as Status Example/SubModules/State Register Example Submodule.vi b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/7. Register State as Status Example/SubModules/State Register Example Submodule.vi index 865c57f1e..9e5bd4ae8 100644 Binary files a/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/7. Register State as Status Example/SubModules/State Register Example Submodule.vi and b/src/examples/NEVSTOP/Communicable State Machine(CSM)/4. Advance Examples/7. Register State as Status Example/SubModules/State Register Example Submodule.vi differ diff --git a/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/VI Description(zh-cn)/VI Description(zh-cn) - 12. Debug,Doc,Tools.md b/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/VI Description(zh-cn)/VI Description(zh-cn) - 12. Debug,Doc,Tools.md index 3a56c6891..5b40e8b43 100644 --- a/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/VI Description(zh-cn)/VI Description(zh-cn) - 12. Debug,Doc,Tools.md +++ b/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/VI Description(zh-cn)/VI Description(zh-cn) - 12. Debug,Doc,Tools.md @@ -1,62 +1,62 @@ # CSM Debug Tools -## ɨ"VI Reference" ֧(CSM - Add VI Reference Case to CSMs.vi) +## 扫描添加"VI Reference" 分支(CSM - Add VI Reference Case to CSMs.vi) -CSM ģб"VI Reference" ֧ⲿȡVIáڵģвcase˹ +CSM 模板中必须包含"VI Reference" 分支,用于外部获取VI的引用。在早期的模板中并不包含此case,此工具用于添加它。 -˹߻ɨ lvproj Ŀ¼е VI VI CSM ģ飬гȻѡ "VI Reference" ֧ +此工具会扫描 lvproj 目录中所有的 VI,如果这个 VI 包含 CSM 模块,它将被罗列出来,然后你可以选择批量的添加 "VI Reference" 分支。 -## CSMԿ̨-ɰ汾(CSM - Debug Console - previous.vi) +## CSM调试控制台-旧版本(CSM - Debug Console - previous.vi) -CSM Կ̨ʹô˹ߣ +CSM 调试控制台,你可以使用此工具: -1. ѡе CSM ʵǰ塢塣 -2. ɨе CSM ʵAPIӿڡ -3. ѡһAPIӿڣͬ첽ã鿴ֵ -4. 鿴־ +1. 选择已有的 CSM 实例,打开前面板、后面板。 +2. 扫描已有的 CSM 实例的API接口。 +3. 选择一个API接口,同步、异步调用,查看返回值。 +4. 查看整体程序的运行日志。 -## CSMԿ̨(CSM - Debug Console - DebugTool.vi) +## CSM调试控制台(CSM - Debug Console - DebugTool.vi) -ºCSM Կ̨ʹô˹ߣ +更新后的CSM 调试控制台,你可以使用此工具: -1. ѡе CSM ʵǰ塢塣 -2. ɨе CSM ʵAPIӿڡ -3. ѡһAPIӿڣͬ첽ã鿴ֵ -4. 鿴־ -5. Scripts +1. 选择已有的 CSM 实例,打开前面板、后面板。 +2. 扫描已有的 CSM 实例的API接口。 +3. 选择一个API接口,同步、异步调用,查看返回值。 +4. 查看整体程序的运行日志。 +5. 运行 Scripts。 -## Ƴ CSM ģеǩ(CSM - Remove all CSM Bookmarks.vi) +## 移除 CSM 模块中所有的书签(CSM - Remove all CSM Bookmarks.vi) -Ƴ CSM ģеǩ +移除 CSM 模块中所有的书签。 -## ־ʵʱ鿴(CSM - Running Log - DebugTool.vi) +## 日志实时查看工具(CSM - Running Log - DebugTool.vi) -CSM־ʵʱ鿴ߡ +CSM整体程序的运行日志实时查看工具。 -## ʵʱ״̬(CSM - State Dashboard - DebugTool.vi) +## 实时状态面板(CSM - State Dashboard - DebugTool.vi) -CSMģʵʱ״̬塣 +CSM整体程序模块的实时状态面板。 -## ʵʱ״̬(CSM - State Table - DebugTool.vi) +## 实时状态表(CSM - State Table - DebugTool.vi) -<> CSMģʵʱ״̬ +<开发中> CSM整体程序模块的实时状态表。 -## л CSM ģ VIע͵(CSM - Switch Language Tool.vi) +## 切换 CSM 模块 VI描述、注释的语言(CSM - Switch Language Tool.vi) -л CSM ģ VIע͵ԡĿǰ֧ġӢġ +切换 CSM 模块 VI描述、注释的语言。目前支持中文、英文。 -## ޸ JKISM State Editor Ҽ˵(CSM - Fix JKISM Editor RCM Entry.vi) +## 修复 JKISM State Editor 右键弹出菜单(CSM - Fix JKISM Editor RCM Entry.vi) -޸ JKISM State Editor Ҽ˵ CSMвܵ⡣ +修复 JKISM State Editor 右键弹出菜单在 CSM中不能弹出的问题。 -## ĿĿ¼ CSM ģĺѡ(CSM - Create CSM Palette at Root.vi) +## 在项目根目录创建 CSM 模块的函数选板(CSM - Create CSM Palette at Root.vi) -ĿĿ¼ CSM ģĺѡ塣 +在项目根目录创建 CSM 模块的函数选板。 -## CSM ʾ(CSM - Example Browser.vi) +## CSM 示例浏览器(CSM - Example Browser.vi) -CSM ʾ CSM ʾ +CSM 示例浏览器,允许您轻松浏览 CSM 示例程序。 -## CSMӿ(CSM - Interface Browser.vi) +## CSM接口浏览器(CSM - Interface Browser.vi) - CSM ģӿڵĹߣٲ鿴Ŀ CSM ģ API ӿڡ +用于浏览 CSM 模块接口的工具,允许您快速查看和搜索项目中 CSM 模块的 API 接口。 diff --git a/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/VI Description(zh-cn)/_internal/VI Description(zh-cn) - 13. Internal.md b/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/VI Description(zh-cn)/_internal/VI Description(zh-cn) - 13. Internal.md index a798fbe2e..a477f14b0 100644 --- a/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/VI Description(zh-cn)/_internal/VI Description(zh-cn) - 13. Internal.md +++ b/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/VI Description(zh-cn)/_internal/VI Description(zh-cn) - 13. Internal.md @@ -4,24 +4,24 @@ ### Naming Check.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Name("" to use uuid): Returns any argument(s) that may be used in the current state string. These arguments come after the ">>" characters --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - Name(dup): Returns any argument(s) that may be used in the current state string. These arguments come after the ">>" characters - Name ("" to Use UUID):Controls - Name (Dup):Indicators ### Check.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - BroadcastRegistry in: - Status: - Source: - Target: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - BroadcastRegistry out: - Response Message Info: - BroadcastRegistry In:Controls @@ -31,62 +31,62 @@ Returns any argument(s) that may be used in the current state string. These argu - Status:Controls ### Delete Source Module.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - BroadcastRegistry in: - Source: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - BroadcastRegistry out: - BroadcastRegistry In:Controls - BroadcastRegistry Out:Indicators ### Delete Target Module.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - BroadcastRegistry in: - Source: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - BroadcastRegistry out: - BroadcastRegistry In:Controls - BroadcastRegistry Out:Indicators ### Initialize.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - BroadcastRegistry in: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - BroadcastRegistry out: - BroadcastRegistry Out:Indicators ### List Entries.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - BroadcastRegistry in: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - BroadcastRegistry out: - Array: - Array:Indicators - BroadcastRegistry Out:Indicators ### List Status in Registry.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - BroadcastRegistry in: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - BroadcastRegistry out: - Status: - BroadcastRegistry Out:Indicators - Status:Indicators ### Register.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - BroadcastRegistry in: - status: - source: - api: - target: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - BroadcastRegistry out: - Api:Controls - BroadcastRegistry In:Controls @@ -95,24 +95,24 @@ Returns any argument(s) that may be used in the current state string. These argu - Status:Controls ### Remove Module.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - BroadcastRegistry in: - Source: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - BroadcastRegistry out: - BroadcastRegistry In:Controls - BroadcastRegistry Out:Indicators ### Unregister.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - BroadcastRegistry in: - Status: - Source: - api: - Target: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - BroadcastRegistry out: - Api:Controls - BroadcastRegistry In:Controls @@ -121,52 +121,52 @@ Returns any argument(s) that may be used in the current state string. These argu - Status:Controls ### Broadcast Item Key.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - status: - target: - source: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - key: - Key:Indicators - Status:Controls - Target:Controls ### Preview.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - BroadcastRegistry in: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - Registry: - BroadcastRegistry out: - BroadcastRegistry Out:Indicators - Registry:Indicators ### Remove response API from List.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - API: - output cluster in: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - output cluster out: - API:Controls - Output Cluster Out:Indicators ### Concatenate State with Arguments.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Arguments: - State: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - State with Arguments: - Arguments:Controls - State With Arguements:Indicators ### CSM-Name to CSM-Mode.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - String: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - ParentCSM Name: - CSM Mode: - Requested Name: @@ -176,46 +176,46 @@ Returns any argument(s) that may be used in the current state string. These argu ### Hex Str to U8 Data.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - HEX String (0-9,A-F): --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - u8 Data[]: - HEX String (0-9,A-F):Controls - U8 Data[]:Indicators ### Parse Next Single-line State.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - States Queue: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - Next Single-line State: - Remaining States Queue: ### Remove Comments from Line.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - single-line text: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - single-line text without comments: ### Splite Reason String Part.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Single-line -& Reason: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - CSM Name: - `State: - `Arguments: ### Splite Single-line Message.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - single-line text: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - operator: - state: - args: @@ -223,39 +223,39 @@ Returns any argument(s) that may be used in the current state string. These argu ### Trim Single line Text.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - single-line text: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - trimmed text: ### CSM Not Allowed Message.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - State: - CSM: - CSM:Controls - State:Controls ### Cache-Broadcast Registry Search Result.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - CSM Name: - Broadcast state: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - Array: - Array:Indicators - CSM Name:Controls ### FGV-BroadcastRegistry.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Source: - Target: - Status: - API: - Operation: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - response message: - API:Controls - Response Message:Indicators @@ -264,36 +264,36 @@ Returns any argument(s) that may be used in the current state string. These argu - Target:Controls ### global-Broadcast Cache Change Flag.vi -ȫֱڱǹ㲥Ƿ仯 +全局变量,用于标记广播缓存是否发生变化 ### global-CSMQ FGV Change Flag.vi -ȫֱڱ CSM ģϢǷ仯 +全局变量,用于标记 CSM 模块管理信息是否发生变化 ### global-GEvnt Filter Change Flag.vi -ȫֱڱ Global Event ĹǷ仯 +全局变量,用于标记 Global Event 的过滤条件是否发生变化 ### Cache-GEvt Filter Object.vi --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - CSM:LogFilter.lvclass: - CSM:LogFilter.lvclass:Indicators ### FGV-GEvt Filter Obj.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Set(T)/Get(F): - Rules-v1: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - CSM:LogFilter.lvclass: ### FGV-GlobalEventRef.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Create(F): --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - CSM Global Log Event: - Event:Indicators - Force Destroy?:Controls @@ -301,29 +301,29 @@ Returns any argument(s) that may be used in the current state string. These argu - Timeout In ms (5000 ms):Controls ### FGV-StatusChangeEventRef.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Name("" to use uuid) in: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - Status Change Event: ### GEvt-BackgroundThread.vi ### GEvt-Convert Filter Rules - v1.0.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Rules-v1: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - GlobalLogFilter: - GlobalLogFilter:Indicators ### GEvt-Filter Global Log - v1.0.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Rules-v1: - Cross CSM Data (in): --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - Matched? (dup): - Cross CSM Data: - Cross CSM Data:Indicators @@ -332,13 +332,13 @@ Returns any argument(s) that may be used in the current state string. These argu - Rules-v1:Controls ### GEvt-Generate Complete Log.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - CSM Global Log Event: - event data: - Enable?: - CSM:LogFilter.lvclass: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - CSM Global Log Event out: - CSM Global Log Event Out:Indicators - CSM Global Log Event:Controls @@ -346,14 +346,14 @@ Returns any argument(s) that may be used in the current state string. These argu - Event Data:Controls ### GEvt-Generate Interrupt Log.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - CSM Global Log Event: - Current State: - Arguments: - Name("" to use uuid): - CSM:LogFilter.lvclass: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - CSM Global Log Event out: - event data: - Arguments:Controls @@ -365,13 +365,13 @@ Returns any argument(s) that may be used in the current state string. These argu - Name ("" to Use UUID):Controls ### GEvt-Generate Module Created Log.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - CSM Global Log Event: - Name("" to use uuid): - Created?: - CSM:LogFilter.lvclass: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - CSM Global Log Event out: - event data: - CSM Global Log Event Out:Indicators @@ -381,13 +381,13 @@ Returns any argument(s) that may be used in the current state string. These argu - Name ("" to Use UUID):Controls ### GEvt-Generate Module Destroyed Log.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - CSM Global Log Event: - Name("" to use uuid): - Enable?: - CSM:LogFilter.lvclass: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - CSM Global Log Event out: - event data: - CSM Global Log Event Out:Indicators @@ -397,14 +397,14 @@ Returns any argument(s) that may be used in the current state string. These argu - Name ("" to Use UUID):Controls ### GEvt-Generate Register Log.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - CSM Global Log Event: - Current State: - Arguments: - Name("" to use uuid): - CSM:LogFilter.lvclass: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - CSM Global Log Event out: - event data: - Arguments:Controls @@ -416,14 +416,14 @@ Returns any argument(s) that may be used in the current state string. These argu - Name ("" to Use UUID):Controls ### GEvt-Generate Remaining States Log.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - CSM Global Log Event: - Remaining States: - Name("" to use uuid): - Enable?: - CSM:LogFilter.lvclass: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - CSM Global Log Event out: - event data: - CSM Global Log Event Out:Indicators @@ -434,7 +434,7 @@ Returns any argument(s) that may be used in the current state string. These argu - Remaining States:Controls ### GEvt-Generate State Change Log.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - CSM Global Log Event: - Current State: - Arguments: @@ -444,7 +444,7 @@ Returns any argument(s) that may be used in the current state string. These argu - Name("" to use uuid): - CSM:LogFilter.lvclass: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - CSM Global Log Event out: - event data: - CSM Global Log Event Out:Indicators @@ -458,14 +458,14 @@ Returns any argument(s) that may be used in the current state string. These argu - Source Module:Controls ### GEvt-Generate Status Log.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - CSM Global Log Event: - Current State: - Arguments: - Name("" to use uuid): - CSM:LogFilter.lvclass: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - CSM Global Log Event out: - event data: - Arguments:Controls @@ -478,14 +478,14 @@ Returns any argument(s) that may be used in the current state string. These argu - Source Module:Controls ### GEvt-Generate Unregister Log.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - CSM Global Log Event: - Current State: - Arguments: - Name("" to use uuid): - CSM:LogFilter.lvclass: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - CSM Global Log Event out: - event data: - Arguments:Controls @@ -498,60 +498,60 @@ Returns any argument(s) that may be used in the current state string. These argu - Remove For Module Exit? (F):Controls ### GEvt-Generate with Rule Check.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - LogFilter in: - event data: - CSM Global Log Event in: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - CSM Global Log Event out: - CSM Global Log Event Out:Indicators - Event Data:Controls - LogFilter In:Controls ### GEvt-Set Source Filter Rules - v1.0.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Rules-v1: - Rules-v1:Controls ### GEvt-ThreadQueueName.vi --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - ThreadQueueName: ### GEvt-WatchdogThread.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - WatchDogQ: ### Filter Check.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Cross CSM Data in: - GlobalLogFilter in: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - Matched? (dup): - Cross CSM Data out: - GlobalLogFilter.lvclass (dup): ### List Rules as Strings.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - GlobalLogFilter in: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - Rule Strings: - GlobalLogFilter out: - GlobalLogFilter Out:Indicators - Rule Strings:Indicators ### CSM Check - LogType.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Matched Previous?: - Cross CSM Data (in): - GlobalLogFilter.lvclass: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - Matched? (dup): - Cross CSM Data: - GlobalLogFilter.lvclass (dup): @@ -561,12 +561,12 @@ Returns any argument(s) that may be used in the current state string. These argu - Matched? (Dup):Indicators ### CSM Check - State.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Matched Previous?: - Cross CSM Data (in): - GlobalLogFilter.lvclass: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - Matched? (dup): - Cross CSM Data: - GlobalLogFilter.lvclass (dup): @@ -576,12 +576,12 @@ Returns any argument(s) that may be used in the current state string. These argu - Matched? (Dup):Indicators ### CSM Check - StateType.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Matched Previous?: - Cross CSM Data (in): - GlobalLogFilter.lvclass: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - Matched? (dup): - Cross CSM Data: - GlobalLogFilter.lvclass (dup): @@ -591,12 +591,12 @@ Returns any argument(s) that may be used in the current state string. These argu - Matched? (Dup):Indicators ### Group Check - CSM.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Matched Previous?: - Cross CSM Data (in): - GlobalLogFilter.lvclass: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - Matched? (dup): - Cross CSM Data: - GlobalLogFilter.lvclass (dup): @@ -606,12 +606,12 @@ Returns any argument(s) that may be used in the current state string. These argu - Matched? (Dup):Indicators ### Group Check - LogType.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Matched Previous?: - Cross CSM Data (in): - GlobalLogFilter.lvclass: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - Matched? (dup): - Cross CSM Data: - GlobalLogFilter.lvclass (dup): @@ -621,12 +621,12 @@ Returns any argument(s) that may be used in the current state string. These argu - Matched? (Dup):Indicators ### Group Check - State.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Matched Previous?: - Cross CSM Data (in): - GlobalLogFilter.lvclass: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - Matched? (dup): - Cross CSM Data: - GlobalLogFilter.lvclass (dup): @@ -636,12 +636,12 @@ Returns any argument(s) that may be used in the current state string. These argu - Matched? (Dup):Indicators ### Group Check - StateType.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Matched Previous?: - Cross CSM Data (in): - GlobalLogFilter.lvclass: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - Matched? (dup): - Cross CSM Data: - GlobalLogFilter.lvclass (dup): @@ -651,95 +651,95 @@ Returns any argument(s) that may be used in the current state string. These argu - Matched? (Dup):Indicators ### Set CSM LogType Filter.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - LogType: - GlobalLogFilter in: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - GlobalLogFilter out: - GlobalLogFilter Out:Indicators - LogType:Controls ### Set CSM State Filter.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - CSM:State: - GlobalLogFilter in: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - GlobalLogFilter out: - CSM:State:Controls - GlobalLogFilter Out:Indicators ### Set CSM StateType Filter.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - LogType: - GlobalLogFilter in: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - GlobalLogFilter out: - GlobalLogFilter Out:Indicators - LogType:Controls ### Set Global CSM Filter.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Group:CSM: - GlobalLogFilter in: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - GlobalLogFilter out: - GlobalLogFilter Out:Indicators - Group:CSM:Controls ### Set Global LogType Filter.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Group:LogType: - GlobalLogFilter in: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - GlobalLogFilter out: - GlobalLogFilter Out:Indicators - Group:LogType:Controls ### Set Global State Filter.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Group:State: - GlobalLogFilter in: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - GlobalLogFilter out: - GlobalLogFilter Out:Indicators - Group:State:Controls ### Set Global StateType Filter.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Group:LogType: - GlobalLogFilter in: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - GlobalLogFilter out: - GlobalLogFilter Out:Indicators - Group:LogType:Controls ### Log State Type.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Complete(T)/Start(F): - Source Module: - State: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - CSM_GlobalLog_STATE_TYPE: - CSM_GlobalLog_STATE_TYPE:Indicators - Complete? (T)/Start(F):Controls - Source Module:Controls -- State:Controls +- ‘State:Controls ### Parse Register Message.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - state: - Module Name : - args: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - target: - source: - status: @@ -753,11 +753,11 @@ Returns any argument(s) that may be used in the current state string. These argu - Target:Indicators ### Parse State with Arguments String.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - State with Arguments: The State string that requires the argument. --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - State: - Arguments: - Target Module: @@ -768,12 +768,12 @@ The State string that requires the argument. - Target Module:Indicators ### Parse Unregister Message.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - state: - Module Name : - args: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - target: - source: - status: @@ -787,11 +787,11 @@ The State string that requires the argument. - Target:Indicators ### Dequeue Element.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - timeout in ms (-1): - Priority Queue: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - timed out?: - Cross JKI State Machine State: - Priority Queue(dup): @@ -803,13 +803,13 @@ The State string that requires the argument. - Timeout In ms (-1):Controls ### Enqueue Element.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - High Priority?(F): - timeout in ms (-1): - Cross JKI State Machine State: - Priority Queue: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - Priority Queue(dup): - Cross JKI State Machine State:Controls - High Priority? (F):Controls @@ -817,10 +817,10 @@ The State string that requires the argument. - Timeout In ms (-1):Controls ### Get Queue Status.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Priority Queue in: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - # pending insert: - # pending remove: - Priority Queue out: @@ -830,20 +830,20 @@ The State string that requires the argument. - # Pending Remove:Indicators ### Not a Refnum.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Priority Queue.lvclass: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - NaN/Path/Refnum?: - NaN/Path/Refnum?:Indicators - Priority Queue.lvclass:Controls ### Obtain Priority Queue.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - create if not found? (T): - name: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - created new?: - Priority Queue: - Create If Not Found? (T):Controls @@ -851,21 +851,21 @@ The State string that requires the argument. - Priority Queue:Indicators ### Release Priority Queue.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - force destroy? (F): - Priority Queue: - Force Destroy? (F):Controls - Priority Queue:Controls ### CSMP-Async Call.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - state: - args: - source/target: - Module Name: - Msg Type: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - state out: - args out: - source/target out: @@ -883,14 +883,14 @@ The State string that requires the argument. - State:Controls ### CSMP-Broadcast.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - state: - args: - source/target: - Module Name: - Msg Type: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - state out: - args out: - source/target out: @@ -901,14 +901,14 @@ The State string that requires the argument. - Module Name:Controls - Pre-Args Out:Indicators - Pre-State Out:Indicators -- Response For Message.Error:Controls +- Response For Message.’Error:Controls - Source/target Out:Indicators - Source/target:Controls - State Out:Indicators - State:Controls ### CSMP-PostPostMsg.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - state: - args: - source/target: @@ -918,7 +918,7 @@ The State string that requires the argument. - Module Name: - Response Arguments: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - state out: - args out: - source/target out: @@ -938,7 +938,7 @@ The State string that requires the argument. - State:Controls ### CSMP-PostSendMsg.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - state: - args: - source/target: @@ -946,7 +946,7 @@ The State string that requires the argument. - Module Name: - Response Arguments: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - state out: - args out: - source/target out: @@ -960,13 +960,13 @@ The State string that requires the argument. - State:Controls ### CSMP-Register Status.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - state: - args: - source/target: - Module Name: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - state out: - args out: - source/target out: @@ -984,14 +984,14 @@ The State string that requires the argument. - State:Controls ### CSMP-Sync Call.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - state: - args: - source/target: -- Response Timeout(-2 using Global Settings): ͬõijʱʱ䣬ĬΪ-2ʹȫáͨ"CSM - Set TMO of Sync-Reply.vi" ȫֳʱʱ䡣 +- Response Timeout(-2 using Global Settings): 同步调用的超时时间,默认为-2,使用全局设置。你可以通过"CSM - Set TMO of Sync-Reply.vi" 设置全局超时时间。 - Module Name: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - state out: - args out: - source/target out: @@ -1008,13 +1008,13 @@ The State string that requires the argument. - State:Controls ### CSMP-Unregister Status.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - state: - args: - source/target: - Module Name: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - state out: - args out: - source/target out: @@ -1032,7 +1032,7 @@ The State string that requires the argument. - State:Controls ### Auto Resize All MultiListbox Columns (Uniform Text).vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - IgnoreCols(Empty as default): - Array: - Control in: @@ -1041,13 +1041,13 @@ The State string that requires the argument. - IngoreCols (Empty As Default):Controls ### Dashboard Cell Resize.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Cluster: - Cluster Size:Height: - Cluster Size:Width: - ClusterRef: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - Bounds:Area Height: - Bounds:Area Width: - Bounds:Area Height:Indicators @@ -1056,7 +1056,7 @@ The State string that requires the argument. - Cluster Size:Width:Controls ### Dashboard Cell2 Array Resize.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Num Columns: - Cluster: - Num Rows: @@ -1071,41 +1071,41 @@ The State string that requires the argument. - Num Rows:Controls ### Open CSM BD.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Current Module("" to generate a ID): - CSM: ### Open CSM FP.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Current Module("" to generate a ID): - CSM: ### Select Greater_nevstop.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - A: - B: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - lesser: - A:Controls - Lesser:Indicators ### Append Application Directory If Relative.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - Relative path (.): --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - Application Directory (+ Relative): ### Convert File Extension (Path)__ogtk.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - new ending (none): - file name: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - prev ending: - new filename: - New Ending (None):Controls @@ -1113,11 +1113,11 @@ The State string that requires the argument. - Prev Ending:Indicators ### Convert File Extension (String)__ogtk.vi --- Controls(ؼ) -- +-- Controls(输入控件) -- - new ending (none): - file name: --- Indicators(ؼ) -- +-- Indicators(输出控件) -- - prev ending: - new filename: - New Ending (None):Controls diff --git a/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/VI Description(zh-cn)/_internal/VI Description(zh-cn) - 14. Internal2.md b/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/VI Description(zh-cn)/_internal/VI Description(zh-cn) - 14. Internal2.md index eb6e00154..9959239f1 100644 --- a/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/VI Description(zh-cn)/_internal/VI Description(zh-cn) - 14. Internal2.md +++ b/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/VI Description(zh-cn)/_internal/VI Description(zh-cn) - 14. Internal2.md @@ -1,36 +1,36 @@ -# ڲʹõһЩVIͻɼ +# 内部使用的一些帮助VI,客户不可见 ## Build Error Cluster.vi -һ(error cluster)Ա׼ LabVIEW ķʽӵ VI ĵйԴַԴַʽΪ -"õ VI VI ĵ-> VI ĵߵĵ->ȵ...->ȵ..." -ѡ 'String to Prepend to source ("")' ַԴַӶϢַӵԴַ֮ǰ +创建一个错误簇(error cluster),以标准 LabVIEW 的方式从调用 VI 的调用链中构建源字符串。构建的源字符串形式为: +"调用的 VI调用 VI 的调用者->调用 VI 的调用者的调用者->等等...->等等..." +可选的 'String to Prepend to source ("")' 字符串输入可用于在源字符串中添加额外的描述信息。如果存在这个字符串,它将用括号括起来,并添加到源字符串之前。 --- Controls(ؼ) -- -- code: -- String to Prepend to source (""): Ϣַ +-- Controls(输入控件) -- +- code: 错误码 +- String to Prepend to source (""): 错误信息字符串 ## Build Internal State String.vi - JKI ״̬״̬Ϣַ +构建包含 JKI 状态机状态、参数等信息的字符串。 --- Controls(ؼ) -- -- State: ״ַ̬ -- Arguments (""): StateIJ -- Arg-State (""): ʹϢģڷʹϢʱڵ״̬ -- Source (""): ʹϢģ +-- Controls(输入控件) -- +- State: 状态字符串 +- Arguments (""): State的参数 +- Arg-State (""): 发送此消息的模块在发送此消息时处于的状态 +- Source (""): 发送此消息的模块名称 --- Indicators(ؼ) -- -- CSM Message String: ƴɵ CSM Ϣַ +-- Indicators(输出控件) -- +- CSM Message String: 拼接生成的 CSM 消息字符串 - >> Response Source Message >>:Controls - State With Arguments:Indicators ### Trim Both Whitespace.vi -ͷβͬʱƳ ASCII հַ(ոƱسͻ) +开头、结尾或两者同时移除所有 ASCII 空白字符(空格、制表符、回车和换行)。 --- Controls(ؼ) -- -- string: ַ +-- Controls(输入控件) -- +- string: 待处理字符串 --- Indicators(ؼ) -- -- trimmed string: ַ +-- Indicators(输出控件) -- +- trimmed string: 处理后的字符串 diff --git a/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/_internal/VI Description(EN).md b/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/_internal/VI Description(EN).md deleted file mode 100644 index 899367173..000000000 --- a/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/_internal/VI Description(EN).md +++ /dev/null @@ -1,15 +0,0 @@ -# CSM API - -- [01. Templates](././VI%20Description(en)/VI%20Description(en)%20-%2001.%20Templates.md) -- [02. Core Functions](././VI%20Description(en)/VI%20Description(en)%20-%2002.%20Core%20Functions.md) -- [03. Arguments](././VI%20Description(en)/VI%20Description(en)%20-%2003.%20Arguments.md) -- [04. Management API](././VI%20Description(en)/VI%20Description(en)%20-%2004%20.Management%20API.md) -- [05. Module Operation API](././VI%20Description(en)/VI%20Description(en)%20-%2005.%20Module%20Operation%20API.md) -- [06. Status Registration](././VI%20Description(en)/VI%20Description(en)%20-%2006.%20Status%20Registration.md) -- [07. Global Log](././VI%20Description(en)/VI%20Description(en)%20-%2007.%20Global%20Log.md) -- [08. Advanced Mode](././VI%20Description(en)/VI%20Description(en)%20-%2008.%20Advance%20Modes.md) -- [09. Built-in Addons](././VI%20Description(en)/VI%20Description(en)%20-%2009.%20Build-in%20Addons.md) -- [10. Utility VIs](././VI%20Description(en)/VI%20Description(en)%20-%2010.%20Utility%20VIs.md) -- [11. CSM-Helper API](././VI%20Description(en)/VI%20Description(en)%20-%2011.%20CSM-Helper%20API.md) -- [12. Debug, Doc, Tools](././VI%20Description(en)/VI%20Description(en)%20-%2012.%20Debug,Doc,Tools.md) -- [13. Internal](././VI%20Description(en)/VI%20Description(en)%20-%2013.%20Internal.md) diff --git a/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/_internal/VI Description(zh-cn) - 11. CSM-Helper API.md b/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/_internal/VI Description(zh-cn) - 11. CSM-Helper API.md deleted file mode 100644 index 1f311943f..000000000 --- a/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/_internal/VI Description(zh-cn) - 11. CSM-Helper API.md +++ /dev/null @@ -1,959 +0,0 @@ -# CSM API - -## CSM-Helper API - -### Is CSM Module.vi - -使用最少的VI调用,判断是否是 CSM 模块,用于 LabVIEW 插件预先判断。 - -> [!NOTE] -> 多态VI(Polymorphic VI)选项 -> -> - Is CSM Module - VIRef.vi -> - Is CSM Module - WhileLoop.vi -> - Is CSM Module - Structure.vi -> - Is CSM Module - CaseStructure.vi -> - Is CSM Module - EventStructure.vi -> - Is CSM Module - ParseStateVI.vi - -#### Is CSM Module - VIRef.vi - -通过 VIRef 判断是否是是 CSM 模块 - --- Controls(输入控件) -- -- VIRef: VI引用 - --- Indicators(输出控件) -- -- Is CSM Module?: 否是是 CSM 模块 -- CSM Basic Refs: 如果是 CSM模块,这个簇包含了 CSM 模块的基本元素的引用 -- CSMType:Indicators -#### Is CSM Module - WhileLoop.vi - -通过 While Loop 引用判断是否是 CSM 模块 - --- Controls(输入控件) -- -- WhileLoop: While Loop 引用 - --- Indicators(输出控件) -- -- Is CSM Module?: 否是是 CSM 模块 -- CSM Basic Refs: 如果是 CSM模块,这个簇包含了 CSM 模块的基本元素的引用 -- CSMType:Indicators -- WhileLoop in:Controls -#### Is CSM Module - Structure.vi - -通过 Structure 引用判断是否是 CSM 模块 - --- Controls(输入控件) -- -- Structure: Structure 引用 - --- Indicators(输出控件) -- -- Is CSM Module?: 否是是 CSM 模块 -- CSM Basic Refs: 如果是 CSM模块,这个簇包含了 CSM 模块的基本元素的引用 - -#### Is CSM Module - CaseStructure.vi - -通过 CaseStructure 引用判断是否是 CSM 模块 - --- Controls(输入控件) -- -- CaseStructure: CaseStructure 引用 - --- Indicators(输出控件) -- -- Is CSM Module?: 否是是 CSM 模块 -- CSM Basic Refs: 如果是 CSM模块,这个簇包含了 CSM 模块的基本元素的引用 - -#### Is CSM Module - EventStructure.vi - -通过 EventStructure 引用判断是否是 CSM 模块 - --- Controls(输入控件) -- -- EventStructure: EventStructure 引用 - --- Indicators(输出控件) -- -- Is CSM Module?: 否是是 CSM 模块 -- CSM Basic Refs: 如果是 CSM模块,这个簇包含了 CSM 模块的基本元素的引用 - -#### Is CSM Module - ParseStateVI.vi - -通过 Parse State VI 引用判断是否是 CSM 模块 - --- Controls(输入控件) -- -- Parse State VI Ref: Parse State VI 引用 - --- Indicators(输出控件) -- -- Is CSM Module?: 否是是 CSM 模块 -- CSM Basic Refs: 如果是 CSM模块,这个簇包含了 CSM 模块的基本元素的引用 - -### CSM-Helper API.vi - -### CSM-Helper usecase Template.vit - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- CSM-Helper out: CSMHelper 输出 - -### _Add VI Reference Case.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 -- element: -- Add Frame: - --- Indicators(输出控件) -- -- CSM-Helper out: CSMHelper 输出 -- element:Controls -### Connect Information.vi - --- Controls(输入控件) -- -- Case: -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- CSM-Helper out: CSMHelper 输出 -- Backend Connected Info: -- FrontEnd Connected Info: -- Backend Connected Info:Indicators -- Case:Controls -- FrontEnd Connected Info:Indicators -### Diagram Node Information.vi - --- Controls(输入控件) -- -- InnerTerminal in: -- Array in: -- Front Tunnels: - --- Indicators(输出控件) -- -- Array: -- Array out: -- Array in:Controls -- Array out:Indicators -- Array:Indicators -- InnerTerminal in:Controls -### Get Argument Info From back Term.vi - --- Controls(输入控件) -- -- Terminal in: - --- Indicators(输出控件) -- -- Array: -- Array:Indicators -### Get Argument Info From Front Term.vi - --- Controls(输入控件) -- -- Terminal in: - --- Indicators(输出控件) -- -- Array: -- Array:Indicators -### GObject Terminals.vi - --- Controls(输入控件) -- -- GObject in: - --- Indicators(输出控件) -- -- error in (no error) (dup): -- Class Name: -- Terms[]: -- Node Object: -- tunnel Relative Pos: - -### Relative Pos to InterData Tunnel of CaseContent.vi - --- Controls(输入控件) -- -- element: -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- Position: -- CSM-Helper out: CSMHelper 输出 -- Position:Indicators -- element:Controls -### Resize CaseStructure By Making Space.vi - --- Controls(输入控件) -- -- Bounds: -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- DiffBound: -- MakeSpace.Rect: -- CSM-Helper out: CSMHelper 输出 -- Bounds:Controls -- MakeSpace.Rect:Indicators -### Search With Pattern.vi - --- Controls(输入控件) -- -- regular expression: -- Array: - --- Indicators(输出控件) -- -- Numeric: -- Numeric:Indicators -- Regular Expression:Controls -### sub1.vi - --- Controls(输入控件) -- -- Part References.Parse State Queue: -- regular expression: -- Array: - --- Indicators(输出控件) -- -- Tunnel out: -- Part References.Parse State Queue:Controls -- Tunnel out:Indicators -- regular expression:Controls -### sub2.vi - --- Controls(输入控件) -- -- Part References.Parse State Queue: -- regular expression: -- Array: - --- Indicators(输出控件) -- -- Tunnel out: -- Part References.Parse State Queue:Controls -- Tunnel out:Indicators -- regular expression:Controls -### Refresh References.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- CSM-Helper out: CSMHelper 输出 - -### Get ParentRef Until Type Matched.vi - --- Controls(输入控件) -- -- Class Name: -- reference in: - --- Indicators(输出控件) -- -- Target Ref: - -### Is in JKISM or CSM.vi - --- Controls(输入控件) -- -- reference in: - --- Indicators(输出控件) -- -- is in JKISM or CSM?: -- Is In JKISM Or CSM?:Indicators -### Relationship Check.vi - --- Controls(输入控件) -- -- TestRef: -- reference in: - --- Indicators(输出控件) -- -- Is TestRef: -- Is Child of TestRef: -- Is Child of TestRef:Indicators -- Is TestRef:Indicators -- TestRef:Controls -### Add State Frame.vi - --- Controls(输入控件) -- -- index(-1, use same group): -- element: -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- Add Frame: -- CSM-Helper out: CSMHelper 输出 -- Add Frame:Indicators -- element:Controls -- index(-1, use same group):Controls -### Check NewStateNotify is Registered.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- NewStateNotify Registered: -- CSM-Helper out: CSMHelper 输出 -- NewStateNotify Registed:Indicators -### Connect Error Wire If not Connected.vi - --- Controls(输入控件) -- -- case: -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- CSM-Helper out: CSMHelper 输出 -- case:Controls -### Connect EventReg Wire If not Connected.vi - --- Controls(输入控件) -- -- case: -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- CSM-Helper out: CSMHelper 输出 -- case:Controls -### Connect Internal Data Wire If not Connected.vi - --- Controls(输入控件) -- -- case: -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- CSM-Helper out: CSMHelper 输出 -- case:Controls -### Connect LastResp to Response in Error Case.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- CSM-Helper out: CSMHelper 输出 - -### Connect Paired Tunnels.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- CSM-Helper out: CSMHelper 输出 - -### Connect StateQ Wire If not Connected.vi - --- Controls(输入控件) -- -- case: -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- CSM-Helper out: CSMHelper 输出 -- case:Controls -### Copy State.vi - --- Controls(输入控件) -- -- Already Exist Action: -Replace(T) / Skip(F): -- SourceCSM: -- New(Empty to Use same Name): -- Case: -- CSM-Helper.lvclass: - --- Indicators(输出控件) -- -- CSM-Helper out 2: -- Already Exist Action: -Replace(T) / Skip(F):Controls -- CSM-Helper out 2:Indicators -- CSM-Helper.lvclass:Controls -- New(Empty to Use same Name):Controls -- SourceCSM:Controls -### Create From Basic Refs.vi - --- Controls(输入控件) -- -- CSM Basic Refs: - --- Indicators(输出控件) -- -- CSM-Helper.lvclass: -- CSM-Helper.lvclass:Indicators -### Create From CaseStructure Reference.vi - --- Controls(输入控件) -- -- CaseStructure: - --- Indicators(输出控件) -- -- CSM-Helper.lvclass: -- CSM-Helper.lvclass:Indicators -### Create From EventStructure Reference.vi - --- Controls(输入控件) -- -- CaseStructure: - --- Indicators(输出控件) -- -- CSM-Helper.lvclass: -- CSM-Helper.lvclass:Indicators -### Create From VI Reference.vi - --- Controls(输入控件) -- -- VI: - --- Indicators(输出控件) -- -- CSM-Helper.lvclass: -- CSM-Helper.lvclass:Indicators -### Create From WhileLoop Reference.vi - --- Controls(输入控件) -- -- Structure: - --- Indicators(输出控件) -- -- CSM-Helper.lvclass: -- CSM-Helper.lvclass:Indicators -### Destroy.vi - --- Controls(输入控件) -- -- Save Instruments?(F): -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- CSM-Helper out: CSMHelper 输出 -- Auto Save(T):Controls -- Save Instruments?(F):Controls -### Doc.vi - --- Controls(输入控件) -- -- String 2: -- String: -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- String 4: -- String 3: -- CSM-Helper out: CSMHelper 输出 -- String 2:Controls -- String 3:Indicators -- String 4:Indicators -- String:Controls -### Get All API Interface Info.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- Array: -- CSM-Helper out: CSMHelper 输出 -- Array:Indicators -### Get All Status Interface Info.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- Array 3: -- CSM-Helper out: CSMHelper 输出 -- Array 3:Indicators -### Get CaseFrame Index By CaseName.vi - --- Controls(输入控件) -- -- CASE: -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- index: -- CSM-Helper out: CSMHelper 输出 -- CASE:Controls -- CaseStruRef:Indicators -- index:Indicators -### Get CaseFrame Reference By CaseName.vi - --- Controls(输入控件) -- -- CASE: -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- Frame Refs: -- CSM-Helper out: CSMHelper 输出 -- CASE:Controls -- Frame Refs:Indicators -### Get Event Structure Num.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- EvtStrutNum: -- CSM-Helper out: CSMHelper 输出 -- EvtStruNum:Indicators -### Get Interface Info.vi - --- Controls(输入控件) -- -- CASE: -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- Response: -- Array: -- CSM-Helper out: CSMHelper 输出 -- Array:Indicators -- CASE:Controls -- Response:Indicators -### Get Internal Data Info.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- Array: -- CSM-Helper out: CSMHelper 输出 -- Array:Indicators -### Open Block Diagram.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- CSM-Helper out: CSMHelper 输出 - -### Open Front Panel.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- CSM-Helper out: CSMHelper 输出 - -### Remove State Frame.vi - --- Controls(输入控件) -- -- element: -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- CSM-Helper out: CSMHelper 输出 -- element:Controls -### Save Instrument.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- CSM-Helper out: CSMHelper 输出 - -### Set Error Tunnel Use Default If not Connected.vi - --- Controls(输入控件) -- -- Use Default if not wired: -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- CSM-Helper out: CSMHelper 输出 -- Use Default if Unwired:Controls -### Set Visible Case Frame.vi - --- Controls(输入控件) -- -- element: -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- CSM-Helper out: CSMHelper 输出 -- element:Controls -### Set Wire Label Visible.vi - --- Controls(输入控件) -- -- Connected Wire.Label.Visible: -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- CSM-Helper out: CSMHelper 输出 -- Connected Wire.Label.Visible:Controls -### Start Undo.vi - --- Controls(输入控件) -- -- Name: -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- CSM-Helper out: CSMHelper 输出 -- Name:Controls -### Stop Undo.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- CSM-Helper out: CSMHelper 输出 - -### Undo.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- CSM-Helper out: CSMHelper 输出 - -### Read APIs.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- Value: -- CSM-Helper out: CSMHelper 输出 -- Value:Indicators -### Read Back Tunnel Internal TermRefs.vi - --- Controls(输入控件) -- -- element: -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- Back Tunnels: -- CSM-Helper out: CSMHelper 输出 -- Back Tunnels:Indicators -- element:Controls -### Read Back Tunnels Refs.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- Back Tunnels: -- CSM-Helper out: CSMHelper 输出 -- Back Tunnels:Indicators -### Read Block Diagram Ref.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- Diagram: -- CSM-Helper out: CSMHelper 输出 -- Diagram:Indicators -### Read Case Structure Ref.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- Case Structure: -- CSM-Helper out: CSMHelper 输出 -- Case Structure:Indicators -### Read Event Structure Ref.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- Event Structure: -- CSM-Helper out: CSMHelper 输出 -- Event Structure:Indicators -### Read Front Tunnel Internal TermRefs.vi - --- Controls(输入控件) -- -- case: -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- Front Tunnels: -- CSM-Helper out: CSMHelper 输出 -- Front Tunnels:Indicators -- case:Controls -### Read Front Tunnels Refs.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- Front Tunnels: -- CSM-Helper out: CSMHelper 输出 -- Front Tunnels:Indicators -### Read New State Notifier Event State Ref.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- New State Notifier Event State Ref: -- CSM-Helper out: CSMHelper 输出 -- New State Notifier Event State Ref:Indicators -### Read Paired Tunnels of Case Structure.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- Paired Tunnels: -- CSM-Helper out: CSMHelper 输出 -- Paired Tunnels:Indicators -### Read Parse State Queue Ref.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- Parse State Queue: -- CSM-Helper out: CSMHelper 输出 -- Parse State Queue:Indicators -### Read States.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- Value: -- CSM-Helper out: CSMHelper 输出 -- Value:Indicators -### Read Timeout Event State Ref.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- New State Notifier Event State Ref: -- CSM-Helper out: CSMHelper 输出 -- New State Notifier Event State Ref:Indicators -### Read Type.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- Part References.Type: -- CSM-Helper out: CSMHelper 输出 -- Part References.Type:Indicators -### Read User-Defined States.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- Array: -- CSM-Helper out: CSMHelper 输出 -- Array:Indicators -### Read VI Ref.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- VI: -- CSM-Helper out: CSMHelper 输出 -- VI:Indicators -### Read While Loop Ref.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- While Loop: -- CSM-Helper out: CSMHelper 输出 -- While Loop:Indicators -### Add VI Reference Case.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- CSM-Helper out: CSMHelper 输出 - -### Remove All CSM Bookmarks.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- CSM-Helper out: CSMHelper 输出 - -### standardize CSM Module.vi - --- Controls(输入控件) -- -- CSM-Helper in: CSMHelper 输入 - --- Indicators(输出控件) -- -- CSM-Helper out: CSMHelper 输出 - -### CSM Essential States.vi - --- Indicators(输出控件) -- -- CSM Essential States: -- CSM Essential States:Indicators -### CSM Module Type.vi - --- Controls(输入控件) -- -- CSM Basic Refs: - --- Indicators(输出控件) -- -- CSM Basic Refs (dup): -- CSM Basic Refs (dup):Indicators -- CSMType:Indicators -### CaseStructure - Add Frame.vi - --- Controls(输入控件) -- -- Case Name: -- Reference Frame Index: -- CaseStructure in: - --- Indicators(输出控件) -- -- Add Frame: -- CaseStructure out: - -### CaseStructure - Case Name to Group Name.vi - --- Controls(输入控件) -- -- element: - --- Indicators(输出控件) -- -- String: - -### CaseStructure - Check If State Exist.vi - --- Controls(输入控件) -- -- Group Name: -- CaseStructure in: - --- Indicators(输出控件) -- -- Numeric: -- CaseStructure out: - -### CaseStructure - Get Group Separator Case Index.vi - --- Controls(输入控件) -- -- Group Name: -- CaseStructure in: - --- Indicators(输出控件) -- -- Numeric: -- CaseStructure out: - -### Diagram - Connect Tunnel with Wire 2.vi - --- Controls(输入控件) -- -- Wire Index: -- Front Tunnels: -- Diagram in: - --- Indicators(输出控件) -- -- Array out: -- Diagram out: - -### Diagram - Connect Tunnel with Wire.vi - --- Controls(输入控件) -- -- FrontEnd Connected Info: -- Front Tunnels: -- Diagram in: - --- Indicators(输出控件) -- -- Array out: -- Diagram out: - -### Diagram - Get All Decoration Refs.vi - --- Controls(输入控件) -- -- TopLevelDiagram in: - --- Indicators(输出控件) -- -- TextRefs: -- TopLevelDiagram out: - -### Diagram - Get All Text Refs.vi - --- Controls(输入控件) -- -- TopLevelDiagram in: - --- Indicators(输出控件) -- -- TextRefs: -- TopLevelDiagram out: - -### PairedTunnels - Connect Wire.vi - --- Controls(输入控件) -- -- index(-1 for all): -- PairedTunnels: - --- Indicators(输出控件) -- -- PairedTunnels: - -### Find Event Structure from Case Structure.vi - --- Controls(输入控件) -- -- CaseStructure: - --- Indicators(输出控件) -- -- EvntStruct Refnum: - -### Find Parse State Queue from Case Structure.vi - --- Controls(输入控件) -- -- CaseStructure: - --- Indicators(输出控件) -- -- CaseStructure: -- Parse State Queue: - -### Find Parse State Queue from Event Structure.vi - --- Controls(输入控件) -- -- EvntStruct Refnum: - --- Indicators(输出控件) -- -- CaseStructure: -- Parse State Queue: - -### Find Parse State Queue from While Loop.vi - --- Controls(输入控件) -- -- WhileLoop in: - --- Indicators(输出控件) -- -- CaseStructure: -- Parse State Queue: -- WhileLoop out: - -### Terminals - Filter Control Terms.vi - --- Controls(输入控件) -- -- Terms[]: - --- Indicators(输出控件) -- -- Terms[] out: - -### Terminals - Filter Error Terms.vi - --- Controls(输入控件) -- -- Terms[]: - --- Indicators(输出控件) -- -- Terms[] out: - -### Terminals - Filter Indicator Terms.vi - --- Controls(输入控件) -- -- Terms[]: - --- Indicators(输出控件) -- -- Terms[] out: - -### Terminals - Filter Input Term.vi - --- Controls(输入控件) -- -- InnerTerminal in: -- Wire.Terms[] in: - --- Indicators(输出控件) -- -- Wire.Terms[] out: - -### Terminals - Filter invalid Terms.vi - --- Controls(输入控件) -- -- Terms[]: - --- Indicators(输出控件) -- -- Terms[] out: - -### Terminals - Filter Left-Top Term.vi - --- Controls(输入控件) -- -- Terms[]: - --- Indicators(输出控件) -- -- Terms[] out: - -### Terminals - Left-Top Term.vi - --- Controls(输入控件) -- -- Terms[]: - --- Indicators(输出控件) -- -- Terms[] out: - -### Terminals - Lower Term.vi - --- Controls(输入控件) -- -- Terms[]: - --- Indicators(输出控件) -- -- Terms[] out: - -### Terminals - Upper Term.vi - --- Controls(输入控件) -- -- Terms[]: - --- Indicators(输出控件) -- -- Terms[] out: diff --git a/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/_internal/VI Description(zh-cn) - 12. Debug,Doc,Tools.md b/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/_internal/VI Description(zh-cn) - 12. Debug,Doc,Tools.md deleted file mode 100644 index 6fc166f76..000000000 --- a/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/_internal/VI Description(zh-cn) - 12. Debug,Doc,Tools.md +++ /dev/null @@ -1,113 +0,0 @@ -# CSM API - -## Documentation - -### CSM - Copyright QuickDrop.vi - -### CSM - Documentation QuickDrop.vi - -### CSM - Keywords QuickDrop.vi - -### CSM Dummy Module.vi - --- Controls(ؼ) -- -- Init State("Macro: Initialize"): -- Name("" to use uuid): -- Name ("" to Use UUID):Controls -## CSM Debug Tools - -### CSM - Add VI Reference Case to CSMs.vi - -CSM ģб"VI Reference" ֧ⲿȡVIáڵģвcase˹ - -˹߻ɨ lvproj Ŀ¼е VI VI CSM ģ飬гȻѡ "VI Reference" ֧ - -### CSM - Debug Console - DebugTool.vi - -CSM Կ̨ʹô˹ߣ - -1. ѡе CSM ʵǰ塢塣 -2. ɨе CSM ʵAPIӿڡ -3. ѡһAPIӿڣͬ첽ã鿴ֵ -4. 鿴־ - -### CSM - Remove all CSM Bookmarks.vi - -Ƴ CSM ģеǩ - -### CSM - Running Log - DebugTool.vi - -CSM־ʵʱ鿴ߡ - -### CSM - State Dashboard - DebugTool.vi - -CSMģʵʱ״̬塣 - -### CSM - State Table - DebugTool.vi - -<> CSMģʵʱ״̬ - -### CSM - Switch Language Tool.vi - -л CSM ģ VIע͵ԡĿǰ֧ġӢġ - -### CSM - Fix JKISM Editor RCM Entry.vi - -޸ JKISM State Editor Ҽ˵ CSMвܵ⡣ - -### CSM - Create CSM Palette at Root.vi - -ĿĿ¼ CSM ģĺѡ塣 - -## CSM-DOC - -### csmdoc_import_all_csm_VI_description_doc.vi - -ѡ CSM VI markdown ļ뵽еVI - --- Controls -- -- Path: CSM VI markdown ļ· - -### csmdoc_export_all_csm_VI_description_doc.vi - -CSM VI, VI markdown ļС - --- Controls -- -- Path: CSM VI markdown ļ· - -### csmdoc_export_VI_description.vi - --- Controls -- -- NOTE-Map: -- Path: - --- Indicators -- -- concatenated string: - -### csmdoc_import_doc_to_singleVI.vi - -### csmdoc_import_VI_description.vi - --- Controls -- -- NOTE-Map: -- string: -- Path: - -### csmdoc_list_all_csm_documented_VIs.vi - --- Indicators -- -- Array: - -### csmdoc_load vi description map.vi - --- Controls -- -- Path: - --- Indicators -- -- text: -- variant 2: -- variant: - -## Scripts - -### Script - JKISM to CSM.vi diff --git a/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/_internal/VI Description(zh-cn) - 13. Internal.md b/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/_internal/VI Description(zh-cn) - 13. Internal.md deleted file mode 100644 index a798fbe2e..000000000 --- a/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/_internal/VI Description(zh-cn) - 13. Internal.md +++ /dev/null @@ -1,1141 +0,0 @@ -# CSM API - -## CSM Internal - -### Naming Check.vi - --- Controls(ؼ) -- -- Name("" to use uuid): -Returns any argument(s) that may be used in the current state string. These arguments come after the ">>" characters - --- Indicators(ؼ) -- -- Name(dup): -Returns any argument(s) that may be used in the current state string. These arguments come after the ">>" characters -- Name ("" to Use UUID):Controls -- Name (Dup):Indicators -### Check.vi - --- Controls(ؼ) -- -- BroadcastRegistry in: -- Status: -- Source: -- Target: - --- Indicators(ؼ) -- -- BroadcastRegistry out: -- Response Message Info: -- BroadcastRegistry In:Controls -- BroadcastRegistry Out:Indicators -- Response Message Info:Indicators -- Source:Controls -- Status:Controls -### Delete Source Module.vi - --- Controls(ؼ) -- -- BroadcastRegistry in: -- Source: - --- Indicators(ؼ) -- -- BroadcastRegistry out: -- BroadcastRegistry In:Controls -- BroadcastRegistry Out:Indicators -### Delete Target Module.vi - --- Controls(ؼ) -- -- BroadcastRegistry in: -- Source: - --- Indicators(ؼ) -- -- BroadcastRegistry out: -- BroadcastRegistry In:Controls -- BroadcastRegistry Out:Indicators -### Initialize.vi - --- Controls(ؼ) -- -- BroadcastRegistry in: - --- Indicators(ؼ) -- -- BroadcastRegistry out: -- BroadcastRegistry Out:Indicators -### List Entries.vi - --- Controls(ؼ) -- -- BroadcastRegistry in: - --- Indicators(ؼ) -- -- BroadcastRegistry out: -- Array: -- Array:Indicators -- BroadcastRegistry Out:Indicators -### List Status in Registry.vi - --- Controls(ؼ) -- -- BroadcastRegistry in: - --- Indicators(ؼ) -- -- BroadcastRegistry out: -- Status: -- BroadcastRegistry Out:Indicators -- Status:Indicators -### Register.vi - --- Controls(ؼ) -- -- BroadcastRegistry in: -- status: -- source: -- api: -- target: - --- Indicators(ؼ) -- -- BroadcastRegistry out: -- Api:Controls -- BroadcastRegistry In:Controls -- BroadcastRegistry Out:Indicators -- Source:Controls -- Status:Controls -### Remove Module.vi - --- Controls(ؼ) -- -- BroadcastRegistry in: -- Source: - --- Indicators(ؼ) -- -- BroadcastRegistry out: -- BroadcastRegistry In:Controls -- BroadcastRegistry Out:Indicators -### Unregister.vi - --- Controls(ؼ) -- -- BroadcastRegistry in: -- Status: -- Source: -- api: -- Target: - --- Indicators(ؼ) -- -- BroadcastRegistry out: -- Api:Controls -- BroadcastRegistry In:Controls -- BroadcastRegistry Out:Indicators -- Source:Controls -- Status:Controls -### Broadcast Item Key.vi - --- Controls(ؼ) -- -- status: -- target: -- source: - --- Indicators(ؼ) -- -- key: -- Key:Indicators -- Status:Controls -- Target:Controls -### Preview.vi - --- Controls(ؼ) -- -- BroadcastRegistry in: - --- Indicators(ؼ) -- -- Registry: -- BroadcastRegistry out: -- BroadcastRegistry Out:Indicators -- Registry:Indicators -### Remove response API from List.vi - --- Controls(ؼ) -- -- API: -- output cluster in: - --- Indicators(ؼ) -- -- output cluster out: -- API:Controls -- Output Cluster Out:Indicators -### Concatenate State with Arguments.vi - --- Controls(ؼ) -- -- Arguments: -- State: - --- Indicators(ؼ) -- -- State with Arguments: -- Arguments:Controls -- State With Arguements:Indicators -### CSM-Name to CSM-Mode.vi - --- Controls(ؼ) -- -- String: - --- Indicators(ؼ) -- -- ParentCSM Name: -- CSM Mode: -- Requested Name: -- CSM Mode:Indicators -- ParentCSM Name:Indicators -- Requested Name:Indicators - -### Hex Str to U8 Data.vi - --- Controls(ؼ) -- -- HEX String (0-9,A-F): - --- Indicators(ؼ) -- -- u8 Data[]: -- HEX String (0-9,A-F):Controls -- U8 Data[]:Indicators -### Parse Next Single-line State.vi - --- Controls(ؼ) -- -- States Queue: - --- Indicators(ؼ) -- -- Next Single-line State: -- Remaining States Queue: - -### Remove Comments from Line.vi - --- Controls(ؼ) -- -- single-line text: - --- Indicators(ؼ) -- -- single-line text without comments: - -### Splite Reason String Part.vi - --- Controls(ؼ) -- -- Single-line -& Reason: - --- Indicators(ؼ) -- -- CSM Name: -- `State: -- `Arguments: - -### Splite Single-line Message.vi - --- Controls(ؼ) -- -- single-line text: - --- Indicators(ؼ) -- -- operator: -- state: -- args: -- source/target: - -### Trim Single line Text.vi - --- Controls(ؼ) -- -- single-line text: - --- Indicators(ؼ) -- -- trimmed text: - -### CSM Not Allowed Message.vi - --- Controls(ؼ) -- -- State: -- CSM: -- CSM:Controls -- State:Controls -### Cache-Broadcast Registry Search Result.vi - --- Controls(ؼ) -- -- CSM Name: -- Broadcast state: - --- Indicators(ؼ) -- -- Array: -- Array:Indicators -- CSM Name:Controls -### FGV-BroadcastRegistry.vi - --- Controls(ؼ) -- -- Source: -- Target: -- Status: -- API: -- Operation: - --- Indicators(ؼ) -- -- response message: -- API:Controls -- Response Message:Indicators -- Source:Controls -- Status:Controls -- Target:Controls -### global-Broadcast Cache Change Flag.vi - -ȫֱڱǹ㲥Ƿ仯 - -### global-CSMQ FGV Change Flag.vi - -ȫֱڱ CSM ģϢǷ仯 - -### global-GEvnt Filter Change Flag.vi - -ȫֱڱ Global Event ĹǷ仯 - -### Cache-GEvt Filter Object.vi - --- Indicators(ؼ) -- -- CSM:LogFilter.lvclass: -- CSM:LogFilter.lvclass:Indicators -### FGV-GEvt Filter Obj.vi - --- Controls(ؼ) -- -- Set(T)/Get(F): -- Rules-v1: - --- Indicators(ؼ) -- -- CSM:LogFilter.lvclass: - -### FGV-GlobalEventRef.vi - --- Controls(ؼ) -- -- Create(F): - --- Indicators(ؼ) -- -- CSM Global Log Event: -- Event:Indicators -- Force Destroy?:Controls -- Operation:Controls -- Timeout In ms (5000 ms):Controls -### FGV-StatusChangeEventRef.vi - --- Controls(ؼ) -- -- Name("" to use uuid) in: - --- Indicators(ؼ) -- -- Status Change Event: - -### GEvt-BackgroundThread.vi - -### GEvt-Convert Filter Rules - v1.0.vi - --- Controls(ؼ) -- -- Rules-v1: - --- Indicators(ؼ) -- -- GlobalLogFilter: -- GlobalLogFilter:Indicators -### GEvt-Filter Global Log - v1.0.vi - --- Controls(ؼ) -- -- Rules-v1: -- Cross CSM Data (in): - --- Indicators(ؼ) -- -- Matched? (dup): -- Cross CSM Data: -- Cross CSM Data:Indicators -- Matched Previous?:Controls -- Matched? (Dup):Indicators -- Rules-v1:Controls -### GEvt-Generate Complete Log.vi - --- Controls(ؼ) -- -- CSM Global Log Event: -- event data: -- Enable?: -- CSM:LogFilter.lvclass: - --- Indicators(ؼ) -- -- CSM Global Log Event out: -- CSM Global Log Event Out:Indicators -- CSM Global Log Event:Controls -- CSM:LogFilter.lvclass:Controls -- Event Data:Controls -### GEvt-Generate Interrupt Log.vi - --- Controls(ؼ) -- -- CSM Global Log Event: -- Current State: -- Arguments: -- Name("" to use uuid): -- CSM:LogFilter.lvclass: - --- Indicators(ؼ) -- -- CSM Global Log Event out: -- event data: -- Arguments:Controls -- CSM Global Log Event Out:Indicators -- CSM Global Log Event:Controls -- CSM:LogFilter.lvclass:Controls -- Current State:Controls -- Event Data:Indicators -- Name ("" to Use UUID):Controls -### GEvt-Generate Module Created Log.vi - --- Controls(ؼ) -- -- CSM Global Log Event: -- Name("" to use uuid): -- Created?: -- CSM:LogFilter.lvclass: - --- Indicators(ؼ) -- -- CSM Global Log Event out: -- event data: -- CSM Global Log Event Out:Indicators -- CSM Global Log Event:Controls -- CSM:LogFilter.lvclass:Controls -- Event Data:Indicators -- Name ("" to Use UUID):Controls -### GEvt-Generate Module Destroyed Log.vi - --- Controls(ؼ) -- -- CSM Global Log Event: -- Name("" to use uuid): -- Enable?: -- CSM:LogFilter.lvclass: - --- Indicators(ؼ) -- -- CSM Global Log Event out: -- event data: -- CSM Global Log Event Out:Indicators -- CSM Global Log Event:Controls -- CSM:LogFilter.lvclass:Controls -- Event Data:Indicators -- Name ("" to Use UUID):Controls -### GEvt-Generate Register Log.vi - --- Controls(ؼ) -- -- CSM Global Log Event: -- Current State: -- Arguments: -- Name("" to use uuid): -- CSM:LogFilter.lvclass: - --- Indicators(ؼ) -- -- CSM Global Log Event out: -- event data: -- Arguments:Controls -- CSM Global Log Event Out:Indicators -- CSM Global Log Event:Controls -- CSM:LogFilter.lvclass:Controls -- Current State:Controls -- Event Data:Indicators -- Name ("" to Use UUID):Controls -### GEvt-Generate Remaining States Log.vi - --- Controls(ؼ) -- -- CSM Global Log Event: -- Remaining States: -- Name("" to use uuid): -- Enable?: -- CSM:LogFilter.lvclass: - --- Indicators(ؼ) -- -- CSM Global Log Event out: -- event data: -- CSM Global Log Event Out:Indicators -- CSM Global Log Event:Controls -- CSM:LogFilter.lvclass:Controls -- Event Data:Indicators -- Name ("" to Use UUID):Controls -- Remaining States:Controls -### GEvt-Generate State Change Log.vi - --- Controls(ؼ) -- -- CSM Global Log Event: -- Current State: -- Arguments: -- Source Message.*State: -- Source Message.*Arguments: -- Source Module: -- Name("" to use uuid): -- CSM:LogFilter.lvclass: - --- Indicators(ؼ) -- -- CSM Global Log Event out: -- event data: -- CSM Global Log Event Out:Indicators -- CSM Global Log Event:Controls -- CSM:LogFilter.lvclass:Controls -- Current State:Controls -- Event Data:Indicators -- Name ("" to Use UUID):Controls -- Source Message.*Arguments:Controls -- Source Message.*State:Controls -- Source Module:Controls -### GEvt-Generate Status Log.vi - --- Controls(ؼ) -- -- CSM Global Log Event: -- Current State: -- Arguments: -- Name("" to use uuid): -- CSM:LogFilter.lvclass: - --- Indicators(ؼ) -- -- CSM Global Log Event out: -- event data: -- Arguments:Controls -- CSM Global Log Event Out:Indicators -- CSM Global Log Event:Controls -- CSM:LogFilter.lvclass:Controls -- Current State:Controls -- Event Data:Indicators -- Name ("" to Use UUID):Controls -- Source Module:Controls -### GEvt-Generate Unregister Log.vi - --- Controls(ؼ) -- -- CSM Global Log Event: -- Current State: -- Arguments: -- Name("" to use uuid): -- CSM:LogFilter.lvclass: - --- Indicators(ؼ) -- -- CSM Global Log Event out: -- event data: -- Arguments:Controls -- CSM Global Log Event Out:Indicators -- CSM Global Log Event:Controls -- CSM:LogFilter.lvclass:Controls -- Current State:Controls -- Event Data:Indicators -- Name ("" to Use UUID):Controls -- Remove For Module Exit? (F):Controls -### GEvt-Generate with Rule Check.vi - --- Controls(ؼ) -- -- LogFilter in: -- event data: -- CSM Global Log Event in: - --- Indicators(ؼ) -- -- CSM Global Log Event out: -- CSM Global Log Event Out:Indicators -- Event Data:Controls -- LogFilter In:Controls -### GEvt-Set Source Filter Rules - v1.0.vi - --- Controls(ؼ) -- -- Rules-v1: -- Rules-v1:Controls -### GEvt-ThreadQueueName.vi - --- Indicators(ؼ) -- -- ThreadQueueName: - -### GEvt-WatchdogThread.vi - --- Controls(ؼ) -- -- WatchDogQ: - -### Filter Check.vi - --- Controls(ؼ) -- -- Cross CSM Data in: -- GlobalLogFilter in: - --- Indicators(ؼ) -- -- Matched? (dup): -- Cross CSM Data out: -- GlobalLogFilter.lvclass (dup): - -### List Rules as Strings.vi - --- Controls(ؼ) -- -- GlobalLogFilter in: - --- Indicators(ؼ) -- -- Rule Strings: -- GlobalLogFilter out: -- GlobalLogFilter Out:Indicators -- Rule Strings:Indicators -### CSM Check - LogType.vi - --- Controls(ؼ) -- -- Matched Previous?: -- Cross CSM Data (in): -- GlobalLogFilter.lvclass: - --- Indicators(ؼ) -- -- Matched? (dup): -- Cross CSM Data: -- GlobalLogFilter.lvclass (dup): -- GlobalLogFilter.lvclass (Dup):Indicators -- GlobalLogFilter.lvclass:Controls -- Matched Previous?:Controls -- Matched? (Dup):Indicators -### CSM Check - State.vi - --- Controls(ؼ) -- -- Matched Previous?: -- Cross CSM Data (in): -- GlobalLogFilter.lvclass: - --- Indicators(ؼ) -- -- Matched? (dup): -- Cross CSM Data: -- GlobalLogFilter.lvclass (dup): -- GlobalLogFilter.lvclass (Dup):Indicators -- GlobalLogFilter.lvclass:Controls -- Matched Previous?:Controls -- Matched? (Dup):Indicators -### CSM Check - StateType.vi - --- Controls(ؼ) -- -- Matched Previous?: -- Cross CSM Data (in): -- GlobalLogFilter.lvclass: - --- Indicators(ؼ) -- -- Matched? (dup): -- Cross CSM Data: -- GlobalLogFilter.lvclass (dup): -- GlobalLogFilter.lvclass (Dup):Indicators -- GlobalLogFilter.lvclass:Controls -- Matched Previous?:Controls -- Matched? (Dup):Indicators -### Group Check - CSM.vi - --- Controls(ؼ) -- -- Matched Previous?: -- Cross CSM Data (in): -- GlobalLogFilter.lvclass: - --- Indicators(ؼ) -- -- Matched? (dup): -- Cross CSM Data: -- GlobalLogFilter.lvclass (dup): -- GlobalLogFilter.lvclass (Dup):Indicators -- GlobalLogFilter.lvclass:Controls -- Matched Previous?:Controls -- Matched? (Dup):Indicators -### Group Check - LogType.vi - --- Controls(ؼ) -- -- Matched Previous?: -- Cross CSM Data (in): -- GlobalLogFilter.lvclass: - --- Indicators(ؼ) -- -- Matched? (dup): -- Cross CSM Data: -- GlobalLogFilter.lvclass (dup): -- GlobalLogFilter.lvclass (Dup):Indicators -- GlobalLogFilter.lvclass:Controls -- Matched Previous?:Controls -- Matched? (Dup):Indicators -### Group Check - State.vi - --- Controls(ؼ) -- -- Matched Previous?: -- Cross CSM Data (in): -- GlobalLogFilter.lvclass: - --- Indicators(ؼ) -- -- Matched? (dup): -- Cross CSM Data: -- GlobalLogFilter.lvclass (dup): -- GlobalLogFilter.lvclass (Dup):Indicators -- GlobalLogFilter.lvclass:Controls -- Matched Previous?:Controls -- Matched? (Dup):Indicators -### Group Check - StateType.vi - --- Controls(ؼ) -- -- Matched Previous?: -- Cross CSM Data (in): -- GlobalLogFilter.lvclass: - --- Indicators(ؼ) -- -- Matched? (dup): -- Cross CSM Data: -- GlobalLogFilter.lvclass (dup): -- GlobalLogFilter.lvclass (Dup):Indicators -- GlobalLogFilter.lvclass:Controls -- Matched Previous?:Controls -- Matched? (Dup):Indicators -### Set CSM LogType Filter.vi - --- Controls(ؼ) -- -- LogType: -- GlobalLogFilter in: - --- Indicators(ؼ) -- -- GlobalLogFilter out: -- GlobalLogFilter Out:Indicators -- LogType:Controls -### Set CSM State Filter.vi - --- Controls(ؼ) -- -- CSM:State: -- GlobalLogFilter in: - --- Indicators(ؼ) -- -- GlobalLogFilter out: -- CSM:State:Controls -- GlobalLogFilter Out:Indicators -### Set CSM StateType Filter.vi - --- Controls(ؼ) -- -- LogType: -- GlobalLogFilter in: - --- Indicators(ؼ) -- -- GlobalLogFilter out: -- GlobalLogFilter Out:Indicators -- LogType:Controls -### Set Global CSM Filter.vi - --- Controls(ؼ) -- -- Group:CSM: -- GlobalLogFilter in: - --- Indicators(ؼ) -- -- GlobalLogFilter out: -- GlobalLogFilter Out:Indicators -- Group:CSM:Controls -### Set Global LogType Filter.vi - --- Controls(ؼ) -- -- Group:LogType: -- GlobalLogFilter in: - --- Indicators(ؼ) -- -- GlobalLogFilter out: -- GlobalLogFilter Out:Indicators -- Group:LogType:Controls -### Set Global State Filter.vi - --- Controls(ؼ) -- -- Group:State: -- GlobalLogFilter in: - --- Indicators(ؼ) -- -- GlobalLogFilter out: -- GlobalLogFilter Out:Indicators -- Group:State:Controls -### Set Global StateType Filter.vi - --- Controls(ؼ) -- -- Group:LogType: -- GlobalLogFilter in: - --- Indicators(ؼ) -- -- GlobalLogFilter out: -- GlobalLogFilter Out:Indicators -- Group:LogType:Controls -### Log State Type.vi - --- Controls(ؼ) -- -- Complete(T)/Start(F): -- Source Module: -- State: - --- Indicators(ؼ) -- -- CSM_GlobalLog_STATE_TYPE: -- CSM_GlobalLog_STATE_TYPE:Indicators -- Complete? (T)/Start(F):Controls -- Source Module:Controls -- State:Controls -### Parse Register Message.vi - --- Controls(ؼ) -- -- state: -- Module Name : -- args: - --- Indicators(ؼ) -- -- target: -- source: -- status: -- api: -- Api:Indicators -- Module Name :Controls -- Source:Indicators -- State:Controls -- Status:Indicators -- Target Specified?:Indicators -- Target:Indicators -### Parse State with Arguments String.vi - --- Controls(ؼ) -- -- State with Arguments: -The State string that requires the argument. - --- Indicators(ؼ) -- -- State: -- Arguments: -- Target Module: -- Message Symbol: -- Arguments:Indicators -- Message Symbol:Indicators -- State:Indicators -- Target Module:Indicators -### Parse Unregister Message.vi - --- Controls(ؼ) -- -- state: -- Module Name : -- args: - --- Indicators(ؼ) -- -- target: -- source: -- status: -- api: -- Api:Indicators -- Module Name :Controls -- Source:Indicators -- State:Controls -- Status:Indicators -- Target Specified?:Indicators -- Target:Indicators -### Dequeue Element.vi - --- Controls(ؼ) -- -- timeout in ms (-1): -- Priority Queue: - --- Indicators(ؼ) -- -- timed out?: -- Cross JKI State Machine State: -- Priority Queue(dup): -- High Priority?: -- Cross JKI State Machine State:Indicators -- High Priority?:Indicators -- Priority Queue (Dup):Indicators -- Timed Out?:Indicators -- Timeout In ms (-1):Controls -### Enqueue Element.vi - --- Controls(ؼ) -- -- High Priority?(F): -- timeout in ms (-1): -- Cross JKI State Machine State: -- Priority Queue: - --- Indicators(ؼ) -- -- Priority Queue(dup): -- Cross JKI State Machine State:Controls -- High Priority? (F):Controls -- Priority Queue (Dup):Indicators -- Timeout In ms (-1):Controls -### Get Queue Status.vi - --- Controls(ؼ) -- -- Priority Queue in: - --- Indicators(ؼ) -- -- # pending insert: -- # pending remove: -- Priority Queue out: -- # elements in queue: -- # Elements In Queue:Indicators -- # Pending Insert:Indicators -- # Pending Remove:Indicators -### Not a Refnum.vi - --- Controls(ؼ) -- -- Priority Queue.lvclass: - --- Indicators(ؼ) -- -- NaN/Path/Refnum?: -- NaN/Path/Refnum?:Indicators -- Priority Queue.lvclass:Controls -### Obtain Priority Queue.vi - --- Controls(ؼ) -- -- create if not found? (T): -- name: - --- Indicators(ؼ) -- -- created new?: -- Priority Queue: -- Create If Not Found? (T):Controls -- Created New?:Indicators -- Priority Queue:Indicators -### Release Priority Queue.vi - --- Controls(ؼ) -- -- force destroy? (F): -- Priority Queue: -- Force Destroy? (F):Controls -- Priority Queue:Controls -### CSMP-Async Call.vi - --- Controls(ؼ) -- -- state: -- args: -- source/target: -- Module Name: -- Msg Type: - --- Indicators(ؼ) -- -- state out: -- args out: -- source/target out: -- Pre-State out: -- Pre-Args out: -- error: - -- Error:Indicators -- Module Name:Controls -- Pre-Args Out:Indicators -- Pre-State Out:Indicators -- Source/target Out:Indicators -- Source/target:Controls -- State Out:Indicators -- State:Controls -### CSMP-Broadcast.vi - --- Controls(ؼ) -- -- state: -- args: -- source/target: -- Module Name: -- Msg Type: - --- Indicators(ؼ) -- -- state out: -- args out: -- source/target out: -- Pre-State out: -- Pre-Args out: -- error: -- Error:Indicators -- Module Name:Controls -- Pre-Args Out:Indicators -- Pre-State Out:Indicators -- Response For Message.Error:Controls -- Source/target Out:Indicators -- Source/target:Controls -- State Out:Indicators -- State:Controls -### CSMP-PostPostMsg.vi - --- Controls(ؼ) -- -- state: -- args: -- source/target: -- Pre-State in: -- Pre-Args in: -- session error: -- Module Name: -- Response Arguments: - --- Indicators(ؼ) -- -- state out: -- args out: -- source/target out: -- Pre-State out: -- Pre-Args out: -- error: -- Error:Indicators -- Module Name:Controls -- Pre-Args In:Controls -- Pre-Args Out:Indicators -- Pre-State In:Controls -- Pre-State Out:Indicators -- Session Error:Controls -- Source/target Out:Indicators -- Source/target:Controls -- State Out:Indicators -- State:Controls -### CSMP-PostSendMsg.vi - --- Controls(ؼ) -- -- state: -- args: -- source/target: -- session error: -- Module Name: -- Response Arguments: - --- Indicators(ؼ) -- -- state out: -- args out: -- source/target out: -- error: -- Error:Indicators -- Module Name:Controls -- Session Error:Controls -- Source/target Out:Indicators -- Source/target:Controls -- State Out:Indicators -- State:Controls -### CSMP-Register Status.vi - --- Controls(ؼ) -- -- state: -- args: -- source/target: -- Module Name: - --- Indicators(ؼ) -- -- state out: -- args out: -- source/target out: -- Pre-State out: -- Pre-Args out: -- error: -- CSMQ In:Controls -- CSMQ Out:Indicators -- Error:Indicators -- Pre-Args Out:Indicators -- Pre-State Out:Indicators -- Source/target Out:Indicators -- Source/target:Controls -- State Out:Indicators -- State:Controls -### CSMP-Sync Call.vi - --- Controls(ؼ) -- -- state: -- args: -- source/target: -- Response Timeout(-2 using Global Settings): ͬõijʱʱ䣬ĬΪ-2ʹȫáͨ"CSM - Set TMO of Sync-Reply.vi" ȫֳʱʱ䡣 -- Module Name: - --- Indicators(ؼ) -- -- state out: -- args out: -- source/target out: -- Pre-State out: -- Pre-Args out: -- error: -- Error:Indicators -- Pre-Args Out:Indicators -- Pre-State Out:Indicators -- Response Timeout (-2 Using Global Settings):Controls -- Source/target Out:Indicators -- Source/target:Controls -- State Out:Indicators -- State:Controls -### CSMP-Unregister Status.vi - --- Controls(ؼ) -- -- state: -- args: -- source/target: -- Module Name: - --- Indicators(ؼ) -- -- state out: -- args out: -- source/target out: -- Pre-State out: -- Pre-Args out: -- error: -- CSMQ In:Controls -- CSMQ Out:Indicators -- Error:Indicators -- Pre-Args Out:Indicators -- Pre-State Out:Indicators -- Source/target Out:Indicators -- Source/target:Controls -- State Out:Indicators -- State:Controls -### Auto Resize All MultiListbox Columns (Uniform Text).vi - --- Controls(ؼ) -- -- IgnoreCols(Empty as default): -- Array: -- Control in: -- Array:Controls -- Control In:Controls -- IngoreCols (Empty As Default):Controls -### Dashboard Cell Resize.vi - --- Controls(ؼ) -- -- Cluster: -- Cluster Size:Height: -- Cluster Size:Width: -- ClusterRef: - --- Indicators(ؼ) -- -- Bounds:Area Height: -- Bounds:Area Width: -- Bounds:Area Height:Indicators -- Bounds:Area Width:Indicators -- Cluster Size:Height:Controls -- Cluster Size:Width:Controls -### Dashboard Cell2 Array Resize.vi - --- Controls(ؼ) -- -- Num Columns: -- Cluster: -- Num Rows: -- area height: -- area width: -- Array 2: -- Area Height:Controls -- Area Width:Controls -- Array 2:Controls -- Cluster:Controls -- Num Columns:Controls -- Num Rows:Controls -### Open CSM BD.vi - --- Controls(ؼ) -- -- Current Module("" to generate a ID): -- CSM: - -### Open CSM FP.vi - --- Controls(ؼ) -- -- Current Module("" to generate a ID): -- CSM: - -### Select Greater_nevstop.vi - --- Controls(ؼ) -- -- A: -- B: - --- Indicators(ؼ) -- -- lesser: -- A:Controls -- Lesser:Indicators -### Append Application Directory If Relative.vi - --- Controls(ؼ) -- -- Relative path (.): - --- Indicators(ؼ) -- -- Application Directory (+ Relative): - -### Convert File Extension (Path)__ogtk.vi - --- Controls(ؼ) -- -- new ending (none): -- file name: - --- Indicators(ؼ) -- -- prev ending: -- new filename: -- New Ending (None):Controls -- New Filename:Indicators -- Prev Ending:Indicators -### Convert File Extension (String)__ogtk.vi - --- Controls(ؼ) -- -- new ending (none): -- file name: - --- Indicators(ؼ) -- -- prev ending: -- new filename: -- New Ending (None):Controls -- New Filename:Indicators -- Prev Ending:Indicators -### Parse VI Documentation String.vi - --- Controls -- -- NOTE-Map: -- Documentation: - --- Indicators -- -- Ctrl-Doc Map: -- Control Docs: -- Core Doc: -- Documentation (dup): - -### Gevt-ThreadQueueName.vi - --- Indicators -- -- ThreadQueueName: diff --git a/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/_internal/VI Description(zh-cn) - 14. Internal2.md b/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/_internal/VI Description(zh-cn) - 14. Internal2.md deleted file mode 100644 index 1be04f9da..000000000 --- a/src/help/NEVSTOP/Communicable State Machine(CSM)/VI Description/_internal/VI Description(zh-cn) - 14. Internal2.md +++ /dev/null @@ -1,56 +0,0 @@ -# ڲʹõһЩVIͻɼ - -## Build Error Cluster.vi - -һ(error cluster)Ա׼ LabVIEW ķʽӵ VI ĵйԴַԴַʽΪ -"õ VI VI ĵ-> VI ĵߵĵ->ȵ...->ȵ..." -ѡ 'String to Prepend to source ("")' ַԴַӶϢַӵԴַ֮ǰ - --- Controls(ؼ) -- -- code: -- String to Prepend to source (""): Ϣַ - -## Build Internal State String.vi - - JKI ״̬״̬Ϣַ - --- Controls(ؼ) -- -- State: ״ַ̬ -- Arguments (""): StateIJ -- Arg-State (""): ʹϢģڷʹϢʱڵ״̬ -- Source (""): ʹϢģ - --- Indicators(ؼ) -- -- CSM Message String: ƴɵ CSM Ϣַ -- >> Response Source Message >>:Controls -- State With Arguments:Indicators - -### Trim Both Whitespace.vi - -ͷβͬʱƳ ASCII հַ(ոƱسͻ) - --- Controls(ؼ) -- -- string: ַ - --- Indicators(ؼ) -- -- trimmed string: ַ - -### Replace Tag with Array.vi - -VIάʹCSM - Replace Mark with String Array.vi - -> - Ref: CSM - Replace Mark with String Array.vi - -### CSM - Forward States to CSM.vi - -> - Ref: CSM - Forward UI Operations to CSM.vi - - -## CSM - Check Status Registration.vi - -> - Ref: CSM - Check Mapping Relationship in Broadcast Registry.vi - - -## CSM - List Status in Broadcast Registry.vi - -> - Ref: CSM - List Sources in Broadcast Registry.vi \ No newline at end of file diff --git a/src/project/Communicable State Machine(CSM)/Open CSM_Tool_Launcher.vi b/src/project/Communicable State Machine(CSM)/Open CSM_Tool_Launcher.vi index 2ab42898a..f44d92d8d 100644 Binary files a/src/project/Communicable State Machine(CSM)/Open CSM_Tool_Launcher.vi and b/src/project/Communicable State Machine(CSM)/Open CSM_Tool_Launcher.vi differ diff --git a/src/templates/Communicable State Machine(CSM)/CSM DQMH-Style Template.vi b/src/templates/Communicable State Machine(CSM)/CSM DQMH-Style Template.vi index 462f8226d..f4420df28 100644 Binary files a/src/templates/Communicable State Machine(CSM)/CSM DQMH-Style Template.vi and b/src/templates/Communicable State Machine(CSM)/CSM DQMH-Style Template.vi differ diff --git a/src/templates/Communicable State Machine(CSM)/CSM Module Template - Tiny.vi b/src/templates/Communicable State Machine(CSM)/CSM Module Template - Tiny.vi index 58ce40d34..e221a363f 100644 Binary files a/src/templates/Communicable State Machine(CSM)/CSM Module Template - Tiny.vi and b/src/templates/Communicable State Machine(CSM)/CSM Module Template - Tiny.vi differ diff --git a/src/templates/Communicable State Machine(CSM)/CSM User Interface(UI) Module Template - Tiny.vi b/src/templates/Communicable State Machine(CSM)/CSM User Interface(UI) Module Template - Tiny.vi index 845c920ee..eb7ebb601 100644 Binary files a/src/templates/Communicable State Machine(CSM)/CSM User Interface(UI) Module Template - Tiny.vi and b/src/templates/Communicable State Machine(CSM)/CSM User Interface(UI) Module Template - Tiny.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/CSM Module Template.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/CSM Module Template.vi index 4d1672f87..10c3efd0c 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/CSM Module Template.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/CSM Module Template.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/CSM User Interface(UI) Module Template.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/CSM User Interface(UI) Module Template.vi index 91cb6c928..66a57d9b9 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/CSM User Interface(UI) Module Template.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/CSM User Interface(UI) Module Template.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_Support/GlobalEvent/LogFilter/LogFilter.lvclass b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_Support/GlobalEvent/LogFilter/LogFilter.lvclass index b93c5bf83..b12c9f739 100644 --- a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_Support/GlobalEvent/LogFilter/LogFilter.lvclass +++ b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_Support/GlobalEvent/LogFilter/LogFilter.lvclass @@ -18,10 +18,10 @@ &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!6'0%.M>8.U:8)_$1I]4G&N:4Z1:7Y],UZB<75_$1I]4H6N27RU=TYY0#^/>7V&<(2T0AU+0&5T-DY.#DR/97VF0E:P=G6H=G^V<G1A1W^M<X)],UZB<75_$1I]6G&M0D9X-T9Z/4A],V:B<$Y.#DQP64-S0AU+0&5T-DY.#DR/97VF0E*B9WNH=G^V<G1A1W^M<X)],UZB<75_$1I]6G&M0D%W.T=X-D%V0#^797Q_$1I],V5T-DY.#DR$<(6T>'6S0AU+0%ZB<75_2GFM<#"1982U:8*O0#^/97VF0AU+0%ZV<56M>(-_/$QP4H6N27RU=TY.#DR6/$Y.#DR/97VF0F*P>S!Q0#^/97VF0AU+0&:B<$YR.T!],V:B<$Y.#DQP64A_$1I]64A_$1I]4G&N:4Z3<X=A-4QP4G&N:4Y.#DR797Q_/$5],V:B<$Y.#DQP64A_$1I]64A_$1I]4G&N:4Z3<X=A-DQP4G&N:4Y.#DR797Q_-4=Q0#^797Q_$1I],V5Y0AU+0&5Y0AU+0%ZB<75_5G^X)$-],UZB<75_$1I]6G&M0DAV0#^797Q_$1I],V5Y0AU+0&5Y0AU+0%ZB<75_5G^X)$1],UZB<75_$1I]6G&M0D%X-$QP6G&M0AU+0#^6/$Y.#DR6/$Y.#DR/97VF0F*P>S!V0#^/97VF0AU+0&:B<$YY.4QP6G&M0AU+0#^6/$Y.#DR6/$Y.#DR/97VF0F*P>S!W0#^/97VF0AU+0&:B<$YR.T!],V:B<$Y.#DQP64A_$1I]64A_$1I]4G&N:4Z3<X=A.TQP4G&N:4Y.#DR797Q_/$5],V:B<$Y.#DQP64A_$1I],U.M>8.U:8)_$1I]34%W0AU+0%ZB<75_6WFE>'A],UZB<75_$1I]6G&M0D%],V:B<$Y.#DQP34%W0AU+0%680AU+0%ZB<75_47^E:4QP4G&N:4Y.#DR$;'^J9W5_1W^Q?4QP1WBP;7.F0AU+0%.I<WFD:4Z0=DQP1WBP;7.F0AU+0%.I<WFD:4Z&?'.M>8.J>G5A4X)],U.I<WFD:4Y.#DR$;'^J9W5_1GFU)%.M:7&S0#^$;'^J9W5_$1I]1WBP;7.F0EZP>#"$<X"Z0#^$;'^J9W5_$1I]1WBP;7.F0EZP>#"0=DQP1WBP;7.F0AU+0%.I<WFD:4Z/<X)A28BD<(6T;8:F)%^S0#^$;'^J9W5_$1I]1WBP;7.F0EZP>#"#;81A1WRF98)],U.I<WFD:4Y.#DR797Q_-$QP6G&M0AU+0#^&6TY.#DR&4$Y.#DR/97VF0F.U?7RF0#^/97VF0AU+0%.I<WFD:4Z4<WRJ:$QP1WBP;7.F0AU+0%.I<WFD:4Z%98.I0#^$;'^J9W5_$1I]1WBP;7.F0E2P>$QP1WBP;7.F0AU+0%.I<WFD:4Z%98.I)%2P>$QP1WBP;7.F0AU+0%.I<WFD:4Z%98.I)%2P>#"%<X1],U.I<WFD:4Y.#DR797Q_-$QP6G&M0AU+0#^&4$Y.#DR&4$Y.#DR/97VF0E:J<'QA5H6M:4QP4G&N:4Y.#DR$;'^J9W5_28:F<C"0:'1],U.I<WFD:4Y.#DR$;'^J9W5_6WFO:'FO:TQP1WBP;7.F0AU+0&:B<$YQ0#^797Q_$1I],U6-0AU+0%6-0AU+0%ZB<75_27ZE)%.B=(-],UZB<75_$1I]1WBP;7.F0E2F:G&V<(1],U.I<WFD:4Y.#DR$;'^J9W5_2GRB>$QP1WBP;7.F0AU+0&:B<$YQ0#^797Q_$1I],U6-0AU+0#^$<(6T>'6S0AU+!!!!!! true &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!6+0%.M>8.U:8)_$1I]4G&N:4Z1:7Y],UZB<75_$1I]4H6N27RU=TYY0#^/>7V&<(2T0AU+0&5T-DY.#DR/97VF0E:P=G6H=G^V<G1A1W^M<X)],UZB<75_$1I]6G&M0D9X-T9Z/4A],V:B<$Y.#DQP64-S0AU+0&5T-DY.#DR/97VF0E*B9WNH=G^V<G1A1W^M<X)],UZB<75_$1I]6G&M0D%W.T=X-D%V0#^797Q_$1I],V5T-DY.#DR$<(6T>'6S0AU+0%ZB<75_2GFM<#"1982U:8*O0#^/97VF0AU+0%ZV<56M>(-_/$QP4H6N27RU=TY.#DR6/$Y.#DR/97VF0F*P>S!Q0#^/97VF0AU+0&:B<$YS.45],V:B<$Y.#DQP64A_$1I]64A_$1I]4G&N:4Z3<X=A-4QP4G&N:4Y.#DR797Q_-D5V0#^797Q_$1I],V5Y0AU+0&5Y0AU+0%ZB<75_5G^X)$)],UZB<75_$1I]6G&M0D)V.4QP6G&M0AU+0#^6/$Y.#DR6/$Y.#DR/97VF0F*P>S!T0#^/97VF0AU+0&:B<$YS.45],V:B<$Y.#DQP64A_$1I]64A_$1I]4G&N:4Z3<X=A.$QP4G&N:4Y.#DR797Q_-D5V0#^797Q_$1I],V5Y0AU+0&5Y0AU+0%ZB<75_5G^X)$5],UZB<75_$1I]6G&M0D)V.4QP6G&M0AU+0#^6/$Y.#DR6/$Y.#DR/97VF0F*P>S!W0#^/97VF0AU+0&:B<$YS.45],V:B<$Y.#DQP64A_$1I]64A_$1I]4G&N:4Z3<X=A.TQP4G&N:4Y.#DR797Q_-D5V0#^797Q_$1I],V5Y0AU+0#^$<(6T>'6S0AU+0%ER.DY.#DR/97VF0F>J:(2I0#^/97VF0AU+0&:B<$YT0#^797Q_$1I],UER.DY.#DR&6TY.#DR/97VF0EVP:'5],UZB<75_$1I]1WBP;7.F0E.P=(E],U.I<WFD:4Y.#DR$;'^J9W5_4X)],U.I<WFD:4Y.#DR$;'^J9W5_28BD<(6T;8:F)%^S0#^$;'^J9W5_$1I]1WBP;7.F0E*J>#"$<'6B=DQP1WBP;7.F0AU+0%.I<WFD:4Z/<X1A1W^Q?4QP1WBP;7.F0AU+0%.I<WFD:4Z/<X1A4X)],U.I<WFD:4Y.#DR$;'^J9W5_4G^S)%6Y9WRV=WFW:3"0=DQP1WBP;7.F0AU+0%.I<WFD:4Z/<X1A1GFU)%.M:7&S0#^$;'^J9W5_$1I]6G&M0D!],V:B<$Y.#DQP26=_$1I]25Q_$1I]4G&N:4Z4>(FM:4QP4G&N:4Y.#DR$;'^J9W5_5W^M;71],U.I<WFD:4Y.#DR$;'^J9W5_2'&T;$QP1WBP;7.F0AU+0%.I<WFD:4Z%<X1],U.I<WFD:4Y.#DR$;'^J9W5_2'&T;#"%<X1],U.I<WFD:4Y.#DR$;'^J9W5_2'&T;#"%<X1A2'^U0#^$;'^J9W5_$1I]6G&M0D!],V:B<$Y.#DQP25Q_$1I]25Q_$1I]4G&N:4Z';7RM)&*V<'5],UZB<75_$1I]1WBP;7.F0E6W:7YA4W2E0#^$;'^J9W5_$1I]1WBP;7.F0F>J<G2J<G=],U.I<WFD:4Y.#DR797Q_-$QP6G&M0AU+0#^&4$Y.#DR&4$Y.#DR/97VF0E6O:#"$98"T0#^/97VF0AU+0%.I<WFD:4Z%:7:B>7RU0#^$;'^J9W5_$1I]1WBP;7.F0E:M981],U.I<WFD:4Y.#DR797Q_-$QP6G&M0AU+0#^&4$Y.#DQP1WRV=X2F=DY.#A!!!!! - &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!%9_5F.31QU+!!.-6E.$4%*76Q!!1;Q!!!33!!!!)!!!19Q!!!!X!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9B&-<W>';7RU:8)O<(:D<'&T=Q!!!!#A&Q#!!!!Q!!!I!!1!!!!!"!!$!$Q!P!!@1)!#!!!!!!%!!1!'`````Q!!!!!!!!!!!!!!!%D\H&E8_1F/B4GA?MT)-$M!!!!-!!!!%!!!!!!4W%WQE!FR2+`KSS."W,F(V"W-W9]!MA4JA!G9\0B#@A!!%!!!!!!!6DB)"?-CM%G,V+U($)I5#Q%!!!$`````V"W-W9]!MA4JA!G9\0B#@A!!!""FQ&M3:-=+HSI\4*,###`+!!!!"!!!!!!!!!%J!!&-6E.$!!!!!Q!#6EF-1A!!!!"16%AQ!!!!"1!"!!%!!!!!!A!#6EF$1Q!!!!!"'V^$5UV@2WRP9G&M4'^H8UV42V^576"&,G.U<&"53$!!!!!M!!%!"A!!!!!(6(FQ:72F:BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!!!!$!!(`!!!!!1@J!!I!!!!!!!!!!!!!!!!!!!!!!!!!!!!#6EF$1Q!!!!!!!!%>8U.446^(<'^C97R-<W>@5V2"6%6@6&F123ZD>'R16%AQ!!!!,A!"!!9!!!!!"V2Z='6E:79>8U.446^(<'^C97R-<W>@5V2"6%6@6&F123ZD>'Q!!!!$!!,`!!!!!1@J!!I!!!!!!!!!!!!!!!!!!!!!!!!!!!!$!!!!!!!!!A!$!!!!!!!I!!!!)HC=9_"E9'VAO-!!R)Q-4!V=1";4!A/9:PD!Q-!BQ!!!B!E(E!!!!"5!!!!O?*RD%'8A9_!A%D)!!"0Z!-1!!!!!!!">!!!";XC=9W$!"0_"!%AR-D!Q_Q&J.D2R-!VD5R0A-B?886"R:C"G!7*7@'9T/E!:^B^1*=1:'C$;M<*A.D%Q-/U"UEQAK[$7/E+EG(G!QC@1L?/(UA_1R!$0>CN/!!!!!!!!$!!"6EF%5Q!!!!!!!Q!!!>=!!!2%?*T<Q-D!E'FM9=<!R-$!$'3,-T1Q*/?HJ0)S!0E-%+!$9V!!!K$G;;'*'RYYH!9%?PTS,7"_]RO?<B=6A?9;&1GG5J&O(R724B]6FEY7F2>``P``XXS%ZX#X2]ZR2RO1WGY/I0BR&R5/%!>)MY$I`Y%:)&7IZMFU!G7"N!33"LC"+09(!&6R.&1I-Z3Q'"[)/HS]Q912YF#9%[+QO:>Y]ZP@=!!^*8$Q)5NXIQ;1XTM22!+&?$J$/#3/OX$IC!(ZD#>!"H<SQ(T.!@>0'-C!%B7"4B/123S--)O[W9Y\;)$$Q5%%1G6!K!I)61#C>I">=)1D\D!]`.?_PL?,&5CT)=7*!R!XA"B-K&C0A:'"%=RE:&A,67M$:$."R7"R#W)L1)..!UG0#V3-E=%?,H9<LA=B6IXE$C;Q?E;'0QQQP5$\I/9U1.U.%P-&CBW!ME/!\!F1>D31`1(+4A+S";$M4#$<A"(#TI/SQ:9RY+;>`6V=E9)*H#^A7;-3C*.T#QQ-^0TUKKOLIQVVAG.VA'2KO)WBE2W9#2=QM9ONV1%JK1['SN?#J9$=9$A,L+Y7J."**]U&C'K"4)3ZQ3#:-"UAL+WN">J>"L+`),FM)#Q(!%4^UUE!!!!%^1!!#?RYH*W78UAD2RT(*]E;6QS/C&KP#&[,$W?*EL23TL-=]8I,U<J?3C\?A\5NX"GOU0^6[*X%C[Q$4K=,04$U29Y_WI?#@6"+M:#I4<1(23U&C[(EQ7MD]5(OQ@L1;O=XO]GO9B5;T?38H@H.@,\@XW2H!QCB>V[[`0*8-E)O"U,0I$C[`='>)72\X;R!``G+U#@B7`XDOQU]FSES6@;9[K(K,F8S6.WG3I[K79:)=BAT(X.4::-K;VJ;+N2EF$8)TSC<]/&0UD3L)+P$&VA(QRUJOB1LI_IG@;RFJ*96HF/I+)\=)FNDPCBOGB$L-T@$N,>:IF*T`O_DIS0NQ)(*N_5)]53_TGNE[U'7+7MEC;?3G$TC(5T.[6U3*>O(2U?=DSF:,3F2*=O[*<Y_:HZ74S0,.,*A9CY9G-NC]1X`0J.,G/PU&]"=.D"`YDG&_O,)L5)F<AJQ$+?7>H+-M;IIKYJW9ETK/54B4\+"JV,$-JZ0\61#61*Y^"[*KDG4J[@)5U867;L/G$QT"M_M7'76`CT=P=!OM`+/&@K9]SCT>!FY5DQ(<*MNW>93`?*5P]<>R`V3:]CK]/N^.V1VJQ="CU7SWK*%)VE7E%2":?;ASD26JL35)*MSS+;.APJ871X:Y'1V\%J(BK9Z77S;(P)J7AZY$C19)`=,Z>KC5UMZ_]A_O.12\<S#S6[:=-GIWR^FQ*(81^5UEG@KNJ;KBNU6G;4K"!N5=ZI;9XP&+@E56('L[D)C.*DC*N/_W'3.^EU7,WYS-2Q-CZ=-OUPHXO58[1^X?8O;>1$8$8!%RI&0/A2-BQ4^>9EG))BSR[+>8:)9`GQ:G/X7UGYQ_R%4SZI[$S81/3H]HG4K"$>7+!3`[Y2#=A>YS"OGS);-#)6)U86-:V.*JURVE6C5#EE&DSU&V)\1O:"1WXO'WA&!*+'CWJ"1WVN5+T)$%P]NH:<<*)&U75P,)0UB%RCG>.@ZUI.#?M#3(CB*$ZYJ07C8(D#F"_X3?;(<B84@'>,@>I(U^K,U>C(>6Z4O/VFIP_N%I1/7WDK93MXL82Z_IW32<@VD$RX:JM1,%(/8?"O`\U%YM2C`"R]`4O\YVHW`$F@SWY7WZ^DZT9G1(H21(=<L`1[;A*3HO$LAY%W@)YL<6E@>P%X?PRD&F^;?YM6V&-6D;VI/_F+9@-FHQ*]^B(G[:'.>`2I0T(G[:.\US/@0=U0-U_W%YOXJI69;Y1@!LJ:KB4-AU1RS^)P1*BJ&X#!W3+N6V&J26)^66%_JK,7FIJK(Q\'CVNK,[D',7GMP[AOHXOSG(->P>C,8,-M9H'+EM6DB2F&B1)<>;,,<.C13\!?(*89)$8:U*DOSMU-3M+0TW?%%0-9/O3<\)JS'""T81\*B0207[R`*>-[IQ3[=?80Z1^!BMW\:PI#9:O1")T")S)?![4";<(!D\?2PWUA,`K]U0,`S(8==9366K$"`:@0*]76YG(DTL9("*93_+@T_0>^=S'&\ZADQ^`/I!@&(&A2^HZP8)6ZQ70&@4CN_YL,CZS1LTNHCL^V70&2OR*`QF6XGN83ZV@_0,7[8,3ZYP8LDOG,$&=^0A(70PW_`^[(0V^<8.DI[/O$XBA?^P"W[^9L`R;MC,&VIPTI9]]+1U<$:(R.>`'OY&)FR-2BYT2O^TP^D0,4G$5.0PZ@`R7)RPP;`T#5V_Q!!!!!!"/!!!!R!?*SVFF^I7V59Q%_3W`2WT5C%T"5JO)@T:DL7/9I<MG8L&<)2.#6BC[\>"GW$DMJ3C+03:>V-ALX?J"O9BY!2+JP1BQK#?SCCG'KV5Y2*+3ASJ!^\'(1065:RIV#`\XTH`GF.MC&YW`2]ZZTP\_^]04>BRNB<,\\5MW=(9RY89\P:&4:Y97C9/:\:>N<QC:][?@8"(D!UCHQ@$(K2>_)MTQ`A,-]\;$&)MQ$.@$245</\M*\:<@358F6AA_(+MXK:+S#M\FT-#Q'@\C6$,@SIX]EIRE(DS-((G7/FINA%K\^BPU3$(O5_8?0KIM96$]Q8&9\7^T=W.T=,.8`B4V5E*S+$PUS,U:;<R]A<I'618!D`%';&J=P$I)IJJ@<[H]_,.!S-I/A+&R\V(QLL`M,(Z"-6=T6&*]EAFVO=I^=4FP?*,]R%#%CJ4Y%^H_6&<"V8M"K-#25&X&C2*H3Q-M7MD0,9J>K_DK)(H]MKVO&S6(%3@]!E]45GC;_R*M2R%[TO%@&\4U&]IL5"]@M%28AM]R5C0ACKG&)TXFXE%>7I,&%$/>TC?E8S8PF`?(`K&<[#QF=!@!7*>U#Y$*DN8O:XG7DXXT#LU9#4`C]G`774`H)T_MN%`T<2P\W.PFK(PMML5B+BN^$`G2!N%`U&1=A`>9-*>5QL^5U\*FWDE&]V/)N07A1$V++?KZ%(V#`&%$"++?#;SDXSJ@S^>V*[2*%B=D7P4J*"#?8GP8:K#`,U:'\8,E"1MZ3C9%IH?.@K!Q+]J<VPG9$H4-"TT1$05<7T"(BW'_$W/I#HF1;!0[=KZADQD!1]1XBO55@=J($4$?"KZ"OV3B(U?:.KH\9;86C'F8_<NCF7H&R.V5ES++P=P'LH.S-JSQ3PJ@Y,Z9J*O7J3LD;D8+7SLR0F[^MI\[R$_:#H!?5S];Q3TS)75@.067GV)NL9ATO4&$,@A04P<F(OJ.8'E_1B<\6RXGZDR>('&;O.+U3M<,6RG1!8*?#CMYXFL8(5"Y;/7[-5]Y%G3E;@$[Y+Y^WA]8L("]=\*S/>?L*$(QPK[9!?]RHUFCXV>9'[@.^WC&OHSXTFFPE6,&HDF`1%(Y-R9YRWQ:E^1W=7Z3.Q9!G?8NU"T..VD[KH&/6JU"S#=?B*VXQ&M]!IDO/*]D=.#!&BTM(6XAP<)`8A$Z$J#,98KI#:<8XO"*F0@#_]2`E9^C/52.I:[E3LKK3IKF^5V>_QKH\1D-%9?V*6X\*[636AK2`-II8;Z3-A*_N6^4[:*CH0*'3?-+U40)J62566?8&1J:AKDQQ5,_&`;&3=8!2'T1CLW`W`]Q,YDO#N%/52-.()NV<H-MDY^,7L#`A>\=T:U^]^F2G5LN67@Y*M0FP^YUOYYJH]&C;?-(T/QQK_<`!._6COIXT?<=PL(FO/N^DSF%0_WGP,BV2<$L32`$<%==OV^VTW`F]S4J(N9[USPRMS$Z2XO7XZ1Y]N0V2M_1WP,7_UWP+3T#-$-Y_-FW[T9X`EE*?EH!4>6LEWY_$RH).(R=(DE7,,:RU-8!Y'PUIZ,0XVPK;^QBQ0@C`(@#`#:T!^?((P_0DY[?Z1@#!%@Y>0P>S^`\!1L95$BQ?S)61:D]P^L.C#;>S3B&Y7&9_&5BL]:E'U`=:RZW1)@L,:,'0`!,5,?0-!!!!-&Q#!"1!!"$%X,D!!!!!!$"=!A!!!!!1R.SYQ!!!!!!Q8!)!&!!!%-4=O-!!!!!!-&Q#!!!!!"$%X,D!!!!!!$"=!A!5!!!1R.SYQ!!!!!"1"!!!!^6=VAHEGIIQO=V*/"EEZH1!!!!U!!!!!!!!!!!!!!!!!!!!!!!!!A0``````````_+YC0`OP<N`ZLW9`_[^OX`OD9N```````````Y!!!!'!!!!"A!0!!9!0]!'!0`Q"A0``!9$``Q'!``]"A0``!9$``Q'!``]"A0``!9$``Q'!``]"A0``!9$``_'!@``ZA"``Y9!(`]'!!@]"A!!]!9!!!!(`````!!!#!.X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X1!.$1X>!!U!$1!.X>X>X>U.X1U.X>$>$>U.U.X>X>X>!.U.$>X1X1$>!!X>X>X>X1X>$1X>U.U.X1X1X>X>X>U.X1U!$>$>!!U.U.X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>!!!!!!!!!!!!!!!!!!!!X1!!!!!!!!$>!!!!!!!!!.U!!!!!!!$@``U!!!!!!!$>!!!!!!$@`>X@`1!!!!!!X1!!!!$@`>X>X>`^!!!!!.U!!!!0`>X>X>X>X`!!!!$>!!!!$`X>X>X>X>`Q!!!!X1!!!!```>X>X>``]!!!!.U!!!!0```^X>````!!!!$>!!!!$``````````Q!!!!X1!!!!``````````]!!!!.U!!!!0``````````!!!!$>!!!!$``````````Q!!!!X1!!!!``````````]!!!!.U!!!!0``````````!!!!$>!!!!$````````````Q!!X1!!!!$`````````````!.U!!!!!!0``````````!!$>!!!!!!!!```^````]!!!X1!!!!!!!!$^````]!!!!.U!!!!!!!!!!!``]!!!!!$>!!!!!!!!!!!!!!!!!!!!X>X>X>X>X>X>X>X>X>X>X>!!!%!(N\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?`L[_PL[_PL[_PL[_PL[_PL[_PL[_PL[_PL[_PL[_HN\_PL[_A!!!0I!_A$[_PI!!!$[!!!!_A!!!0L[_PL[?XP[_PL[!0L[_A$[!0L[_PI!_PI!_PL[!0L[!0L[_PJ\?`L[_PI!!0L[!0I!_PL[_A$[_A!!_PI!!!$[_PL[_HN\_PL[_A$[_PI!_A$[_PL[!0L[!0L[_A$[_A$[_PL[?XP[_PL[!0L[_A$[!!!!_PI!_PI!!!$[!0L[!0L[_PJ\?`L[_PL[_PL[_PL[_PL[_PL[_PL[_PL[_PL[_PL[_HN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XM!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"\?Q!!!!!!!!!!!!!!!!!!6F9!!!!!!!!!!!!!!!!!!(N\!!!!!!!!!!!!!!!!6PT]`0R7!!!!!!!!!!!!!!!!?XM!!!!!!!!!!!!!6PT]_PL[_PT]6A!!!!!!!!!!!!"\?Q!!!!!!!!!!6PT]_PL[_PL[_PL]`&9!!!!!!!!!!(N\!!!!!!!!!0T]_PL[_PL[_PL[_PL[`0Q!!!!!!!!!?XM!!!!!!!!!`0T[_PL[_PL[_PL[_PL_`!!!!!!!!!"\?Q!!!!!!!!$]`0T]_PL[_PL[_PL_`P\]!!!!!!!!!(N\!!!!!!!!!0T]`0T]`0L[_PL_`P\_`PQ!!!!!!!!!?XM!!!!!!!!!`0T]`0T]`0T]`P\_`P\_`!!!!!!!!!"\?Q!!!!!!!!$]`0T]`0T]`0\_`P\_`P\]!!!!!!!!!(N\!!!!!!!!!0T]`0T]`0T]`P\_`P\_`PQ!!!!!!!!!?XM!!!!!!!!!`0T]`0T]`0T_`P\_`P\_`!!!!!!!!!"\?Q!!!!!!!!$]`0T]`0T]`0\_`P\_`P\]!!!!!!!!!(N\!!!!!!!!!0T]`0T]`0T]`P\_`P\_`PQ!!!!!!!!!?XM!!!!!!!!!`0T]`0T]`0T_`P\_`P\]`+SML!!!!!"\?Q!!!!!!!!!!`0T]`0T]`0\_`P\]`0SML+SML+Q!!(N\!!!!!!!!!!!!!0T]`0T]`P\]`0SML+SML+Q!!!!!?XM!!!!!!!!!!!!!!!$]`0T]`0KML+SML+SM!!!!!!"\?Q!!!!!!!!!!!!!!!!!!`0KML+SML+SM!!!!!!!!!(N\!!!!!!!!!!!!!!!!!!!!!!#ML+SM!!!!!!!!!!!!?XM!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XM!!!!#!!-!!!!!!9=!!5:13&!!!!!#!!*52%.$!!!!!2N@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'R16%AQ!!!!,!!"!!9!!!!!"V2Z='6E:79<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!!!!!Q!!`Q!!!!%([1!+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!#!!!"LQ!!!OV16%AQ!!!!+A!"!!9!!!!!!#"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9A!#6%2$1Q!!!!!"(6^$5UV@2WRP9G&M4'^H8V.5162&8V2:5%5O9X2M5&2)-!!!!#Y!!1!'!!!!!!>5?8"F:'6G(6^$5UV@2WRP9G&M4'^H8V.5162&8V2:5%5O9X2M!!!!!Q!!`Q!!!!%([1!+!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!#!!!'-!!!!E:16%AQ!!!!+A!"!!9!!!!!!#"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9A!$!!!!&'Y!!('K?*TF81NY&&770L?[/X1H)81#)928/K%4#"))Y35+#K92?5-#K)Q,"LIB9%QQ#3DL+KQ<G7&H(9%2H((5A8%2>:VF>JH(\IQ@CQ\A)TO#\+=O$QXS=BTEM4I]"N/J087LK[NOV[WKJJ+/P>`',`5VH4JV<ZX\X`/@`^3N+]"$,XN\#7XQ?"C)^T*_G"['V'!T!>B8YI<)4^&[]-YDXQ$JE5P#--%^TXN-;#.^QZ!?<#ZSFQ9WQ#5]7TQB<H:O*4`R@I;HJHBT]7+J9?D7V!T0:E\VNXD^O`L[.\C5SX;(0/^4J%WYRZ^XV@V55RWW#%W$J'.G#7E$%MBX/JM+:F@6BJL]UL??%H=OP;9H$.Z!=^>[@]N!P#+W`2;^*,HGX#&YF%M#8H)1\.[^7T8+F)W+;$>O2BPH$A$HL]EV%ZOM1(/`"H`,%'K43GWQH6]L\14SWHYI^6USCD8N(GDWICH;02+Z:=F7M1N0I(9H4ZZ%/TR'\+L$U-0@=I=\V`V:]+CL[ZSGXQ!"UH1)RO&Y,(+X@3A_E9*XGDF4'ARKE98D58A,]6<CZ]IQ$'ZK&OY(JT1;<>DCR[3?DI:4'9VR>$4OJ+0B#7TQADI=/SS')_$=6^#PP':61W/IXF?XV,?EJKKBQ<?S@PHKKM;1,VD67+5@K0'"ZNQREB/ERCB))!?=TA^*L><J>@$SSS_D(`#IGN['JDH_FKB>>\S>)XA\CO/$KO/F6F5(XIY/$&S<OURS9O%NAI*>A7,XK(2U@;1CO!Q2H/G.\2S$Y&%*10"I".<DM1B?Y>R$(D6"YRD:3)0A0?C5AW3&C=X.;,/71@!?</?AUIY:AM@K%<R(;3O+Y+V<NT*W/!#X2"(M*%2"M.AKNEI)`FB]T@5V?9=C7+!7F4A?%GK^%GK&^\#6H]/@'>3[DBODNCA/V,L+KZ:5[Q@"^9E?H<HA*#VQS1K>LE^DU*G.QX=+OWW&4F=,/K@Q8CB=!#J'(3R'.^,DE#B'83=:D#J>V',5><LD-?I[Q]%I@%E/1.A9<[[TM2D&]Y&]$&_;W(Q?CV'U_2*NQJ99>@V2BV(*VB+DLC_CQW#%V.:@CPP&_]B!"KEQ*)L5]";RN?UQ0-@'V\]R2GJ`]Y(QJ9#%VG""??5-@<RYD!`6M>C_63"^H!06]@#C>3">SY'K5Y'K1Q)J+;"1,:'/QCAVK$[B!_T9C+/C1<5J!5(V32ZANR)@\$1*E/NVA07BAY<$6B/<\_I![].WBCPNG!86\_E"[V0;-AOK'SQ"+QY4DU%,`)Y#VE(NXM*2Q6R/2G&`M25?B]U-8I8RRHC^WQ+P4J#D;XJF)S9!=^?M$-WI7BET+.D#<>D#ONQS@UM;EQ3EQ%*Y2GHB#OMNO97G@&AXUNHEF\\2D,*QOR\0=,][8&?ZHK]/#R-U=%[`)-0:6<4?%4HD,=3RYCNR$`KK@YSP9*/RLW[V]*51]:7<_ILH*^D=Q8[#(^LT%TT$]6/+VE_E)/KHB9C^04&_)I/-`41\4D_F4K^<:I1I5NT"HC+$\8G+X-4R6"@K+=^-4@2Q(TOQSBVWC^?EXYAV5MF'F5L3R><Q&PAD#\?NRGYMDIN+^B7E4+[J7VR6IY_5TX,J"*\%0FD2S9]YTNKA5KYRH@S91S>O.P/ZC2\`7373ZW/*B(;2):)8%U!E0_52S7GIA=MGJ,!NFEDQ@)$(Y,3*T@:9)E'<UWBTW:J)@K9D%MH7GEB?MC;3-_,<]&X34Z0Z6/#I9(M5APUQ.F<##4I+(G55@ME(;T%/QZ1YQ/K5MH1;'W-'9X99@B6M4M]N#\4EX?(@V>_`9;2U:3_?-R3HA>1(&TXR2"B_AXVISE7*H[K">2@)B.Z1K0B&T+2_O8\^/PI&DSK:3=("+7"QQ']^*5W.B5.,FU9[E2['@U059]2RU#P\C(4F$/R$8]D!K\XRRBNY.4RGZME?)WU/X\Y]?6!S]"1@036@/HI,)A/\W&UA86Z`KD2G_>+20>74J`<GX_8?#,1XJ>(!E''`.UPC\]U3JD?)R.^C<R\72!1(>%8S,,;/#,`42I4F=E4Q&+U8V%PPQ5P@\7`JDT=;G>L3S*@#%$:-=;<(@Q3;01WRF9=3+%0AMF$AB,C^U?HP5;:`$BR3<75IRT4Y:H4[?S,4PU$<(N@GL?DU^U3G@Q(<TG7DW`M^/G9?5RUJBN(K^$@W_4[NT[NFH[=C:^%#UJQQP#V.]VC0-1(X85X!6;;[?*Z#JN!SYC)H64<7,[^>&D00U],Q(N\3,@[7<P*6X6,\+2DQMS!6\_4)U?0IAF8LNV&1/S7E3P>Z^2U:N@4TWZL0"T3@^WPACOUUS_WMFNP:+\5D9$MZN"VMI50;14`^*S^.=>+7>JG()RK+H%II5A@^$T(5+`XUA>X7A`[_>N$X&TYKS//?*O5KF58LY/SGL'SJIOD0B>4ML*\+RZZ:/=L(H-D&E!BOCB#"_$E31<^9)CAX*I,*=2%"4Q!D#Q1E&KC0AQ8ON-U#ZAQQ/;E9Y+[E9I!J>BFAKFSLD=4_>#<W4\->_[?X)`<0N"0\:^G)`<.NR`YZ>G0`1\+X)V'`KS<KVVN'`=9%2@V6H24V6X>3V(_YQ[0_)X;D`BJZO.6YHX&$]>Z-Q_L`*JZ$^9#`KLY^'N7XYE5!Y4WSAN7X*E8^ADDVL;NC65WI1;`@/)8^((!+(Z/FFP)WNL$@(<N_4(XK9?RN8G'`'V-NB@/U:LK#6EP6]D[=D(U%24P+T,Y%F0?"6^YHCY7^J-&%M/L+_]*?>.!(:,'*D;[]DWUM2JM';Z'L,_^,NN9CV[3]$Y)M=K?+LTB7E.^KKK76/#J2T*)L9KPQ%CRHS[6FQ?9=0G4PCB/S;<.$^=PLAMO84+_,D9;?M$##8Z>Z&@NB!6RB*+=O]X.YU"+YQGA/=,U-=)5K?JR+D`/DQ"8'[KITLU9=JA"8O&6S7)@C6BD(+][%9#/M.M;A-&&8H.G)6NMB:'*TB[YYMR(<W;[U9Y*<I6R@H.GIN'7#7S&A7:Q*(R1`<^M*DWNQ/QM(+*+4BY_+L7U:=$-\#%OE1:B-"S&<2;U,2W&9H089F%GV69NL9A=D03Q%Z4RU0LVS.XLF0"A!A[%-<T!IYO7EIX]D5:F6T3`4I"PGF`WH3<580%<TSR8[6&1_6<JAPH3U0L8^6^7EWU))-]K?`J:M"?O^U8P$9%RU%0&I=)`:[!F?OLV=XRPZ6(W[<8BK_[_KP=?F=OSZ6T/5UGW/B(&;D"P=:G^UBI_?F3]>I[U%^"XCHCJ.Q0D/P0',;G^SG8S4^WBO5AK5-4>*\Z#Q,?4B+<T/6$..Y"SOVM44#I]=4T-RHKZ@+)V&6.%+]Y0.+6Y"?^!W$C@N#KCCE\;,-GHPY6*.'E\;5*R5EV&?(6LSA-QXARK+9S<PC<"Q<\$:+=X?6#:0[I;T>\S.?OG!2=N50S^!0Y^G^7E7NNY@UKXU;4K?%K=_F5_VUK@9G_^IN<P=GQ*;/\$>'YZW._I.K^X4QM*^D/4:KXI^7S>Z8)L-O&;K3IZLQT3@BWI_FWBES1?-1B@_3J@7JO(N4\4/$B:KU:QGITE,>@I"HVO]2/]<$O3\VSI@#[*L"F7A4YU#01/"0AY7M5#@TN="%N+8R)PUO>8VI9<KOJLAI!($?%C@19N#C9([T+3#_KSEAPLM<Q(K=_R#P9)$^?\R1:WDB]_)V[4@K"YG+[,;!D",)V@)1P;R?5VCFA[2"`F,BXJB_R;;AN2SFA\V6@78I3N*(5>4^'#8$DV'DW^39@R!6&/1?NX3I6Y22SHJ,'HM?$&-6P(%]!)1S10'!I'MVIE+%;W]:)'*T=-[53'3"7DTA+7I))`I297IN'5C+MA;3V(2>EB]$7;18WB%217/CF,IXY;H83<TW5,`^\HZS1A=B<IY295HOH")6_YHX4E0@;7I7AIDG()`O5@+9<D6`G(NK0;4"=F5\3=,E[H;4_\H6PN(7%?&+M\TXGRNT:]%>46`;>$,9,26T:_%^$8`8"A$=R#W6D6`MF2@]]]FEV2<8PW?`,7OZD^"WR\8ZF&>T8]#WYZ2T:`])K<GHYUT<:Y[_9V^@J<TP,?H5PF(6PJ45T/*M*,C,Y;6PK,">C:<^T_(E;=.2M5ZT\N%&H0JI_[@^>1EF=J(ED[7V01.JSJ_-]GT>EALBZJSG'6)1KJU4#F635FE3%HJ)F.D)2V03I,!)[5=+#7$4+J7$BUJF?*F*Z)=%ROHDJ2+M:W*3DNGF3[8HJ2+F<<-+FUJVMO1BIN.YBJ3K&G'&-22]4@\*!C/B7*R'2SHA_#)$%*+G41)2#+FQ+[]K;S7G"$(5SI$J.Y>>F1AT9!4_7CKAI)MGF8P:L3-9SZPNFT!^AHUC'OW_!N!JVY=][B[G;K1H(R8(PA6UN(_G/BW_0$B/%GO;^AR(W-GUEK[:PKZ-$PPJ8N3R<NK^%H6PK%603G4_UJ]5WI<1`7V645__E5PZ?N*DU3_HB&K;+B;&P)K@[A).;SMKWV1PSCP?X"F4;AR&/5_RX<MZ'A^^[6`+`,+]40::6JZZ;6Z1?@,+U`9]2,W2BM%#3+NL_\2)"U^*AA[`F%<"%.S%/S&4&TEA[*]M;A!-M`B(9$HH$JB=T1G8;@**LE9.]]_(4FH$A:/*7-=+_Y8FU>7:E2$:,J^A3-9#BQ5G6XVDZ$\9)A?W-'0E)5-`30E('RH3!=`1B;[]2YBZ^+7\L@V#&HQ=JY.F5,17B*H]B=/^4:9Z#R79/T'XRN?6%4?6*!T$;_QD=RCN!<ZP;(7K)QT"T&98%LW=:96=88'A=4ID,?43G?]EV1[YVW\/O-^DM\IQ_C-0^D7'?]<[9R:VDLD)%^HX+<;=D8$)1/>97<T!5>H-/U9[IT$8*V2;?XT`_,ID,Y;H@&2L-[9R?K-`U[ETDBCJ$.[7/K-IVS>U=P;)==Y/K-@IT0)&`4YN;IT0O8ID"ZM]?N%!IJ@H`&UBB@T_(S41N:*!ZXB.<%ZR>%:8L4*NSZ_H?<J$+^V]?O-N=Z9,TYJPM_]\D!(2U5BJ"_AU(A$0G2(Y<*R+O.L$S/FB=E6@49D=8^B"W=TZ+I_G]H'>A:X=$:$LP(@VJ*;?M67.E0_IF_CB5LM>?MJ?:W@T@288W\$A@]C/P#9Q_[*S7(*O=4EM/4,TMFBS@H/S7(*B9\/9=F&GTEMO=1@^4SD((9HRI7>>H,9RS,);<O#6ZA75S]H;QVTW/LW]2NGM?PCT7+@3%Q7_X>*F=5W*657_[4>,(9^*YPV-6HM"NN:\._XIVL_@4P6]H_Q53V`SH;V`!>WK_60=\,9@%U7O^GC7PZ-)L09,@;LZ6PN6MO@Z73R"7Q7OY-?>[F:\(/7V8,S@!+SW">M6-P*CT>?,3=`N6UN*^PM6=P*>OMM^JD9"!.CKO6E6[2;@AK+-=KTV8,S,QGLFD_&./-&SWLZUQGJFG^-5,6]5\$:H>M2Z@)N\HE.I8I@?E`?/M.88FV6OSS5)PVD69/(VN$L6[VM>&?%FCW8>NN+H6><(`HIG62@8U>N-W<5"6@6I(&^#+]2^%<_'1AV..<8L1E&OUZM7&/\2+GY^ZB:6V)27OFDPESPV0R$L8'@UC^I5KL3XU,&`<2_1>/X7(%`%R.)Y[[YH_65X!?96NT*PX)K\H[WYEZW+'LFF,C@<AT"B.G>#6)LLX337HGVE^4+;RWO6P\*LFJZH;^7#IX53KP]8XN?[^)N690T]F)V:6`(5W)L()7PW.?X,NL@HE3QWJ\E%P@^,@A;_W#2[=$`=)I$6_'+^@N<8X%SH3)FUX(3(#?0(MPJ%?D#N=8K7VS89^`CINVFXO+[GI#XO+\RXI;Z!->".(ED[S_[L/=Y7JW(#S9WVX6:TX&MZ\T3DNF<8.`IMZ\D3FNG<X'V7G=^"]8^**=5U[T('2(CM&D:KG1T!L=:`M1O8+OTP8$.;<VQ$2[.=_';E*U1+3\U4#9J,P2/*CEO^,%JR97_(#E_5#P&B4S\5FTQ];8Y+)3NF218]DF3()[INDR:,24IJ,B@WR\8:I"/CPP:>ISEO/$H30'R[O1X^HE22YI05K2Y-#T=+5O<K,/UUE;Y+[IM..)G)CX;*WWW3!O"''E$>(L&3*NH%S*N@J1A;@0D`QM,A:[4/ZEEMO1H3<51[(G\#Y&?Y-C39P/&1(-ZMG3Q,%NOO'2?LNVXIB$:_L[9`74)*/0^:"<'-:&-*P0M-,ETTEVFS&W*W63'4%EGNC:4EYGNS43<G]K1[2SWPIEJH-_SO\5-G=X@7G:%(&P,E$H]L76'G'U41SJU<$V!WR\8JF,(VA09>AQ,ZX-Z7]O-C7.L'4+0Q^:$.'R^0M,7CL-9NLY9V56[NHY^$L<O76YZ9Z'M*8'K,ZJ2/8H2X(NH4^+4^Q?[OC38P,FL5>J.XE=32.Z(`\`5*9]F66XS?&,6*4_R7Z@]F*-!F*D8*<`$31#'WEQ!]D1*A(A2%Y"#W-1G!0GW.Z1TX%S/$)C8^QM4R0N&3=8\!Z/+^Y@9Z@U3$O]09XC`V$<P$T@;5G[4.?_8]8D`<V6<,I?0-.B3TMRG*'>,/;9>1^Y@R>V3<IOVTU>T?,^5X6C/D.6P,,?*@5:R;W)WFC0D/G>D/4+_=T;7)^R^^/7.Z7Q_IYD>3&`[[200-YI*`'=5Q_VM*UJ!CZ$\E!%WQR'7!14<?UO<\3N.(0'3A#N"**#36#41*;F)Q'W8"$Q=%CBD3#$>.AFU.3+")^9EE-%DA8>67WZ!\W:!!G9W8AY*-/U9EE!GFQ1_M@:Z&I=%2GB))&NZ(K.YCS'!(*\;EAGAP7OJ?X53"_2W%A@U.O9!GWOJ_X!Z))[VV(XZ($#SH6O-KM_CT<99V@].)D`O3H^!0,$A)4$Z)2-C(W[`R0YB"^<2P[.$J?-.@7@7+?]E^.H;-'1(SL-/?K?A!^,>5^S4P#])<93%I;@\"@@F@2^&``_*_[:(,:M/E7//\`G@SX0X_F],=36M!!!!!!!%!!!#&1!!!!1!!!!!!!!!$!!"1E2)5!!!!!!!!Q!!!')!!!"S?*RD9'$)%Z"A_M>1^Z?"3?!LE#(^FY&:U)`R.Q-$JZ`!93$.+#!*&*<^S]!OK!U7VD[CS]%!";JMD"S3()=&/=!S(#U;$0```_@Y?O1;8-52(TB4::9]BQ1!&'):!!!!!!!!"!!!!!=!!"">!!!!"Q!!!#&@<GF@4'&T>%NO<X>O4X>O;7ZH4&:$<'&T=U.M>8.U:8)!!!3[&Q#!!!!!!!%!#!!Q`````Q!"!!!!!!3?!!!!(Q!11$$`````"F.U=GFO:Q!!%%"!!!(`````!!!$1V..!0Y!]1!!!!!!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC'V^$5UV@2WRP9G&M4'^H8UV42V^576"&,G.U<!#Z1"9!$!B6=W6S)%RP:QR4>'&U:3"$;'&O:W5'5X2B>(6T#5FO>'6S=H6Q>!B3:7>J=X2F=AJ6<H*F:WFT>'6S#56S=G^S)%RP:QZ.<W2V<'5A1X*F982F:"".<W2V<'5A2'6T>(*P?76E$&.Z<G-A476T=W&H:1V"=XFO9S".:8.T97>F&%ZP,6*F=#""=XFO9S".:8.T97>F!!!71V..8U>M<W*B<%RP:V^.5U>@6&F121!!&%"!!!(`````!!)(4'^H6(FQ:1!/1$$`````"6.U982F!"*!1!!"`````Q!%"6.U982F!+Q!]1!!!!!!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC(6^$5UV@2WRP9G&M4'^H8V.5162&8V2:5%5O9X2M!'6!&A!%&F.U982F)#UA37ZU:8*O97QA5X2B>'595X2B>'5A,3"&?(2F=GZB<#".:8.T97>F%&.U982F)#UA5G6T='^O=W515X2B>'5A,3"$<WVQ<'6U:1!(4'^H6(FQ:1!71%!!!@````]!"AF4>'&U:62Z='5!&E"1!!1!!1!$!!5!"Q:(<'^C97Q!!!R!-0````]$1V..!/Y!]1!!!!!!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC'V^$5UV@2WRP9G&M4'^H8UV42V^576"&,G.U<!#J1"9!$!B6=W6S)%RP:QR4>'&U:3"$;'&O:W5'5X2B>(6T#5FO>'6S=H6Q>!B3:7>J=X2F=AJ6<H*F:WFT>'6S#56S=G^S)%RP:QZ.<W2V<'5A1X*F982F:"".<W2V<'5A2'6T>(*P?76E$&.Z<G-A476T=W&H:1V"=XFO9S".:8.T97>F&%ZP,6*F=#""=XFO9S".:8.T97>F!!!(4'^H6(FQ:1!31&!!!A!*!!I(4'^H6(FQ:1!51%!!!@````]!#Q>-<W>5?8"F!"*!5!!#!!E!"!>-<W>5?8"F!"*!1!!"`````Q!."6.U982F!"*!5!!#!!E!"A>-<W>5?8"F!":!1!!"`````Q!0#6.U982F6(FQ:1!11&!!!Q!-!!Y!%!.$5UU!$%!B"E6O97*M:1!!&5!+!!Z5;(*F=WBP<'1I)S^T+1!!&5!+!!Z$;'6D;V"F=GFP:#BT+1!!'%"1!!-!%A!4!"1,5'6S;7^E;7.-<W=!%E"1!!-!#!!2!"5&5H6M:8-!%E"!!!(`````!!!&5X2B>'5!%E"1!!)!!1!8"E>M<W*B<!!!%%"4#ERP:V2Z='6.98!!!!Z!5QB4>'&U:5VB=!!!%E"4$&.U982F6(FQ:5VB=!!!%%"1!!-!'1!;!"M$1V..!""!5!!#!"A!(!6$97.I:1!=1&!!!A!7!"U24'^H2GFM>'6S,GRW9WRB=X-!!1!?!!!!!!!!!"J-6E.M98.T5(*J>G&U:52B>'&597*0=G2F=A!!!(U8!)!!!!!!!A!&!!=!!!Q!1!!"`````Q!!!!%!!1!!!"9!!!!!!!!!!1!!!!)!!!!$!!!!"!!!!!5!!!!'!!!!"Q!!!!A!!!!*!!!!#A!!!!M!!!!-!!!!$1!!!!Y!!!!0!!!!%!!!!"%!!!!3!!!!%Q!!!"1!!!!6!!!!!!!!!"N-6E.M98.T5(*J>G&U:52B>'&5;7VF=X2B<8!!!!!:&Q#!!!!!!!%!"1!(!!!"!!$F8R(Q!!!!!!!!!#:-6E.M98.T5(*J>G&U:52B>'&-98.U18"Q<'FF:&2J<76T>'&N=!!!!"E8!)!!!!!!!1!&!!=!!!%!!/6@%@!!!!!!!!!!'ER71WRB=X.1=GFW982F2'&U962Z='6%:8.D!!!%OB=!A!!!!!!"!!A!-0````]!!1!!!!!%HA!!!"]!%%!Q`````Q:4>(*J<G=!!""!1!!"`````Q!!!U.441$_!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!O5!7!!Q)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!V"=XFO9S".:8.T97>F&%ZP,6*F=#""=XFO9S".:8.T97>F$&.Z<G-A476T=W&H:1!!&E.446^(<'^C97R-<W>@46.(8V2:5%5!!"2!1!!"`````Q!#"URP:V2Z='5!$E!Q`````Q64>'&U:1!31%!!!@````]!"!64>'&U:1#M!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BV@1V..8U>M<W*B<%RP:V^46%&526^576"&,G.U<!"F1"9!"":4>'&U:3!N)%FO>'6S<G&M)&.U982F'&.U982F)#UA28BU:8*O97QA476T=W&H:2"4>'&U:3!N)&*F=X"P<H.F%&.U982F)#UA1W^N='RF>'5!"URP:V2Z='5!&E"!!!(`````!!9*5X2B>'65?8"F!":!5!!%!!%!!Q!&!!='2WRP9G&M!!!-1$$`````!U.441$O!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!K5!7!!Q)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!V"=XFO9S".:8.T97>F&%ZP,6*F=#""=XFO9S".:8.T97>F$&.Z<G-A476T=W&H:1!!"URP:V2Z='5!%E"1!!)!#1!+"URP:V2Z='5!&%"!!!(`````!!M(4'^H6(FQ:1!31&!!!A!*!!1(4'^H6(FQ:1!31%!!!@````]!$164>'&U:1!31&!!!A!*!!9(4'^H6(FQ:1!71%!!!@````]!$QF4>'&U:62Z='5!%%"1!!-!$!!/!"!$1V..!!R!)1:&<G&C<'5!!"6!#A!/6'BS:8.I<WRE+#-P=SE!!"6!#A!/1WBF9WN1:8*J<W1I=SE!!"B!5!!$!")!%Q!5#V"F=GFP:'FD4'^H!"*!5!!$!!A!%1!6"6*V<'6T!"*!1!!"`````Q!!"6.U982F!"*!5!!#!!%!&Q:(<'^C97Q!!""!5QJ-<W>5?8"F47&Q!!!/1&-)5X2B>'6.98!!!"*!5QR4>'&U:62Z='6.98!!!""!5!!$!"E!'A!<!U.441!11&!!!A!9!"Q&1W&D;'5!(%"1!!)!&A!>%5RP:U:J<(2F=CZM>G.M98.T!!%!(A!!!!!!!!!?4&:$<'&T=V"S;8:B>'6%982B2':M>%2B>'&4;8JF!!!!'2=!A!!!!!!"!!5!!Q!!!1!!!!!!11!!!!!!!!!;4&:$<'&T=V"S;8:B>'6%982B2':M>%2B>'%!!!58&Q#!!!!!!"]!%%!Q`````Q:4>(*J<G=!!""!1!!"`````Q!!!U.441$_!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!O5!7!!Q)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!V"=XFO9S".:8.T97>F&%ZP,6*F=#""=XFO9S".:8.T97>F$&.Z<G-A476T=W&H:1!!&E.446^(<'^C97R-<W>@46.(8V2:5%5!!"2!1!!"`````Q!#"URP:V2Z='5!$E!Q`````Q64>'&U:1!31%!!!@````]!"!64>'&U:1#M!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BV@1V..8U>M<W*B<%RP:V^46%&526^576"&,G.U<!"F1"9!"":4>'&U:3!N)%FO>'6S<G&M)&.U982F'&.U982F)#UA28BU:8*O97QA476T=W&H:2"4>'&U:3!N)&*F=X"P<H.F%&.U982F)#UA1W^N='RF>'5!"URP:V2Z='5!&E"!!!(`````!!9*5X2B>'65?8"F!":!5!!%!!%!!Q!&!!='2WRP9G&M!!!-1$$`````!U.441$O!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!K5!7!!Q)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!V"=XFO9S".:8.T97>F&%ZP,6*F=#""=XFO9S".:8.T97>F$&.Z<G-A476T=W&H:1!!"URP:V2Z='5!%E"1!!)!#1!+"URP:V2Z='5!&%"!!!(`````!!M(4'^H6(FQ:1!31&!!!A!*!!1(4'^H6(FQ:1!31%!!!@````]!$164>'&U:1!31&!!!A!*!!9(4'^H6(FQ:1!71%!!!@````]!$QF4>'&U:62Z='5!%%"1!!-!$!!/!"!$1V..!!R!)1:&<G&C<'5!!"6!#A!/6'BS:8.I<WRE+#-P=SE!!"6!#A!/1WBF9WN1:8*J<W1I=SE!!"B!5!!$!")!%Q!5#V"F=GFP:'FD4'^H!"*!5!!$!!A!%1!6"6*V<'6T!"*!1!!"`````Q!!"6.U982F!"*!5!!#!!%!&Q:(<'^C97Q!!""!5QJ-<W>5?8"F47&Q!!!/1&-)5X2B>'6.98!!!"*!5QR4>'&U:62Z='6.98!!!""!5!!$!"E!'A!<!U.441!11&!!!A!9!"Q&1W&D;'5!(%"1!!)!&A!>%5RP:U:J<(2F=CZM>G.M98.T!!%!(A!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"1!!!!!!!!!!`]!!!!!!!!!!!!!!!!!!!&Q#!!!!!!!%!"!!!!!%!!!!!!!!8!)!!!!!!!1!%!!!!!1!!!!!!!"=!A!!!!!!"!!1!!!!"!!!!!!!!!!!!!!!!!!!!!!1!.!!D!!!!"!!!"D)!!!!I!!!!!A!!"!!!!!!E!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"")!!![^?*T66FNTUU95`BR&PM6R(:-9&QB63C]**3'^XVM&R[3UG,K71\G5'M8;W*I+S30*F,TVD`3R$ZXJ;R`[QL`J;Q@_1-P:86FWM*H!4/A%\]CTZ^NTDMZ_?]\2!ND"PXA)_:P3+N[>/XX8<JM\$N/-U!S:6D0<8>NF;]Z>R^YZW;I9N>;7Y_W9TG7PU[I:7[XG^8JVL2U[_%MP):@?$JCPU6J/GF?[JNNB33\UA]QF.W3_X__&[1<LW!%*W7X8D[;:KO^\QD:@][Q_26$R'@GQ#J'YS9,1^`;9.<M2\,FNL=;#Q/SQ_3P?;I0VN(VATBA2A.,EO)(\T\$\R=>W<T1XGN8B`H_G`5_8J.WK*L<KGIZU6"\!V8M2()67'#QU7.$TX'!)5$1^BY5-Z3?^&3DI[``2D_DV<<@$:2U*DG"+)3P-RT*3:.P=[T(EJ9UKXI.CL+&'S"_(RQB\4IT%?SH&U;=S1CN#[ZC'1E]3[;3-$MD*@1N?`DGMH0`^#/>]T&+2_*B#&D-R-MS,X*C7/I)-N0*RNEC>V)14+)S=1)(U&-TC*=Q*PH0[5L,K=I;""4W,@,0LM[$L/><SG@0"3A27OKT^5ZXZNG=N=\!MP"T$0":G*'SX[<UC#A5:&&&3'U23-",JV,Z)&:4D]S`I2D;+OG<W1(6AJ)7OE)K[E9PD&YD=QQG=R#GRBY,Q_$)7V1KF"U-@$`^OT4WA(&)/T+%Z?P&&W[%$*\HNG%%Q/U2Y(JU4TI`D^',&[@0%U,R>43BK0>__SRV;:GB33A-K$4I$#UA]Q")*3C4C8:R"2E^"W85[3/O`+&YDF!$T>K-.P9YX]+<3NX;2RLJ-!1T)7]'6QSK-$.8?C/?X5$_]NP+9\V8EQ1P_,-\2MU:==#Z8[*V$H@5982F"XYH2V2(U0:JTJNYG0N]HPZTC,#,Q1XR%1]\0YQ.](,EY3W-;2L4SG2BSZ6.]4LH':Z`A#S7]:U8Y-L[E7:PH$R,Y]QAXEC>_0)>NZ%,=%-T`L_>P4ODZ&=K.;FTTPRVB6M=;\^;%^PT6G.<G"#+_(GO^F[DV@C0;FGS7&X%Z<J<,QF0NQ&YDET."1S6^_EPSPQ3I=>SGB7FS7I>'TX>5)HQUK0U-RF)URJ(BCC''<&U*.+0!$G[#,_#.>>`:0U7O0&82@4_3#D,\L_W\]<S!NZRHZWGM1'Z-++/<-3<,YY@Y:C,,YTJOR?7B)A5#HE]8Q[]YOBU*6U5BPE*&`3J?I_`B"NU(PM5WY2J_*%Y5)PA;F@]N)P!G<B#*?=SB1)36=*J@D?C[J*(W6:)7=9KO4C=)<;&->CVB@:QUDW'"LH2&1LDN<<,/UJT\5M6MFD[C*G:IHC%J,42;F.YG23?^N#D.V5?('$2<!!!!!!#$!!%!!A!$!!1!!!")!"%!!!!!!"%!]1$F!!!!7Q!2!!!!!!!2!0%!Z1!!!'Y!%1!!!!!!%1$R!/5!!!#"A!#!!)!!!"%!]1$F%EVJ9X*P=W^G>#":95BF;3"632*.;7.S<X.P:H1A77&):7EA65E347FD=G^T<W:U)&FB3'6J)&6*!4!!5F.31QU+!!.-6E.$4%*76Q!!1;Q!!!33!!!!)!!!19Q!!!!!!!!!!!!!!#!!!!!U!!!%B!!!!"V-35*/!!!!!!!!!7R-6F.3!!!!!!!!!9"36&.(!!!!!!!!!:2$1V.5!!!!!!!!!;B-38:J!!!!!!!!!<R$4UZ1!!!!!!!!!>"544AQ!!!!!1!!!?2%2E24!!!!!!!!!AR-372T!!!!!!!!!C"735.%!!!!!A!!!D2W:8*T!!!!"!!!!H"41V.3!!!!!!!!!N2(1V"3!!!!!!!!!OB*1U^/!!!!!!!!!PRJ9WQU!!!!!!!!!R"J9WQY!!!!!!!!!S2$5%-S!!!!!!!!!TB-37:Q!!!!!!!!!UR'5%BC!!!!!!!!!W"'5&.&!!!!!!!!!X275%21!!!!!!!!!YB-37*E!!!!!!!!!ZR#2%BC!!!!!!!!!\"#2&.&!!!!!!!!!]273624!!!!!!!!!^B%6%B1!!!!!!!!!_R.65F%!!!!!!!!"!")36.5!!!!!!!!""271V21!!!!!!!!"#B'6%&#!!!!!!!!"$Q!!!!!`````Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!$Q!!!!!!!!!!0````]!!!!!!!!!Y!!!!!!!!!!!`````Q!!!!!!!!$U!!!!!!!!!!$`````!!!!!!!!!0Q!!!!!!!!!!0````]!!!!!!!!#,!!!!!!!!!!!`````Q!!!!!!!!)U!!!!!!!!!!,`````!!!!!!!!!G!!!!!!!!!!!0````]!!!!!!!!#@!!!!!!!!!!!`````Q!!!!!!!!,A!!!!!!!!!!$`````!!!!!!!!!P!!!!!!!!!!!@````]!!!!!!!!%T!!!!!!!!!!#`````Q!!!!!!!!H)!!!!!!!!!!4`````!!!!!!!!$KQ!!!!!!!!!"`````]!!!!!!!!/P!!!!!!!!!!)`````Q!!!!!!!!\-!!!!!!!!!!H`````!!!!!!!!$NQ!!!!!!!!!#P````]!!!!!!!!/\!!!!!!!!!!!`````Q!!!!!!!!\]!!!!!!!!!!$`````!!!!!!!!$R1!!!!!!!!!!0````]!!!!!!!!0+!!!!!!!!!!!`````Q!!!!!!!!_M!!!!!!!!!!$`````!!!!!!!!%<!!!!!!!!!!!0````]!!!!!!!!6N!!!!!!!!!!!`````Q!!!!!!!"7]!!!!!!!!!!$`````!!!!!!!!&UA!!!!!!!!!!0````]!!!!!!!!LP!!!!!!!!!!!`````Q!!!!!!!#P%!!!!!!!!!!$`````!!!!!!!!+]Q!!!!!!!!!!0````]!!!!!!!!LX!!!!!!!!!!!`````Q!!!!!!!#R%!!!!!!!!!!$`````!!!!!!!!,%Q!!!!!!!!!!0````]!!!!!!!!]M!!!!!!!!!!!`````Q!!!!!!!$SY!!!!!!!!!!$`````!!!!!!!!0-!!!!!!!!!!!0````]!!!!!!!!]\!!!!!!!!!#!`````Q!!!!!!!%%%!!!!!!V-<W>';7RU:8)O9X2M!!!!!! + &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!%9C5F.31QU+!!.-6E.$4%*76Q!!1<!!!!2S!!!!)!!!1:!!!!!X!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9B&-<W>';7RU:8)O<(:D<'&T=Q!!!!#A&Q#!!!!Q!!!I!!1!!!!!"!!$!$Q!P!!@1)!#!!!!!!1!!1!'`````Q!!!!!!!!!!!!!!!%D\H&E8_1F/B4GA?MT)-$M!!!!-!!!!%!!!!!!4W%WQE!FR2+`KSS."W,F(V"W-W9]!MA4JA!G9\0B#@A!!%!!!!!!!6DB)"?-CM%G,V+U($)I5#Q%!!!$`````V"W-W9]!MA4JA!G9\0B#@A!!!""FQ&M3:-=+HSI\4*,###`+!!!!"!!!!!!!!!%J!!&-6E.$!!!!!Q!#6EF-1A!!!!"16%AQ!!!!"1!"!!%!!!!!!A!#6EF$1Q!!!!!"'V^$5UV@2WRP9G&M4'^H8UV42V^576"&,G.U<&"53$!!!!!M!!%!"A!!!!!(6(FQ:72F:BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!!!!$!!(`!!!!!1@K!!1!!!!!!!!!!!!!!!!!!!!!!!!!!!!#6EF$1Q!!!!!!!!%>8U.446^(<'^C97R-<W>@5V2"6%6@6&F123ZD>'R16%AQ!!!!,A!"!!9!!!!!"V2Z='6E:79>8U.446^(<'^C97R-<W>@5V2"6%6@6&F123ZD>'Q!!!!$!!,`!!!!!1@K!!1!!!!!!!!!!!!!!!!!!!!!!!!!!!!$!!!!!!!!!A!$!!!!!!!I!!!!)HC=9_"E9'VAO-!!R)Q-4!V=1";4!A/9:PD!Q-$"Q!!!A_E(A!!!!"5!!!!O?*RD%'8A9_!A%D)!!"0Z!-1!!!!!!!">!!!";XC=9W$!"0_"!%AR-D!Q_Q&J.D2R-!VD5R0A-B?886"R:C"G!7*7@'9T/E!:^B^1*=1:'C$;M<*A.D%Q-/U"UEQAK[$7/E+EG(G!QC@1L?/(UA_1R!$0>CN/!!!!!!!!$!!"6EF%5Q!!!!!!!Q!!!>=!!!2%?*T<Q-D!E'FM9=<!R-$!$'3,-T1Q*/?HJ0)S!0E-%+!$9V!!!K$G;;'*'RYYH!9%?PTS,7"_]RO?<B=6A?9;&1GG5J&O(R724B]6FEY7F2>``P``XXS%ZX#X2]ZR2RO1WGY/I0BR&R5/%!>)MY$I`Y%:)&7IZMFU!G7"N!33"LC"+09(!&6R.&1I-Z3Q'"[)/HS]Q912YF#9%[+QO:>Y]ZP@=!!^*8$Q)5NXIQ;1XTM22!+&?$J$/#3/OX$IC!(ZD#>!"H<SQ(T.!@>0'-C!%B7"4B/123S--)O[W9Y\;)$$Q5%%1G6!K!I)61#C>I">=)1D\D!]`.?_PL?,&5CT)=7*!R!XA"B-K&C0A:'"%=RE:&A,67M$:$."R7"R#W)L1)..!UG0#V3-E=%?,H9<LA=B6IXE$C;Q?E;'0QQQP5$\I/9U1.U.%P-&CBW!ME/!\!F1>D31`1(+4A+S";$M4#$<A"(#TI/SQ:9RY+;>`6V=E9)*H#^A7;-3C*.T#QQ-^0TUKKOLIQVVAG.VA'2KO)WBE2W9#2=QM9ONV1%JK1['SN?#J9$=9$A,L+Y7J."**]U&C'K"4)3ZQ3#:-"UAL+WN">J>"L+`),FM)#Q(!%4^UUE!!!!%^1!!#?RYH*W78UAD2RT(*]E;6QS/C&KP#&[,$W?*EL23TL-=]8I,U<J?3C\?A\5NX"GOU0^6[*X%C[Q$4K=,04$U29Y_WI?#@6"+M:#I4<1(23U&C[(EQ7MD]5(OQ@L1;O=XO]GO9B5;T?38H@H.@,\@XW2H!QCB>V[[`0*8-E)O"U,0I$C[`='>)72\X;R!``G+U#@B7`XDOQU]FSES6@;9[K(K,F8S6.WG3I[K79:)=BAT(X.4::-K;VJ;+N2EF$8)TSC<]/&0UD3L)+P$&VA(QRUJOB1LI_IG@;RFJ*96HF/I+)\=)FNDPCBOGB$L-T@$N,>:IF*T`O_DIS0NQ)(*N_5)]53_TGNE[U'7+7MEC;?3G$TC(5T.[6U3*>O(2U?=DSF:,3F2*=O[*<Y_:HZ74S0,.,*A9CY9G-NC]1X`0J.,G/PU&]"=.D"`YDG&_O,)L5)F<AJQ$+?7>H+-M;IIKYJW9ETK/54B4\+"JV,$-JZ0\61#61*Y^"[*KDG4J[@)5U867;L/G$QT"M_M7'76`CT=P=!OM`+/&@K9]SCT>!FY5DQ(<*MNW>93`?*5P]<>R`V3:]CK]/N^.V1VJQ="CU7SWK*%)VE7E%2":?;ASD26JL35)*MSS+;.APJ871X:Y'1V\%J(BK9Z77S;(P)J7AZY$C19)`=,Z>KC5UMZ_]A_O.12\<S#S6[:=-GIWR^FQ*(81^5UEG@KNJ;KBNU6G;4K"!N5=ZI;9XP&+@E56('L[D)C.*DC*N/_W'3.^EU7,WYS-2Q-CZ=-OUPHXO58[1^X?8O;>1$8$8!%RI&0/A2-BQ4^>9EG))BSR[+>8:)9`GQ:G/X7UGYQ_R%4SZI[$S81/3H]HG4K"$>7+!3`[Y2#=A>YS"OGS);-#)6)U86-:V.*JURVE6C5#EE&DSU&V)\1O:"1WXO'WA&!*+'CWJ"1WVN5+T)$%P]NH:<<*)&U75P,)0UB%RCG>.@ZUI.#?M#3(CB*$ZYJ07C8(D#F"_X3?;(<B84@'>,@>I(U^K,U>C(>6Z4O/VFIP_N%I1/7WDK93MXL82Z_IW32<@VD$RX:JM1,%(/8?"O`\U%YM2C`"R]`4O\YVHW`$F@SWY7WZ^DZT9G1(H21(=<L`1[;A*3HO$LAY%W@)YL<6E@>P%X?PRD&F^;?YM6V&-6D;VI/_F+9@-FHQ*]^B(G[:'.>`2I0T(G[:.\US/@0=U0-U_W%YOXJI69;Y1@!LJ:KB4-AU1RS^)P1*BJ&X#!W3+N6V&J26)^66%_JK,7FIJK(Q\'CVNK,[D',7GMP[AOHXOSG(->P>C,8,-M9H'+EM6DB2F&B1)<>;,,<.C13\!?(*89)$8:U*DOSMU-3M+0TW?%%0-9/O3<\)JS'""T81\*B0207[R`*>-[IQ3[=?80Z1^!BMW\:PI#9:O1")T")S)?![4";<(!D\?2PWUA,`K]U0,`S(8==9366K$"`:@0*]76YG(DTL9("*93_+@T_0>^=S'&\ZADQ^`/I!@&(&A2^HZP8)6ZQ70&@4CN_YL,CZS1LTNHCL^V70&2OR*`QF6XGN83ZV@_0,7[8,3ZYP8LDOG,$&=^0A(70PW_`^[(0V^<8.DI[/O$XBA?^P"W[^9L`R;MC,&VIPTI9]]+1U<$:(R.>`'OY&)FR-2BYT2O^TP^D0,4G$5.0PZ@`R7)RPP;`T#5V_Q!!!!!!"/!!!!R!?*SVFF^I7V59Q%_3W`2WT5C%T"5JO)@T:DL7/9I<MG8L&<)2.#6BC[\>"GW$DMJ3C+03:>V-ALX?J"O9BY!2+JP1BQK#?SCCG'KV5Y2*+3ASJ!^\'(1065:RIV#`\XTH`GF.MC&YW`2]ZZTP\_^]04>BRNB<,\\5MW=(9RY89\P:&4:Y97C9/:\:>N<QC:][?@8"(D!UCHQ@$(K2>_)MTQ`A,-]\;$&)MQ$.@$245</\M*\:<@358F6AA_(+MXK:+S#M\FT-#Q'@\C6$,@SIX]EIRE(DS-((G7/FINA%K\^BPU3$(O5_8?0KIM96$]Q8&9\7^T=W.T=,.8`B4V5E*S+$PUS,U:;<R]A<I'618!D`%';&J=P$I)IJJ@<[H]_,.!S-I/A+&R\V(QLL`M,(Z"-6=T6&*]EAFVO=I^=4FP?*,]R%#%CJ4Y%^H_6&<"V8M"K-#25&X&C2*H3Q-M7MD0,9J>K_DK)(H]MKVO&S6(%3@]!E]45GC;_R*M2R%[TO%@&\4U&]IL5"]@M%28AM]R5C0ACKG&)TXFXE%>7I,&%$/>TC?E8S8PF`?(`K&<[#QF=!@!7*>U#Y$*DN8O:XG7DXXT#LU9#4`C]G`774`H)T_MN%`T<2P\W.PFK(PMML5B+BN^$`G2!N%`U&1=A`>9-*>5QL^5U\*FWDE&]V/)N07A1$V++?KZ%(V#`&%$"++?#;SDXSJ@S^>V*[2*%B=D7P4J*"#?8GP8:K#`,U:'\8,E"1MZ3C9%IH?.@K!Q+]J<VPG9$H4-"TT1$05<7T"(BW'_$W/I#HF1;!0[=KZADQD!1]1XBO55@=J($4$?"KZ"OV3B(U?:.KH\9;86C'F8_<NCF7H&R.V5ES++P=P'LH.S-JSQ3PJ@Y,Z9J*O7J3LD;D8+7SLR0F[^MI\[R$_:#H!?5S];Q3TS)75@.067GV)NL9ATO4&$,@A04P<F(OJ.8'E_1B<\6RXGZDR>('&;O.+U3M<,6RG1!8*?#CMYXFL8(5"Y;/7[-5]Y%G3E;@$[Y+Y^WA]8L("]=\*S/>?L*$(QPK[9!?]RHUFCXV>9'[@.^WC&OHSXTFFPE6,&HDF`1%(Y-R9YRWQ:E^1W=7Z3.Q9!G?8NU"T..VD[KH&/6JU"S#=?B*VXQ&M]!IDO/*]D=.#!&BTM(6XAP<)`8A$Z$J#,98KI#:<8XO"*F0@#_]2`E9^C/52.I:[E3LKK3IKF^5V>_QKH\1D-%9?V*6X\*[636AK2`-II8;Z3-A*_N6^4[:*CH0*'3?-+U40)J62566?8&1J:AKDQQ5,_&`;&3=8!2'T1CLW`W`]Q,YDO#N%/52-.()NV<H-MDY^,7L#`A>\=T:U^]^F2G5LN67@Y*M0FP^YUOYYJH]&C;?-(T/QQK_<`!._6COIXT?<=PL(FO/N^DSF%0_WGP,BV2<$L32`$<%==OV^VTW`F]S4J(N9[USPRMS$Z2XO7XZ1Y]N0V2M_1WP,7_UWP+3T#-$-Y_-FW[T9X`EE*?EH!4>6LEWY_$RH).(R=(DE7,,:RU-8!Y'PUIZ,0XVPK;^QBQ0@C`(@#`#:T!^?((P_0DY[?Z1@#!%@Y>0P>S^`\!1L95$BQ?S)61:D]P^L.C#;>S3B&Y7&9_&5BL]:E'U`=:RZW1)@L,:,'0`!,5,?0-!!!!-&Q#!"1!!"$%X,D!!!!!!$"=!A!!!!!1R.SYQ!!!!!!Q8!)!&!!!%-4=O-!!!!!!-&Q#!!!!!"$%X,D!!!!!!$"=!A!5!!!1R.SYQ!!!!!"1"!!!!^6=VAHEGIIQO=V*/"EEZH1!!!!U!!!!!!!!!!!!!!!!!!!!!!!!!A0``````````_+YC0`OP<N`ZLW9`_[^OX`OD9N```````````Y!!!!'!!!!"A!0!!9!0]!'!0`Q"A0``!9$``Q'!``]"A0``!9$``Q'!``]"A0``!9$``Q'!``]"A0``!9$``_'!@``ZA"``Y9!(`]'!!@]"A!!]!9!!!!(`````!!!#!.X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X1!.$1X>!!U!$1!.X>X>X>U.X1U.X>$>$>U.U.X>X>X>!.U.$>X1X1$>!!X>X>X>X1X>$1X>U.U.X1X1X>X>X>U.X1U!$>$>!!U.U.X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>X>!!!!!!!!!!!!!!!!!!!!X1!!!!!!!!$>!!!!!!!!!.U!!!!!!!$@``U!!!!!!!$>!!!!!!$@`>X@`1!!!!!!X1!!!!$@`>X>X>`^!!!!!.U!!!!0`>X>X>X>X`!!!!$>!!!!$`X>X>X>X>`Q!!!!X1!!!!```>X>X>``]!!!!.U!!!!0```^X>````!!!!$>!!!!$``````````Q!!!!X1!!!!``````````]!!!!.U!!!!0``````````!!!!$>!!!!$``````````Q!!!!X1!!!!``````````]!!!!.U!!!!0``````````!!!!$>!!!!$````````````Q!!X1!!!!$`````````````!.U!!!!!!0``````````!!$>!!!!!!!!```^````]!!!X1!!!!!!!!$^````]!!!!.U!!!!!!!!!!!``]!!!!!$>!!!!!!!!!!!!!!!!!!!!X>X>X>X>X>X>X>X>X>X>X>!!!%!(N\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?`L[_PL[_PL[_PL[_PL[_PL[_PL[_PL[_PL[_PL[_HN\_PL[_A!!!0I!_A$[_PI!!!$[!!!!_A!!!0L[_PL[?XP[_PL[!0L[_A$[!0L[_PI!_PI!_PL[!0L[!0L[_PJ\?`L[_PI!!0L[!0I!_PL[_A$[_A!!_PI!!!$[_PL[_HN\_PL[_A$[_PI!_A$[_PL[!0L[!0L[_A$[_A$[_PL[?XP[_PL[!0L[_A$[!!!!_PI!_PI!!!$[!0L[!0L[_PJ\?`L[_PL[_PL[_PL[_PL[_PL[_PL[_PL[_PL[_PL[_HN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XM!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"\?Q!!!!!!!!!!!!!!!!!!6F9!!!!!!!!!!!!!!!!!!(N\!!!!!!!!!!!!!!!!6PT]`0R7!!!!!!!!!!!!!!!!?XM!!!!!!!!!!!!!6PT]_PL[_PT]6A!!!!!!!!!!!!"\?Q!!!!!!!!!!6PT]_PL[_PL[_PL]`&9!!!!!!!!!!(N\!!!!!!!!!0T]_PL[_PL[_PL[_PL[`0Q!!!!!!!!!?XM!!!!!!!!!`0T[_PL[_PL[_PL[_PL_`!!!!!!!!!"\?Q!!!!!!!!$]`0T]_PL[_PL[_PL_`P\]!!!!!!!!!(N\!!!!!!!!!0T]`0T]`0L[_PL_`P\_`PQ!!!!!!!!!?XM!!!!!!!!!`0T]`0T]`0T]`P\_`P\_`!!!!!!!!!"\?Q!!!!!!!!$]`0T]`0T]`0\_`P\_`P\]!!!!!!!!!(N\!!!!!!!!!0T]`0T]`0T]`P\_`P\_`PQ!!!!!!!!!?XM!!!!!!!!!`0T]`0T]`0T_`P\_`P\_`!!!!!!!!!"\?Q!!!!!!!!$]`0T]`0T]`0\_`P\_`P\]!!!!!!!!!(N\!!!!!!!!!0T]`0T]`0T]`P\_`P\_`PQ!!!!!!!!!?XM!!!!!!!!!`0T]`0T]`0T_`P\_`P\]`+SML!!!!!"\?Q!!!!!!!!!!`0T]`0T]`0\_`P\]`0SML+SML+Q!!(N\!!!!!!!!!!!!!0T]`0T]`P\]`0SML+SML+Q!!!!!?XM!!!!!!!!!!!!!!!$]`0T]`0KML+SML+SM!!!!!!"\?Q!!!!!!!!!!!!!!!!!!`0KML+SML+SM!!!!!!!!!(N\!!!!!!!!!!!!!!!!!!!!!!#ML+SM!!!!!!!!!!!!?XM!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XM!!!'(!!&'5%B1!!!!!A!#6%2$1Q!!!!%<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M5&2)-!!!!#Q!!1!'!!!!!!>5?8"F:'6G'V^$5UV@2WRP9G&M4'^H8UV42V^576"&,G.U<!!!!!-!!0]!!!!""_I!"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!A!!!;]!!!,N5&2)-!!!!#I!!1!'!!!!!!!A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)!!F2%1U-!!!!!!2V@1V..8U>M<W*B<%RP:V^46%&526^576"&,G.U<&"53$!!!!!O!!%!"A!!!!!(6(FQ:72F:BV@1V..8U>M<W*B<%RP:V^46%&526^576"&,G.U<!!!!!-!!0]!!!!""_I!"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!A!!"D!!!!*'5&2)-!!!!#I!!1!'!!!!!!!A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)!!Q!!!"2O!!"RKHC=Z6U,?"26FD[XODNU*S&U!C'%6TKB%QA3#/%F#AKG%8F$!KC-#Q;[)7"--!EI[SKM'ZFB:RW"%:RRV)&R%87>:8;:R_[-(YM/Y#-\AOSH,A].]H)=Z,%[0!<4K4VVK[OL<N?NKK;3DLX@RC`V.:U[>7_>_^`TH``5L3P!1S^\?QFN](A9C0=S@JA?BN2A-Q(96_+'S%`2?P$/)^]![:&,QD$"0=^\4'AD@=/1(GQO=J='.M!F0&M])7ZW<C5`]8['J[:Y=`&CK7(IVN1-TW:/^<>Y`<P[_D?YF-NWBTTP5[2.O-?@>^8^6&->NAB.A[2D:AFJ!R,)>TK<#G:8V9;;`.+XHB*X,LWG*QT?1(08?H`,1,QCNPU7P33ZZNQB?*2,!FZS%/T?P6MVSJ3.CGAX<E9<ZQY!Z[`*.2/<L%"TPQ:`SR"KEUJNM*V@+_U%]NJ_+06>-IIV\2ZI^K)JWDU3O78*6L%,4["W*U_?2$M]2OSKQ^$$XX+(/^@^7@#IK_O=JN]!!>*U#-<B?#RSNXUI0J'#>ZIZ5RI-;J'&YV&Y#`&7YO@+-!RO;B<O"[=U'GX9YM?EHI['5RG.=81U\K3DY1FM]))[($MMBC0AX&@1L\RG65.DK.Z8N^3XJ+;KI='XMH\Z[KL'E#^9V6CF([DRA?<=-:)4J-9I3#!(H-Y03;X7[88Q]MMPIR`QK*L?BK9Z`J;I88?]H3.Y/YLDA[LDJ6:6"^[/$AR=G\N-=G,B,9+#89&C^[BU>(WE)LA-%:TJD?U=A_"2#5$Q;!47Y\%)8O(=1RYV1?-9W5C$Y$XIF).EB9H.T7CTFE(Q(GTHI.+/'9,([B']2WELCO#N7\=S>DA!NU12\#2%1<$9+L:+#0Z9@-XV.8G()FCA&J5Y(B*KP2*KB@?QF:`$HRH5OIY<I\9I$N3[SKO76/M(Q@7*(JWZY#1N=-E+H;Z09^#:D=.X#LNNB5Z8#TKH]&YI8!!K2BUM2D@3YZ!I2FUH'9QK8>2CV(7[YT(K/M0"+(R*$E$9''_OM\%9R@/"@!R@GNB](IN2N0E3<=+7'(8^59>2S>93I[YPIM.AB.478YL\R@P)1!;J-#3+V0!7M<8N-$T(RN?`-5:K@`/"]+7!B.:A18HF$(W]?)Q0V<(9PF5A@:Q$V@(QIH5A8=O"KF/"KE-#+3GA5#W2DM)I.;A_I10MW)CDIE'V+1&"^5E?9,=3(_QU#:$L>9$VI9/'QV94G_`K!/P$>I9L\:A&V?`J!?N4WD),KBMM!3M/%Y^"#`S/!N:"\>\#5=&=4E:B@\%6(I@.$&[&]=:YP>M#LU[1IWN[:3-G!(08L!T.K&I:-SD9QGX9QLL=-H^,'J-%J-"#?%:JY1LL,<G&JHR9.^,:Z*?_U9SS=,M?TX#`/FR8O:[P$AM4.("/PS$$W67UXB%ZYSX%M?)L=1`[KH_-LW#4M;^ON@#6%0'6G`K+ZS@9X-&_AB`;]R-]Q`&4CN:0J#$KJY7)P4UR@C+$D0UU/UY`J5[P7W;%+&,=Q:YCA_VZCNT%]618[CH04%XU="]\M-I>>IP8J._).6,*2J6+UM87]"<Y)QOXL=:O,)[,3P96J%SOK6N=6;/0F-^S[13?R$Z9U=G0/-\;I&+O-:X]G%-H<D<TO9E?`VEFEO>DC92WE3'3&R.!*$`F%=FJK)(,*K3Q,::)](S!R_#UC=XW7#*"G^.I=^G;3([G)R,*VJJ)8L)GED0CW`">UE_4_64AK'"\&),^-$:7QAE[#BZF&(\*"WMR$M/5/-$KF,*U'BND"G.W'(Y6<%\0,1OUZ.XBX^8@PW'E>'5PHD-5JY(5"R=^]519@I.^;-J&C:_KA858S)4?5+DY2=SE@LF_`4L["9]KG5H"Q3FA=-"P036.D96$3Z>'/J%?BH^$V'0%=>!L_YBUZ1TM1V`)Q+O^]=9<?$5]:O<*(C.N$N__0(F1-P!5(TUF8TJ[#S)$O^B>)&V?@[IU:PH3E4X6E[@WZN`FXACU.[82Q*"BPT>,YO`.%K9XC-4@9G]?VE1%"X2&]CSWDAC`UU;%Z8*%]"3N&^2,\]&,X_VP[9]X'JH;UMC8QB!W4('GRX]%GDU.M:7(%CB$Y,*1Y)3YP>(J\V'G@QY=5GVF+-=U_':U_HMCU\^!WR\8ZKXI^0>%JH]"W]ZFI^P\04JG(F->+9<2[P1X^PE_L=_L::_H)G@2!N+=-,QN4@.9DT%"^VV.Q&7GOHC?1K<1-O)C*V5WVC_P829TT^0#]"\?UCX_FG\S6>V3_SE9],-A&?`ES.(D[)*6[\>25$MFJ%LX?@5>'<8U]^O;TQ=UH`>LY)LN.-PNL*<<W3OV)W!\/<1><+&$WE%``3=P48(3FH;:BS-;CJR++&)(`1]RV#P^^)(>VI0_PH<1^R=_+MDDHC<F+J6&[_$MJKRMK;,ITY85\+S?SM??74H+RZT)R:!)<II1A@AZ%E'`7#)I.S;#S8%2!5]!)QM%*";IDY-&\L4.!O9--$GJ'/#OJ'+!+89:9+J=KYX%`H1G^E_T(@OHNS0WT\14_W@:C0WT<=@_/8:D`U/SNS.2P[MG[N><2PX'"%8^6:U5^6>X5N2`O-/D`C.WI`Y;?<D6?*^R1`(?4-0K`S;?1`7!P[K_02L6N_*&!/%^MI,6NS:&`9)Y^;WL9F6.K%'PXTC&`2RQ#B_4J:<S.L;QXRW\@ER^[G(M<6ZBPRN4,98TN';[AF:,V@)_H)R^"%5\SMS_"*4XA6@?*YO&P;4"2,$KSPP#8H41"W3RC9WOP)^N,%;<"GO2KS`P3\<7)N?EP!_#,(+HCK]Y6J$@;KKFF4AK5=S3+W+L]")M:]OF:=(G($ZE\YI4MGGT1`8,[Y,,FUSPCYW'HL!QAF_8?28\91&=933H,P.T?.!3O-*I$H#^$(#&+HK=3I`TI]!6ROKK-[^'(+9!6\B6=FC(YF99RSP/B'!DL$<'I$"26ZT:C&<<)72C=Y?O/,-2W^GON'/#7[&=8ZT:K,2FAFMB9&G=#2]50W`<#9^L=$M,"SC3EY?0CKVN'8!T/QB,J%'94!=B7U7N#U>B7*TVW*2*N67,;W)()TUM"/5]>$[^=D>[Z4Q9!)/B$']Q+/,FJ+.`)V':6=UPU[!<ZJ@^JUGV&TR']]M6_F250F7[9,ZUN$[V`6@6J.N##$0+HP[7<!8LP>&\QW"->"$R;(#0W?A*8LK^8.]<_62^OGVY;POPKLX(J8,MO6=TF.*NDI2R7IQ<X':P>);0HJ5P(;/N"01>YJYK4=$YTLTRCWJP=JF]E`>I<F)+F$%X3?_1M#XEY3G]TF1T4?!=LN<%UQK0(%]T-:[O8SC.2642#P/$T3F?!8P1.AYH\1KIIJ/WCT*J\_&342J/WF#=6*.28BV;]I$-.Y-;CG-G\YGQ='_QW3H.XF1G4_K'MX?]D8LJA%8,6$]P1$_0:P6J&L<?(^+N^'E[HB+H0J60N>+HW*PP;,7\X*M#7DOQX2O/>D@K$;P>U],#@9TEW;N[06MH?6S+T,B7KEK/;]-UHY>K0J>I:-E(D%)8`EK8VK<B\5_UTAY7;N'=*K-Z#X8[!:^<P%4P'Q\EO^=K(QOC;Q:6I%_.!DU$A4Y/&L&!H]\8!2,3F]3,^,H6^;''[LK;Y+!"QXB)HU',1IG"_MSEAPKMJ),[\']"[H0M1LW#!`8O]5'>IY@0C.?EX[A?*COCWA)Q3S.8S%,WM8F.9J9/E1@Z3Y>[9@M7GI,5=J9/^68VF[%L32V(5`2AFQY^2I^P5G(]1&24E(L>UK&?%5=J[3RJ\(AR4&<RR0!#%-E$RA+"L.;*#B'NP'3"C=X$/F%BEA6I]Y#FK##0[%7&K,2F)CL)'EN2U8:)@!VGE&^I2%5&DIJ3[._'JVUG]^F#``?Z_=E)()7[/%7&*\JQ3&@O*^UZ$XWFK&I+)ZBS0\F(SG'YV@ZB\;DWEQ8*6/UH#Z/JWE`OZV<\2VB(B3L/]^ZM<=W@"(5V@WH1SW#U6=W@B01V`VQ9!X-1NF9V@\*58`00*:.57V\^HPSVLO9`1>M?V_:28=V`!NO/5=W@`#+GZJ_.-WW?/PG.@8[7]\SXJV,Z2V<[5V-TC<#3YC_'F<[CQ89G7`=`BZ'H$5<&/=_\2":T[;0OH`85**8+2Z)_FN4U$;=K@D0*MX:)+Y?;=JBF3%+K>%QJ65F*:%B*[3*49S%>4UK#Q#/F(#AFAUSK6AY>+:8C:3?3("-<JY[53L'>C5I\:J5OFZ[53J7WT#J>+><,E);,4?);5KB:BB4%5@%X_S1)DI6C=2E=JY0AC!R#3JEU#%1CJ=#OP+GMFJA1RV-K![4?(8:5)-W!%`FIKI+#,*J6\W;UD'-O<\:=Q09*^)BLNPA,1+>?(0/I?JGKE*R]6R\Y&>,2`JDI>PDQY4B*LGP9-2^D*N*+OG<[O4!\\[6\5M7\;P2*V<[B&4UJE`N+@&.K'U0VN65V0PJ&,_8L39^%PJY2;GCI7B<S+H_I#$7ML+NN5,]ILXNQ:5WI-24F0M>W\/2I0@?F@SPSSP%TW76;??7F?5(HSSN0W0%3^E9<"!ECL;`OU3!>039)/PZ2'Q2$=B$MB5R=Z)/C@,'I!$,0Y2W!ZZQ[98-U*FWHS3;Z'$@00BUZ:QY'4C6D(#PO&Z>(6G:%1W3[@9%D'!I=&*F>^9_1_W#)(ND"DZ#&$0UDZ"RM:UA(0U)7OP%?)?@3FO[X^1B:](+?$:6#U&I3:`)8$P5W7/1M6G$MRN]<8F2%XF31-QWPM)X-9L1'_<WBVKC--Q=R7&R+^H'7&8&VRI(%[)SXEUJHP*.5/O.>OTLD09\/[-0ID$`9VBHP'_G-7>9[YS"0:^SGWH)VQS%$H7&G]Q&(:T$N'/K-QVS>57HN]``C[)S_'JXR5;T/G-8KD0^/J-YY9K1T?FDKD+.=H>(,WC((/$KD([-TS"@U_,7K-T\F[)Q?<0(L2!++8Z`R>)98]`B]EU,731/>Y47R/=82'6[US<=O@JXG[1SP>@(LD,8/7#]_+<\0P/YQ"U>&);1@I."Y!TZE2_'S=3LD;Q]DJ98*&8UW)X&`91>H-_3K0JP*RH9'>X!W1[\RX^;37HL&6D:$`K*@II6+\(8L+8G>H]XU6V^OQY(`)DLQG-0OC=FBS<H%Z,$ES]\*9=HZTMFBS97/TG(*2:MZ,,H%(`5]IRRW*];&H8:SW-=CS'G\AF?9&F-P*WM.=^DK^P%<:L(LYMVCHUB-&PNX3:8&.C66&POEX3RW03?,^4&:\!<<7?T@N[.;`HU\V@*`M&%N@]JWN@Q(>KPF4X/SW(R.&LP:IFL_4#+TW#XWK_6<\6<,H_6EM16M&LO$(H?J7?RTFN6S]HQ#MNA8<&4,S9MX8CUH0\6>,3@<\&8,S8<L,0;9W!1$9KLF:&?E7HY+CD(+M^6S]C]*KZ9`B44D"=NK_>-*K::P4&#V@&/QW:X<%?8S,?ZZ$;&[(XJ0XDL$6VZ>6<MMF#,^9V7$B^<1[V?N<(28B*9NFX<<3JV87R`Z[*F58V^(<4.GV!68V;"R@1CP%@2'`BE).447V[U*"<N/<&B4OU3JO0?976>3%6LJ9\Z-L^4]1[VRH^)P;&+KUN^#R@WU@E(4NVBR0R-43//OO*`F6.Q(G&<=S<^S+OZ_NO*/>CBKZ:3YHWY-Q94:H1F3+[^UEFJZN:05SGM>LF<_S;Z;?:WP6AK.V%KL`&^\8OP3,67$]`*3.76@RV.C+RS&L^D8NS\;XZZ%M.K?Z",X`3XY'PNAE?H!`X#+!V@BCP8\7V^R-JUC*>.RUBQHDR\,[2(IQL8&[FN=FW0@YK,>:>\COJK!N\CO]>['O1$(142Z)_MPOKTH/&K>BQMG.N>V7=^R</?]UI\:7VT@[,/?YUJ<:G^RN6JH01@&`338&./MRRE2YL"9W;JE-Q+X'@\%,FSLM\VQT7G^=!U?D80BGJ#>%#EO^%QG+3\U4C9J,P3R+=7&PBQJ0F!LR95]OV*=]0'F_#C%L:55&`)Z5BS/K,9]73U5[+3Y8^M?VW;!4IL\W8;-J,DAZUDRM?LE.`:Z%5?+$V+E?$!MX#F,G[CTN.*'O#OK,$43*C)NWC>NNEA,A2BJ!X2[R5C<:R-C<8[5)'HTY`],#Y'?ETO:*,,E*UGV%/BZOQO"8O$)EG,TB5"T/<*EM#R,<LBE8K\>>[)1W@K_G0VES#4D`717RD'24#<T\$#Z-]Z.:=B>C>F5BER**L9G5Z/*L=EUGZP+E/E=NL[*+:T0MLOV$*H.XVJG2"R<SZ!Z`+VF2JBN%U-K>'Q^1.M?V[:3R^9$W(9-#_>T/6P,D)FD;RESD]071T2M@4\#VIKT',;_'.6&?L:_01[W\FF?/7/2L#6RKC_;54FZU>R\:U`3E`=(OLIEF\SZ;V(;4>Z(%E4?2`_`V#70*66>]HB3V35`M6O8`*34!*39VS7`QUE!BNJ-!0)U#9"Y%2/!1ND%*A$ZND?5-^R-DAS)F`=,%]4\25H&_Q/4CP?(W/8^%A\P$W.YP^1W\Q]XWF*OET8PF`&Y`W^67S[(DT$95M\-:C2H3TGG(50?(]8>5G[,N=^(=XC`6.V9DIT6<SSXC8V'=7NC.J9DYTJH9TESPH-WFC0=@@4FD?6M0K/)X5B@_OE4TT/+#@RH&-0N<#>+1)O1_Z!".M-2FA%%WXN,G_UL42TREI!L1331EF1EU#7J3-"NFQ1](")I9UAAX49*>$5CA307**$")Y&X66NO1/^G1!*G.FY/#4$N'**!*J=%0L(W?2;("%:I3#"<?2[D?)MBA"S?WJ)*I,VLK8NV%A@E>B)(^$<G!*NLK@NQ/3#/N>2^_2QQMJV<D+L0IMWW'.8`$3)`\EJ`1$SQY#%Q_3%4)B^OP]4_)1@7U<_D1[8D$8VHVCHP*04:WD"E"]KT$HKHI!03X60=E\QP#'W%B+'H_Q8XZ8U@2@``C@OG2SW<$J&DDO`ZH]NT^`J@#X%F<!!!!!!!"!!!!B5!!!!%!!!!!!!!!!Q!!5*%3&!!!!!!!!-!!!"C!!!!=HC=9W"AS"/190L(50?8A5HA+Z!B`:?"7>#0]4=$![?@Q'%AT3AA#237`=P!,KA.&N9_IMP"!!7K<)Q=EBS("4H!-BQN'AT````H_(LE'FT&%2]Y5W770)=%!"2C'1!!!!!!!!1!!!!(!!!181!!!!=!!!!B8WZJ8URB=X2,<G^X<E^X<GFO:UR71WRB=X.$<(6T>'6S!!!%OB=!A!!!!!!"!!A!-0````]!!1!!!!!%HA!!!"]!%%!Q`````Q:4>(*J<G=!!""!1!!"`````Q!!!U.441$_!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!O5!7!!Q)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!R4?7ZD)%VF=X.B:W5.18.Z<G-A476T=W&H:22/<SV3:8!A18.Z<G-A476T=W&H:1!!&E.446^(<'^C97R-<W>@46.(8V2:5%5!!"2!1!!"`````Q!#"URP:V2Z='5!$E!Q`````Q64>'&U:1!31%!!!@````]!"!64>'&U:1#M!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BV@1V..8U>M<W*B<%RP:V^46%&526^576"&,G.U<!"F1"9!"":4>'&U:3!N)%FO>'6S<G&M)&.U982F'&.U982F)#UA28BU:8*O97QA476T=W&H:2"4>'&U:3!N)&*F=X"P<H.F%&.U982F)#UA1W^N='RF>'5!"URP:V2Z='5!&E"!!!(`````!!9*5X2B>'65?8"F!":!5!!%!!%!!Q!&!!='2WRP9G&M!!!-1$$`````!U.441$O!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!K5!7!!Q)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!R4?7ZD)%VF=X.B:W5.18.Z<G-A476T=W&H:22/<SV3:8!A18.Z<G-A476T=W&H:1!!"URP:V2Z='5!%E"1!!)!#1!+"URP:V2Z='5!&%"!!!(`````!!M(4'^H6(FQ:1!31&!!!A!*!!1(4'^H6(FQ:1!31%!!!@````]!$164>'&U:1!31&!!!A!*!!9(4'^H6(FQ:1!71%!!!@````]!$QF4>'&U:62Z='5!%%"1!!-!$!!/!"!$1V..!!R!)1:&<G&C<'5!!"6!#A!/6'BS:8.I<WRE+#-P=SE!!"6!#A!/1WBF9WN1:8*J<W1I=SE!!"B!5!!$!")!%Q!5#V"F=GFP:'FD4'^H!"*!5!!$!!A!%1!6"6*V<'6T!"*!1!!"`````Q!!"6.U982F!"*!5!!#!!%!&Q:(<'^C97Q!!""!5QJ-<W>5?8"F47&Q!!!/1&-)5X2B>'6.98!!!"*!5QR4>'&U:62Z='6.98!!!""!5!!$!"E!'A!<!U.441!11&!!!A!9!"Q&1W&D;'5!(%"1!!)!&A!>%5RP:U:J<(2F=CZM>G.M98.T!!%!(A!!!!!!!!!;4&:$<'&T=V"S;8:B>'6%982B6'&C4X*E:8)!!!"^&Q#!!!!!!!)!"1!(!!!-!%!!!@````]!!!!"!!%!!!!7!!!!!!!!!!%!!!!#!!!!!Q!!!!1!!!!&!!!!"A!!!!=!!!!)!!!!#1!!!!I!!!!,!!!!$!!!!!U!!!!/!!!!$Q!!!"!!!!!2!!!!%A!!!"-!!!!5!!!!&1!!!!!!!!!<4&:$<'&T=V"S;8:B>'6%982B6'FN:8.U97VQ!!!!'2=!A!!!!!!"!!5!"Q!!!1!!Z6]2]!!!!!!!!!!G4&:$<'&T=V"S;8:B>'6%982B4'&T>%&Q='RJ:725;7VF=X2B<8!!!!!:&Q#!!!!!!!%!"1!(!!!"!!$F8R(Q!!!!!!!!!"J-6E.M98.T5(*J>G&U:52B>'&5?8"F2'6T9Q!!",I8!)!!!!!!!1!)!$$`````!!%!!!!!"*Y!!!!@!""!-0````]'5X2S;7ZH!!!11%!!!@````]!!!.$5UU!`A$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!,F!&A!-#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71.18.Z<G-A476T=W&H:22/<SV3:8!A18.Z<G-A476T=W&H:1R4?7ZD)%VF=X.B:W5!!":$5UV@2WRP9G&M4'^H8UV42V^576"&!!!51%!!!@````]!!A>-<W>5?8"F!!Z!-0````]&5X2B>'5!%E"!!!(`````!!1&5X2B>'5!L!$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)>8U.446^(<'^C97R-<W>@5V2"6%6@6&F123ZD>'Q!:5!7!!175X2B>'5A,3"*<H2F=GZB<#"4>'&U:2B4>'&U:3!N)%6Y>'6S<G&M)%VF=X.B:W515X2B>'5A,3"3:8.Q<WZT:2"4>'&U:3!N)%.P<8"M:82F!!>-<W>5?8"F!":!1!!"`````Q!'#6.U982F6(FQ:1!71&!!"!!"!!-!"1!("E>M<W*B<!!!$%!Q`````Q.$5UU!\A$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!+F!&A!-#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71.18.Z<G-A476T=W&H:22/<SV3:8!A18.Z<G-A476T=W&H:1R4?7ZD)%VF=X.B:W5!!!>-<W>5?8"F!"*!5!!#!!E!#A>-<W>5?8"F!"2!1!!"`````Q!,"URP:V2Z='5!%E"1!!)!#1!%"URP:V2Z='5!%E"!!!(`````!!U&5X2B>'5!%E"1!!)!#1!'"URP:V2Z='5!&E"!!!(`````!!]*5X2B>'65?8"F!""!5!!$!!Q!$A!1!U.441!-1#%'27ZB9GRF!!!61!I!$F2I=G6T;'^M:#AD,X-J!!!61!I!$E.I:7.L5'6S;7^E+(-J!!!91&!!!Q!3!"-!&!N1:8*J<W2J9URP:Q!31&!!!Q!)!"%!&163>7RF=Q!31%!!!@````]!!!64>'&U:1!31&!!!A!"!"='2WRP9G&M!!!11&-+4'^H6(FQ:5VB=!!!$E"4#&.U982F47&Q!!!31&--5X2B>'65?8"F47&Q!!!11&!!!Q!:!"I!'Q.$5UU!%%"1!!)!'!!="5.B9WBF!"R!5!!#!"9!(2&-<W>';7RU:8)O<(:D<'&T=Q!"!"Y!!!!!!!!!(ER71WRB=X.1=GFW982F2'&U952G<(2%982B5WF[:1!!!"E8!)!!!!!!!1!&!!-!!!%!!!!!!%%!!!!!!!!!'ER71WRB=X.1=GFW982F2'&U952G<(2%982B!!!&&R=!A!!!!!!@!""!-0````]'5X2S;7ZH!!!11%!!!@````]!!!.$5UU!`A$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!,F!&A!-#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71.18.Z<G-A476T=W&H:22/<SV3:8!A18.Z<G-A476T=W&H:1R4?7ZD)%VF=X.B:W5!!":$5UV@2WRP9G&M4'^H8UV42V^576"&!!!51%!!!@````]!!A>-<W>5?8"F!!Z!-0````]&5X2B>'5!%E"!!!(`````!!1&5X2B>'5!L!$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)>8U.446^(<'^C97R-<W>@5V2"6%6@6&F123ZD>'Q!:5!7!!175X2B>'5A,3"*<H2F=GZB<#"4>'&U:2B4>'&U:3!N)%6Y>'6S<G&M)%VF=X.B:W515X2B>'5A,3"3:8.Q<WZT:2"4>'&U:3!N)%.P<8"M:82F!!>-<W>5?8"F!":!1!!"`````Q!'#6.U982F6(FQ:1!71&!!"!!"!!-!"1!("E>M<W*B<!!!$%!Q`````Q.$5UU!\A$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!+F!&A!-#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71.18.Z<G-A476T=W&H:22/<SV3:8!A18.Z<G-A476T=W&H:1R4?7ZD)%VF=X.B:W5!!!>-<W>5?8"F!"*!5!!#!!E!#A>-<W>5?8"F!"2!1!!"`````Q!,"URP:V2Z='5!%E"1!!)!#1!%"URP:V2Z='5!%E"!!!(`````!!U&5X2B>'5!%E"1!!)!#1!'"URP:V2Z='5!&E"!!!(`````!!]*5X2B>'65?8"F!""!5!!$!!Q!$A!1!U.441!-1#%'27ZB9GRF!!!61!I!$F2I=G6T;'^M:#AD,X-J!!!61!I!$E.I:7.L5'6S;7^E+(-J!!!91&!!!Q!3!"-!&!N1:8*J<W2J9URP:Q!31&!!!Q!)!"%!&163>7RF=Q!31%!!!@````]!!!64>'&U:1!31&!!!A!"!"='2WRP9G&M!!!11&-+4'^H6(FQ:5VB=!!!$E"4#&.U982F47&Q!!!31&--5X2B>'65?8"F47&Q!!!11&!!!Q!:!"I!'Q.$5UU!%%"1!!)!'!!="5.B9WBF!"R!5!!#!"9!(2&-<W>';7RU:8)O<(:D<'&T=Q!"!"Y!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!5!!!!!!!!!!0`!!!!!!!!!!!!!!!!!!!"=!A!!!!!!"!!1!!!!"!!!!!!!!&Q#!!!!!!!%!"!!!!!%!!!!!!!!8!)!!!!!!!1!%!!!!!1!!!!!!!!!!!!!!!!!!!!!%!$1!)Q!!!!1!!!9S!!!!+!!!!!)!!!1!!!!!*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1A!!!0$8C=V6:<=^N%&0Y=2<\&-9[<O+:NCE+Z*+6*Q`U/4BUX&/JC,+@U1D'+N<9VK**(EEPTRB`BE1>G?/7"F`Y<8JHW$U$0\MKS8<O4FEG:V$PS\(Z\^ODMN_>]7A!>`)-(E,]:L?T?PNVXL*;R:T..$YS!;67DV<5=NG(@M;W^E]WS8GXOW/[?96^W/]WKPN.M8+^6.FK"D4^,"733OT\T.*L,S/8FLO&U7*Q0_H\KEB-QT_PXAG3>>3S@"OF>RQO\K9LHO7*NNOK;@9KA\$(S9?<#Y4<T!]`>:_<]FL`PN,1K]XWDQR;PO/NVVN0'Q)Q_-A!+U_-'\DX&\J=@W<X?W'J5BPP`C@9`7Z$LVD7R6=?QJ;0C!+\=$?%QN.RAIM\]HOPY1Y#C[>EM9#A_\KV!LL4Z,`W)8M^S/HR=1IQDG&&I&2;D-2+UNL(@9]D+.;JY$`+2B2ICPR]?)_Q:-2,NJ2"&HUA*KR#N929+08%EYT)[)#0X,8DZ_\"S`L=DH0-23XHC9Q:JT%8)-#]S%V<K#$+QSE<:)GU35UYA.X)#/<*4-)]8M#$YTJ27YB7(-QQMF>,).LI?]\OO<;[?/?_PB7#ZSVI`VJBHO?9K"YP#ST%M9GF/QF;,XCOC5*"#(A7V4C4Z)Z(/D%7KI"C>@[[EJ]/IKU906!>[5NC+5<[E:[,Y"3,X=!)H=5LM)3=]PIBFN5TJQ>$(A\_;#`=JBZ1$=WC"8HT2MOH!;>SS$>_@(S)]D]Y*Z]>R?LFM^XFC;'Z<%Y:;T\0O=)?G%2C5UI"+D=\!"',XM5)$*2TC<:R"KJ3!UL9\3*:_6NR[)!(GNM-.P9L8],L3.^N)9F/G!!<EL?(+926'CGJPR0-<K"W?L$TC?RV:]))`CX0U<"!8H-MV?O@1:D.#VU<1NS*U@12^B`K=K4?*TX@*,[=YD2"](R^1E`XT?!]@BC\/5JO&(MZ])JK=_2C@5K\RXE@Y4!HOGC'_CM_JV_,ZARD_/-*#]NC0ZV"',E3#90R`GL]^2@0,F"O6K/:`0=+M4ADPTB2Z`G,#;HM+%6^/3/]FEN[PB'R*M<S)SZ&9LAJ0V1/V2C:HD*J+^P18ZX]RE($]1"/TZ,1'D:ZPK%2YKZ0]$.J+W#;2Y9QOGJ3O'"JB9!?,Y(.Y9RU\_S@)F3=KOG^(5E&G`\7R']^T?-NZ?JYG#O4'F$+['7'S0,[,<C;S0+\D6F1?`_W?U+3;--<O#8PB05&&!P3#:[/+_!6(6_&Q624W3S13,_-6_LZOU@XC;_Q3LO&\YE1BIK[2H.SC!\G*'X1I73QA2Y163(O)1K*6)_OL/)VFH++LW!F#422JH3F7(S@,9VCC+W+?%,[7PB2#5LAP6@4G[;0=RBTV5T2+#AO4SK6.U5EP*J7._B!@J5D9!!!!AQ!"!!)!!Q!%!!!!3!!2!!!!!!!2!0%!Z1!!!&M!%1!!!!!!%1$R!/5!!!"O!"%!!!!!!"%!]1$F!!!!A9!!A!#!!!!2!0%!Z2*.;7.S<X.P:H1A77&):7EA65E347FD=G^T<W:U)&FB3'6J)&6*%EVJ9X*P=W^G>#":95BF;3"631%Q!&*45E-.#A!$4&:$1UR#6F=!!%'Q!!!%=A!!!#!!!%'1!!!!!!!!!!!!!!!A!!!!.!!!"'1!!!!=4%F#4A!!!!!!!!&A4&:45A!!!!!!!!&U5F242Q!!!!!!!!')1U.46!!!!!!!!!'=4%FW;1!!!!!!!!'Q1U^/5!!!!!!!!!(%6%UY-!!!!!%!!!(92%:%5Q!!!!!!!!)!4%FE=Q!!!!!!!!)56EF$2!!!!!)!!!)I>G6S=Q!!!!1!!!*E5U.45A!!!!!!!!,)2U.15A!!!!!!!!,=35.04A!!!!!!!!,Q;7.M.!!!!!!!!!-%;7.M/!!!!!!!!!-94%FG=!!!!!!!!!-M2F")9A!!!!!!!!.!2F"421!!!!!!!!.56F"%5!!!!!!!!!.I4%FC:!!!!!!!!!.]1E2)9A!!!!!!!!/11E2421!!!!!!!!/E6EF55Q!!!!!!!!/Y2&2)5!!!!!!!!!0-466*2!!!!!!!!!0A3%F46!!!!!!!!!0U6E.55!!!!!!!!!1)2F2"1A!!!!!!!!1=!!!!!0````]!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!]!!!!!!!!!!$`````!!!!!!!!!/!!!!!!!!!!!0````]!!!!!!!!!^!!!!!!!!!!!`````Q!!!!!!!!$]!!!!!!!!!!$`````!!!!!!!!!CQ!!!!!!!!!!0````]!!!!!!!!#.!!!!!!!!!!#`````Q!!!!!!!!*A!!!!!!!!!!$`````!!!!!!!!!HQ!!!!!!!!!!0````]!!!!!!!!#Y!!!!!!!!!!!`````Q!!!!!!!!,Q!!!!!!!!!!(`````!!!!!!!!"-Q!!!!!!!!!!P````]!!!!!!!!*S!!!!!!!!!!%`````Q!!!!!!!![M!!!!!!!!!!@`````!!!!!!!!$LQ!!!!!!!!!#0````]!!!!!!!!/T!!!!!!!!!!*`````Q!!!!!!!!\=!!!!!!!!!!L`````!!!!!!!!$OQ!!!!!!!!!!0````]!!!!!!!!/`!!!!!!!!!!!`````Q!!!!!!!!]5!!!!!!!!!!$`````!!!!!!!!$SA!!!!!!!!!!0````]!!!!!!!!0L!!!!!!!!!!!`````Q!!!!!!!"'Q!!!!!!!!!!$`````!!!!!!!!&<1!!!!!!!!!!0````]!!!!!!!!81!!!!!!!!!!!`````Q!!!!!!!#OU!!!!!!!!!!$`````!!!!!!!!+\Q!!!!!!!!!!0````]!!!!!!!!LR!!!!!!!!!!!`````Q!!!!!!!#P5!!!!!!!!!!$`````!!!!!!!!,$Q!!!!!!!!!!0````]!!!!!!!!M2!!!!!!!!!!!`````Q!!!!!!!$SI!!!!!!!!!!$`````!!!!!!!!0,!!!!!!!!!!!0````]!!!!!!!!]O!!!!!!!!!!!`````Q!!!!!!!$TE!!!!!!!!!)$`````!!!!!!!!11A!!!!!$5RP:U:J<(2F=CZD>'Q!!!!! -!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9B&-<W>';7RU:8)O<(:D<'&T=Q"16%AQ!!!!!!!!!!!!!!!;!!%!!!!!!!!"!!!!!1!?1&!!!">(<'^C97R-<W>';7RU:8)O<(:D<'&T=Q!"!!!!!!!!!!!!!!%/4'&C6EF&6S"09GJF9X1!5&2)-!!!!!!!!!!!!"=!A!!!!!!!!!!!!!!!!!!"!!!!!!!"!1!!!!1!TA$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!)F!&A!*#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71!!":$5UV@2WRP9G&M4'^H8UV42V^576"&!!!51%!!!@````]!!!>-<W>5?8"F!":!5!!"!!%-2X*P>8"4:82U;7ZH!!"?!0(C\Z4:!!!!!B>(<'^C97R-<W>';7RU:8)O<(:D<'&T=R.(<'^C97R-<W>';7RU:8)O9X2M!#J!5!!"!!)>1WRV=X2F=C"P:C"D<'&T=S"Q=GFW982F)'2B>'%!!1!$!!!!!@````]!!!!!!!!!!!%/4'&C6EF&6S"09GJF9X1!5&2)-!!!!!!!!!!!!"=!A!!!!!!!!!!!!!!!!!!"!!!!!!!#!1!!!!9!TA$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!)F!&A!*#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71!!":$5UV@2WRP9G&M4'^H8UV42V^576"&!!!51%!!!@````]!!!>-<W>5?8"F!""!-0````]'5X2S;7ZH!!!11%!!!@````]!!A.$5UU!'%"1!!)!!1!$$%>S<X6Q5W6U>'FO:Q!!8A$RYO_5`!!!!!)82WRP9G&M4'^H2GFM>'6S,GRW9WRB=X-42WRP9G&M4'^H2GFM>'6S,G.U<!!K1&!!!1!%(5.M>8.U:8)A<W9A9WRB=X-A=(*J>G&U:3"E982B!!%!"1!!!!-!!!!!!!!!!@````]!!!!!!!!!!!!!!!!!!!%/4'&C6EF&6S"09GJF9X1!5&2)-!!!!!!!!!!!!"=!A!!!!!!!!!!!!!!!!!!"!!!!!!!$!1!!!!A!TA$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!)F!&A!*#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71!!":$5UV@2WRP9G&M4'^H8UV42V^576"&!!!51%!!!@````]!!!>-<W>5?8"F!""!-0````]'5X2S;7ZH!!!11%!!!@````]!!A.$5UU!%%"4#ERP:V2Z='6.98!!!"2!5!!"!!1+1V..5W6U>'FO:Q!!'E"1!!-!!1!$!!5-2X*P>8"4:82U;7ZH!!"?!0(C\[&4!!!!!B>(<'^C97R-<W>';7RU:8)O<(:D<'&T=R.(<'^C97R-<W>';7RU:8)O9X2M!#J!5!!"!!9>1WRV=X2F=C"P:C"D<'&T=S"Q=GFW982F)'2B>'%!!1!(!!!!"!!!!!!!!!!"!!!!!P````]!!!!!!!!!!"=!A!!!!!!"!!1!!!!"!!!!!!!!!!!!!!%/4'&C6EF&6S"09GJF9X1!5&2)-!!!!!!!!!!!!"=!A!!!!!!!!!!!!!!!!!!"!!!!!!!%!1!!!!E!TA$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!)F!&A!*#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71!!":$5UV@2WRP9G&M4'^H8UV42V^576"&!!!51%!!!@````]!!!>-<W>5?8"F!""!-0````]'5X2S;7ZH!!!11%!!!@````]!!A.$5UU!%%"4#ERP:V2Z='6.98!!!!Z!5QB4>'&U:5VB=!!!&E"1!!)!"!!&#E.446.F>(2J<G=!!"J!5!!$!!%!!Q!'$%>S<X6Q5W6U>'FO:Q!!8A$RYO_B7Q!!!!)82WRP9G&M4'^H2GFM>'6S,GRW9WRB=X-42WRP9G&M4'^H2GFM>'6S,G.U<!!K1&!!!1!((5.M>8.U:8)A<W9A9WRB=X-A=(*J>G&U:3"E982B!!%!#!!!!!9!!!!!!!!!!1!!!!)!!!!$!!!!"0````]!!!!!!!!!!"=!A!!!!!!"!!1!!!!"!!!!!!!!&Q#!!!!!!!%!"!!!!!%!!!!!!!!!!!!!!1Z-97*73568)%^C;G6D>!"16%AQ!!!!!!!!!!!!&Q#!!!!!!!!!!!!!!!!!!!%!!!!!!!5"!!!!#A$/!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!C5!7!!E)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!!!&E.446^(<'^C97R-<W>@46.(8V2:5%5!!"2!1!!"`````Q!!"URP:V2Z='5!%%!Q`````Q:4>(*J<G=!!""!1!!"`````Q!#!U.441!31%!!!@````]!!A64>'&U:1!;1&!!!Q!"!!-!"!R(=G^V=&.F>(2J<G=!!""!5QJ-<W>5?8"F47&Q!!!/1&-)5X2B>'6.98!!!":!5!!#!!9!"QJ$5UV4:82U;7ZH!!"A!0(C\['3!!!!!B>(<'^C97R-<W>';7RU:8)O<(:D<'&T=R.(<'^C97R-<W>';7RU:8)O9X2M!#R!5!!#!!5!#"V$<(6T>'6S)'^G)'.M98.T)("S;8:B>'5A:'&U91!"!!E!!!!(!!!!!!!!!!%!!!!#`````Q!!!!-!!!!%!!!!"1!!!!!!!!!!!!!!!"=!A!!!!!!"!!1!!!!"!!!!!!!!&Q#!!!!!!!%!"!!!!!%!!!!!!!!!!!!!!1Z-97*73568)%^C;G6D>!"16%AQ!!!!!!!!!!!!&Q#!!!!!!!!!!!!!!!!!!!%!!!!!!!9"!!!!&A!11$$`````"F.U=GFO:Q!!%%"!!!(`````!!!$1V..!-Y!]1!!!!!!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC'V^$5UV@2WRP9G&M4'^H8UV42V^576"&,G.U<!#*1"9!#1B6=W6S)%RP:QR4>'&U:3"$;'&O:W5'5X2B>(6T#5FO>'6S=H6Q>!B3:7>J=X2F=AJ6<H*F:WFT>'6S#56S=G^S)%RP:QZ.<W2V<'5A1X*F982F:"".<W2V<'5A2'6T>(*P?76E!!!71V..8U>M<W*B<%RP:V^.5U>@6&F121!!&%"!!!(`````!!)(4'^H6(FQ:1!/1$$`````"6.U982F!"*!1!!"`````Q!%"6.U982F!"J!5!!$!!%!!Q!&$5>M<W*B<&.F>(2J<G=!$%!Q`````Q.$5UU!PA$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!(F!&A!*#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71!!!>-<W>5?8"F!"*!5!!#!!=!#!>-<W>5?8"F!"2!1!!"`````Q!*"URP:V2Z='5!%E"1!!)!"Q!%"URP:V2Z='5!%E"!!!(`````!!M&5X2B>'5!&E"1!!)!#A!-#E.446.F>(2J<G=!!"2!5!!#!!9!$1B3>7RF=SVW-1!!%E"!!!(`````!!!&5X2B>'5!&%"1!!-!!Q!"!!]'2WRP9G&M!!!11&-+4'^H6(FQ:5VB=!!!$E"4#&.U982F47&Q!!!/1&!!!A!2!")$1V..!""!5!!#!"!!%Q6$97.I:1"A!0(C]%,"!!!!!B>(<'^C97R-<W>';7RU:8)O<(:D<'&T=R.(<'^C97R-<W>';7RU:8)O9X2M!#R!5!!#!!Y!&"V$<(6T>'6S)'^G)'.M98.T)("S;8:B>'5A:'&U91!"!"5!!!!#``````````]!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"=!A!!!!!!"!!1!!!!"!!!!!!!!&Q#!!!!!!!%!"!!!!!%!!!!!!!!!!!!!!!!"$ERB9F:*26=A4W*K:7.U!&"53$!!!!!!!!!!!!!8!)!!!!!!!!!!!!!!!!!!!1!!!!!!!!)!!!!7!""!-0````]'5X2S;7ZH!!!11%!!!@````]!!!.$5UU!TA$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!)F!&A!*#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71!!":$5UV@2WRP9G&M4'^H8UV42V^576"&!!!51%!!!@````]!!A>-<W>5?8"F!!Z!-0````]&5X2B>'5!%E"!!!(`````!!1&5X2B>'5!'E"1!!-!!1!$!!5.2WRP9G&M5W6U>'FO:Q!-1$$`````!U.441#_!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!?5!7!!E)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!!!"URP:V2Z='5!%E"1!!)!"Q!)"URP:V2Z='5!&%"!!!(`````!!E(4'^H6(FQ:1!31&!!!A!(!!1(4'^H6(FQ:1!31%!!!@````]!#Q64>'&U:1!71&!!!A!+!!Q+1V..5W6U>'FO:Q!!&%"1!!)!"A!.#&*V<'6T,89R!!!31%!!!@````]!!!64>'&U:1!51&!!!Q!$!!%!$Q:(<'^C97Q!!""!5QJ-<W>5?8"F47&Q!!!/1&-)5X2B>'6.98!!!!Z!5!!#!"%!%A.$5UU!%%"1!!)!%!!4"5.B9WBF!'!!]?,Q1M%!!!!#&U>M<W*B<%RP:U:J<(2F=CZM>G.M98.T%U>M<W*B<%RP:U:J<(2F=CZD>'Q!,%"1!!)!$A!5(5.M>8.U:8)A<W9A9WRB=X-A=(*J>G&U:3"E982B!!%!&1!!!!(````_!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!8!)!!!!!!!1!%!!!!!1!!!!!!!"=!A!!!!!!"!!1!!!!"!!!!!!!!!!!!!!!!!1Z-97*73568)%^C;G6D>!"16%AQ!!!!!!!!!!!!&Q#!!!!!!!!!!!!!!!!!!!%!!!!!!!!$!!!!&A!11$$`````"F.U=GFO:Q!!%%"!!!(`````!!!$1V..!-Y!]1!!!!!!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC'V^$5UV@2WRP9G&M4'^H8UV42V^576"&,G.U<!#*1"9!#1B6=W6S)%RP:QR4>'&U:3"$;'&O:W5'5X2B>(6T#5FO>'6S=H6Q>!B3:7>J=X2F=AJ6<H*F:WFT>'6S#56S=G^S)%RP:QZ.<W2V<'5A1X*F982F:"".<W2V<'5A2'6T>(*P?76E!!!71V..8U>M<W*B<%RP:V^.5U>@6&F121!!&%"!!!(`````!!)(4'^H6(FQ:1!/1$$`````"6.U982F!"*!1!!"`````Q!%"6.U982F!"J!5!!$!!%!!Q!&$5>M<W*B<&.F>(2J<G=!$%!Q`````Q.$5UU!PA$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!(F!&A!*#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71!!!>-<W>5?8"F!"*!5!!#!!=!#!>-<W>5?8"F!"2!1!!"`````Q!*"URP:V2Z='5!%E"1!!)!"Q!%"URP:V2Z='5!%E"!!!(`````!!M&5X2B>'5!&E"1!!)!#A!-#E.446.F>(2J<G=!!"2!5!!#!!9!$1B3>7RF=SVW-1!!%E"!!!(`````!!!&5X2B>'5!&%"1!!-!!Q!"!!]'2WRP9G&M!!!11&-+4'^H6(FQ:5VB=!!!$E"4#&.U982F47&Q!!!/1&!!!A!2!")$1V..!""!5!!#!"!!%Q6$97.I:1"A!0(C]%,"!!!!!B>(<'^C97R-<W>';7RU:8)O<(:D<'&T=R.(<'^C97R-<W>';7RU:8)O9X2M!#R!5!!#!!Y!&"V$<(6T>'6S)'^G)'.M98.T)("S;8:B>'5A:'&U91!"!"5!!!!"`````A!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!&Q#!!!!!!!%!"!!!!!%!!!!!!!!8!)!!!!!!!1!%!!!!!1!!!!!!!!!!!!!!!!%/4'&C6EF&6S"09GJF9X1!5&2)-!!!!!!!!!!!!"=!A!!!!!!!!!!!!!!!!!!"!!!!!!!!!!!!!"9!%%!Q`````Q:4>(*J<G=!!""!1!!"`````Q!!!U.441$/!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!C5!7!!E)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!!!&E.446^(<'^C97R-<W>@46.(8V2:5%5!!"2!1!!"`````Q!#"URP:V2Z='5!$E!Q`````Q64>'&U:1!31%!!!@````]!"!64>'&U:1!;1&!!!Q!"!!-!"1V(<'^C97R4:82U;7ZH!!R!-0````]$1V..!,Y!]1!!!!!!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC'V^$5UV@2WRP9G&M4'^H8UV42V^576"&,G.U<!"Z1"9!#1B6=W6S)%RP:QR4>'&U:3"$;'&O:W5'5X2B>(6T#5FO>'6S=H6Q>!B3:7>J=X2F=AJ6<H*F:WFT>'6S#56S=G^S)%RP:QZ.<W2V<'5A1X*F982F:"".<W2V<'5A2'6T>(*P?76E!!!(4'^H6(FQ:1!31&!!!A!(!!A(4'^H6(FQ:1!51%!!!@````]!#1>-<W>5?8"F!"*!5!!#!!=!"!>-<W>5?8"F!"*!1!!"`````Q!,"6.U982F!":!5!!#!!I!$!J$5UV4:82U;7ZH!!!51&!!!A!'!!U)5H6M:8-N>D%!!"*!1!!"`````Q!!"6.U982F!"2!5!!$!!-!!1!0"E>M<W*B<!!!%%"4#ERP:V2Z='6.98!!!!Z!5QB4>'&U:5VB=!!!$E"1!!)!%1!3!U.441!11&!!!A!1!"-&1W&D;'5!>1$RYP$PT1!!!!-A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)24'^H2GFM>'6S,GRW9WRB=X-.4'^H2GFM>'6S,G.U<!!M1&!!!A!/!"1>1WRV=X2F=C"P:C"D<'&T=S"Q=GFW982F)'2B>'%!!1!6!!!!!@````Y!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"=!A!!!!!!"!!1!!!!"!!!!!!!!&Q#!!!!!!!%!"!!!!!%!!!!!!!!!!!!!!!%/4'&C6EF&6S"09GJF9X1!5&2)-!!!!!!!!!!!!"=!A!!!!!!!!!!!!!!!!!!"!!!!!!!"!!!!!"A!%%!Q`````Q:4>(*J<G=!!""!1!!"`````Q!!!U.441%V!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BZ@1V..8U>M<W*B<%RP:V^'35R526*@6&F123ZD>'Q!\5!7!!Y)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:":4>'&U:3!N)%FO>'6S<G&M)&.U982F&&.U982F)#UA5XFO9S".:8.T97>F&6.U982F)#UA18.Z<G-A476T=W&H:2"4>'&U:3!N)&*F=X"P<H.F%&.U982F)#UA1W^N='RF>'5!!":$5UV@2WRP9G&M4'^H8UV42V^576"&!!!51%!!!@````]!!A>-<W>5?8"F!!Z!-0````]&5X2B>'5!%E"!!!(`````!!1&5X2B>'5!'E"1!!-!!1!$!!5.2WRP9G&M5W6U>'FO:Q!-1$$`````!U.441#_!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!?5!7!!E)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!!!"URP:V2Z='5!%E"1!!)!"Q!)"URP:V2Z='5!&%"!!!(`````!!E(4'^H6(FQ:1!31&!!!A!(!!1(4'^H6(FQ:1!31%!!!@````]!#Q64>'&U:1!71&!!!A!+!!Q+1V..5W6U>'FO:Q!!&%"1!!)!"A!.#&*V<'6T,89R!!$/!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!C5!7!!E)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!!!&E.446^(<'^C97R-<W>@46.(8V2:5%5!!"2!1!!"`````Q!0"URP:V2Z='5!%E"!!!(`````!!!&5X2B>'5!&%"1!!-!%!!"!"%'2WRP9G&M!!!11&-+4'^H6(FQ:5VB=!!!$E"4#&.U982F47&Q!!!/1&!!!A!4!"1$1V..!""!5!!#!")!&16$97.I:1"V!0(C]0(O!!!!!S"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9B&-<W>';7RU:8)O<(:D<'&T=QV-<W>';7RU:8)O9X2M!#R!5!!#!!Y!&BV$<(6T>'6S)'^G)'.M98.T)("S;8:B>'5A:'&U91!"!"=!!!!1!!!!!!!!!!%!!!!#!!!!!Q!!!!1!!!!&!!!!"A!!!!=!!!!)!!!!#1!!!!I!!!!,!!!!$!!!!!U!!!!/!!!!$Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!&Q#!!!!!!!%!"!!!!!%!!!!!!!!8!)!!!!!!!1!%!!!!!1!!!!!!!!!!!!!"$ERB9F:*26=A4W*K:7.U!&"53$!!!!!!!!!!!!!8!)!!!!!!!!!!!!!!!!!!!1!!!!!!!A!!!!!7!""!-0````]'5X2S;7ZH!!!11%!!!@````]!!!.$5UU".1$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)?8U.446^(<'^C97R-<W>@2EF-6%638V2:5%5O9X2M!/V!&A!/#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:7175X2B>'5A,3"*<H2F=GZB<#"4>'&U:224>'&U:3!N)&.Z<G-A476T=W&H:264>'&U:3!N)%&T?7ZD)%VF=X.B:W515X2B>'5A,3"3:8.Q<WZT:2"4>'&U:3!N)%.P<8"M:82F!!!71V..8U>M<W*B<%RP:V^.5U>@6&F121!!&%"!!!(`````!!)(4'^H6(FQ:1!/1$$`````"6.U982F!"*!1!!"`````Q!%"6.U982F!"J!5!!$!!%!!Q!&$5>M<W*B<&.F>(2J<G=!$%!Q`````Q.$5UU!PA$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!(F!&A!*#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71!!!>-<W>5?8"F!"*!5!!#!!=!#!>-<W>5?8"F!"2!1!!"`````Q!*"URP:V2Z='5!%E"1!!)!"Q!%"URP:V2Z='5!%E"!!!(`````!!M&5X2B>'5!&E"1!!)!#A!-#E.446.F>(2J<G=!!"2!5!!#!!9!$1B3>7RF=SVW-1!!%E"!!!(`````!!!&5X2B>'5!&%"1!!-!!Q!"!!]'2WRP9G&M!!!11&-+4'^H6(FQ:5VB=!!!$E"4#&.U982F47&Q!!!/1&!!!A!2!")$1V..!""!5!!#!"!!%Q6$97.I:1"V!0(C]0)@!!!!!S"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9B&-<W>';7RU:8)O<(:D<'&T=QV-<W>';7RU:8)O9X2M!#R!5!!#!!Y!&"V$<(6T>'6S)'^G)'.M98.T)("S;8:B>'5A:'&U91!"!"5!!!!1!!!!!!!!!!%!!!!#!!!!!Q!!!!1!!!!&!!!!"A!!!!=!!!!)!!!!#1!!!!I!!!!,!!!!$!!!!!U!!!!/!!!!$Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!&Q#!!!!!!!%!"!!!!!%!!!!!!!!8!)!!!!!!!1!%!!!!!1!!!!!!!!!!!!!!!!%/4'&C6EF&6S"09GJF9X1!5&2)-!!!!!!!!!!!!"=!A!!!!!!!!!!!!!!!!!!"!!!!!!!$!!!!!"9!%%!Q`````Q:4>(*J<G=!!""!1!!"`````Q!!!U.441$/!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!C5!7!!E)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!!!&E.446^(<'^C97R-<W>@46.(8V2:5%5!!"2!1!!"`````Q!#"URP:V2Z='5!$E!Q`````Q64>'&U:1!31%!!!@````]!"!64>'&U:1!;1&!!!Q!"!!-!"1V(<'^C97R4:82U;7ZH!!R!-0````]$1V..!,Y!]1!!!!!!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC'V^$5UV@2WRP9G&M4'^H8UV42V^576"&,G.U<!"Z1"9!#1B6=W6S)%RP:QR4>'&U:3"$;'&O:W5'5X2B>(6T#5FO>'6S=H6Q>!B3:7>J=X2F=AJ6<H*F:WFT>'6S#56S=G^S)%RP:QZ.<W2V<'5A1X*F982F:"".<W2V<'5A2'6T>(*P?76E!!!(4'^H6(FQ:1!31&!!!A!(!!A(4'^H6(FQ:1!51%!!!@````]!#1>-<W>5?8"F!"*!5!!#!!=!"!>-<W>5?8"F!"*!1!!"`````Q!,"6.U982F!":!5!!#!!I!$!J$5UV4:82U;7ZH!!!51&!!!A!'!!U)5H6M:8-N>D%!!"*!1!!"`````Q!!"6.U982F!"2!5!!$!!-!!1!0"E>M<W*B<!!!%%"4#ERP:V2Z='6.98!!!!Z!5QB4>'&U:5VB=!!!$E"1!!)!%1!3!U.441!11&!!!A!1!"-&1W&D;'5!>1$RYP$T!!!!!!-A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)24'^H2GFM>'6S,GRW9WRB=X-.4'^H2GFM>'6S,G.U<!!M1&!!!A!/!"1>1WRV=X2F=C"P:C"D<'&T=S"Q=GFW982F)'2B>'%!!1!6!!!!%!!!!!!!!!!"!!!!!A!!!!-!!!!%!!!!"1!!!!9!!!!(!!!!#!!!!!E!!!!+!!!!#Q!!!!Q!!!!.!!!!$A!!!!]!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"=!A!!!!!!"!!1!!!!"!!!!!!!!&Q#!!!!!!!%!"!!!!!%!!!!!!!!!!!!!!!%/4'&C6EF&6S"09GJF9X1!5&2)-!!!!!!!!!!!!"=!A!!!!!!!!!!!!!!!!!!"!!!!!!!%!!!!!"E!%%!Q`````Q:4>(*J<G=!!""!1!!"`````Q!!!U.441$/!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!C5!7!!E)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!!!&E.446^(<'^C97R-<W>@46.(8V2:5%5!!"2!1!!"`````Q!#"URP:V2Z='5!$E!Q`````Q64>'&U:1!31%!!!@````]!"!64>'&U:1!;1&!!!Q!"!!-!"1V(<'^C97R4:82U;7ZH!!R!-0````]$1V..!,Y!]1!!!!!!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC'V^$5UV@2WRP9G&M4'^H8UV42V^576"&,G.U<!"Z1"9!#1B6=W6S)%RP:QR4>'&U:3"$;'&O:W5'5X2B>(6T#5FO>'6S=H6Q>!B3:7>J=X2F=AJ6<H*F:WFT>'6S#56S=G^S)%RP:QZ.<W2V<'5A1X*F982F:"".<W2V<'5A2'6T>(*P?76E!!!(4'^H6(FQ:1!31&!!!A!(!!A(4'^H6(FQ:1!51%!!!@````]!#1>-<W>5?8"F!"*!5!!#!!=!"!>-<W>5?8"F!"*!1!!"`````Q!,"6.U982F!,Y!]1!!!!!!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC(6^$5UV@2WRP9G&M4'^H8V.5162&8V2:5%5O9X2M!(>!&A!&&F.U982F)#UA37ZU:8*O97QA5X2B>'555X2B>'5A,3"4?7ZD)%VF=X.B:W565X2B>'5A,3""=XFO9S".:8.T97>F%&.U982F)#UA5G6T='^O=W515X2B>'5A,3"$<WVQ<'6U:1!(4'^H6(FQ:1!31&!!!A!(!!U(4'^H6(FQ:1!71%!!!@````]!$AF4>'&U:62Z='5!'%"1!!-!#A!-!!]+1V..5W6U>'FO:Q!!&%"1!!)!"A!1#&*V<'6T,89R!!!31%!!!@````]!!!64>'&U:1!51&!!!Q!$!!%!%A:(<'^C97Q!!""!5QJ-<W>5?8"F47&Q!!!/1&-)5X2B>'6.98!!!!Z!5!!#!"1!&1.$5UU!%%"1!!)!%Q!7"5.B9WBF!(5!]?,Q^#Y!!!!$)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC%5RP:U:J<(2F=CZM>G.M98.T$5RP:U:J<(2F=CZD>'Q!,%"1!!)!%1!8(5.M>8.U:8)A<W9A9WRB=X-A=(*J>G&U:3"E982B!!%!'!!!!"%!!!!!!!!!!1!!!!)!!!!$!!!!"!!!!!5!!!!'!!!!"`````]!!!!)!!!!#1!!!!I!!!!,!!!!$!!!!!U!!!!/!!!!$Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"=!A!!!!!!"!!1!!!!"!!!!!!!!&Q#!!!!!!!%!"!!!!!%!!!!!!!!!!!!!!!%/4'&C6EF&6S"09GJF9X1!5&2)-!!!!!!!!!!!!"=!A!!!!!!!!!!!!!!!!!!"!!!!!!!&!!!!!"I!%%!Q`````Q:4>(*J<G=!!""!1!!"`````Q!!!U.441$/!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!C5!7!!E)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!!!&E.446^(<'^C97R-<W>@46.(8V2:5%5!!"2!1!!"`````Q!#"URP:V2Z='5!$E!Q`````Q64>'&U:1!31%!!!@````]!"!64>'&U:1#_!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BV@1V..8U>M<W*B<%RP:V^46%&526^576"&,G.U<!"X1"9!"2:4>'&U:3!N)%FO>'6S<G&M)&.U982F&&.U982F)#UA5XFO9S".:8.T97>F&6.U982F)#UA18.Z<G-A476T=W&H:2"4>'&U:3!N)&*F=X"P<H.F%&.U982F)#UA1W^N='RF>'5!"URP:V2Z='5!&E"!!!(`````!!9*5X2B>'65?8"F!"R!5!!%!!%!!Q!&!!=.2WRP9G&M5W6U>'FO:Q!-1$$`````!U.441#_!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!?5!7!!E)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!!!"URP:V2Z='5!%E"1!!)!#1!+"URP:V2Z='5!&%"!!!(`````!!M(4'^H6(FQ:1!31&!!!A!*!!1(4'^H6(FQ:1!31%!!!@````]!$164>'&U:1!31&!!!A!*!!9(4'^H6(FQ:1!71%!!!@````]!$QF4>'&U:62Z='5!'%"1!!-!$!!/!"!+1V..5W6U>'FO:Q!!%%"1!!)!#!!2"6*V<'6T!"*!1!!"`````Q!!"6.U982F!"2!5!!$!!-!!1!4"E>M<W*B<!!!%%"4#ERP:V2Z='6.98!!!!Z!5QB4>'&U:5VB=!!!$E"1!!)!&1!7!U.441!11&!!!A!5!"=&1W&D;'5!>1$RYP$UI1!!!!-A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)24'^H2GFM>'6S,GRW9WRB=X-.4'^H2GFM>'6S,G.U<!!M1&!!!A!3!"A>1WRV=X2F=C"P:C"D<'&T=S"Q=GFW982F)'2B>'%!!1!:!!!!%A!!!!!!!!!"!!!!!A!!!!-!!!!%`````Q!!!!5!!!!'!!!!"Q!!!!A!!!!*!!!!#A!!!!M!!!!-!!!!$1!!!!Y!!!!0!!!!%!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!8!)!!!!!!!1!%!!!!!1!!!!!!!"=!A!!!!!!"!!1!!!!"!!!!!!!!!!!!!!!"$ERB9F:*26=A4W*K:7.U!&"53$!!!!!!!!!!!!!8!)!!!!!!!!!!!!!!!!!!!1!!!!!!"A!!!!!;!""!-0````]'5X2S;7ZH!!!11%!!!@````]!!!.$5UU!TA$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!)F!&A!*#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71!!":$5UV@2WRP9G&M4'^H8UV42V^576"&!!!51%!!!@````]!!A>-<W>5?8"F!!Z!-0````]&5X2B>'5!%E"!!!(`````!!1&5X2B>'5!L!$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)>8U.446^(<'^C97R-<W>@5V2"6%6@6&F123ZD>'Q!:5!7!!175X2B>'5A,3"*<H2F=GZB<#"4>'&U:2B4>'&U:3!N)%6Y>'6S<G&M)%VF=X.B:W515X2B>'5A,3"3:8.Q<WZT:2"4>'&U:3!N)%.P<8"M:82F!!>-<W>5?8"F!":!1!!"`````Q!'#6.U982F6(FQ:1!=1&!!"!!"!!-!"1!($5>M<W*B<&.F>(2J<G=!$%!Q`````Q.$5UU!PA$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!(F!&A!*#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71!!!>-<W>5?8"F!"*!5!!#!!E!#A>-<W>5?8"F!"2!1!!"`````Q!,"URP:V2Z='5!%E"1!!)!#1!%"URP:V2Z='5!%E"!!!(`````!!U&5X2B>'5!%E"1!!)!#1!'"URP:V2Z='5!&E"!!!(`````!!]*5X2B>'65?8"F!"B!5!!$!!Q!$A!1#E.446.F>(2J<G=!!""!5!!#!!A!%163>7RF=Q!31%!!!@````]!!!64>'&U:1!51&!!!Q!$!!%!%Q:(<'^C97Q!!""!5QJ-<W>5?8"F47&Q!!!/1&-)5X2B>'6.98!!!!Z!5!!#!"5!&A.$5UU!%%"1!!)!&!!8"5.B9WBF!(5!]?,Q^FQ!!!!$)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC%5RP:U:J<(2F=CZM>G.M98.T$5RP:U:J<(2F=CZD>'Q!,%"1!!)!%A!9(5.M>8.U:8)A<W9A9WRB=X-A=(*J>G&U:3"E982B!!%!'1!!!")!!!!!!!!!!1!!!!)!!!!$!!!!"0````]!!!!'!!!!"Q!!!!D`````!!!!#A!!!!M!!!!-!!!!$1!!!!Y!!!!0!!!!%!!!!"%!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!&Q#!!!!!!!%!"!!!!!%!!!!!!!!8!)!!!!!!!1!%!!!!!1!!!!!!!!!!!!%/4'&C6EF&6S"09GJF9X1!5&2)-!!!!!!!!!!!!"=!A!!!!!!!!!!!!!!!!!!"!!!!!!!(!!!!!"M!%%!Q`````Q:4>(*J<G=!!""!1!!"`````Q!!!U.441$/!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!C5!7!!E)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!!!&E.446^(<'^C97R-<W>@46.(8V2:5%5!!"2!1!!"`````Q!#"URP:V2Z='5!$E!Q`````Q64>'&U:1!31%!!!@````]!"!64>'&U:1#M!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BV@1V..8U>M<W*B<%RP:V^46%&526^576"&,G.U<!"F1"9!"":4>'&U:3!N)%FO>'6S<G&M)&.U982F'&.U982F)#UA28BU:8*O97QA476T=W&H:2"4>'&U:3!N)&*F=X"P<H.F%&.U982F)#UA1W^N='RF>'5!"URP:V2Z='5!&E"!!!(`````!!9*5X2B>'65?8"F!"R!5!!%!!%!!Q!&!!=.2WRP9G&M5W6U>'FO:Q!-1$$`````!U.441#_!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!?5!7!!E)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!!!"URP:V2Z='5!%E"1!!)!#1!+"URP:V2Z='5!&%"!!!(`````!!M(4'^H6(FQ:1!31&!!!A!*!!1(4'^H6(FQ:1!31%!!!@````]!$164>'&U:1!31&!!!A!*!!9(4'^H6(FQ:1!71%!!!@````]!$QF4>'&U:62Z='5!'%"1!!-!$!!/!"!+1V..5W6U>'FO:Q!!%%"1!!)!#!!2"6*V<'6T!"*!1!!"`````Q!!"6.U982F!"2!5!!$!!-!!1!4"E>M<W*B<!!!%%"4#ERP:V2Z='6.98!!!!Z!5QB4>'&U:5VB=!!!%E"4$&.U982F6(FQ:5VB=!!!%%"1!!-!&1!7!"=$1V..!""!5!!#!"1!'!6$97.I:1"V!0(C]0GY!!!!!S"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9B&-<W>';7RU:8)O<(:D<'&T=QV-<W>';7RU:8)O9X2M!#R!5!!#!")!'2V$<(6T>'6S)'^G)'.M98.T)("S;8:B>'5A:'&U91!"!"I!!!!4!!!!!!!!!!%!!!!#!!!!!Q!!!!1!!!!&!!!!"A!!!!=!!!!)!!!!#1!!!!I!!!!,!!!!$!!!!!U!!!!/!!!!$Q!!!"!!!!!2`````Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!8!)!!!!!!!1!%!!!!!1!!!!!!!"=!A!!!!!!"!!1!!!!"!!!!!!!!&Q#!!!!!!!%!"!!!!!%!!!!!!!!!!!!"$ERB9F:*26=A4W*K:7.U!&"53$!!!!!!!!!!!!!8!)!!!!!!!!!!!!!!!!!!!1!!!!!!#!!!!!!<!""!-0````]'5X2S;7ZH!!!11%!!!@````]!!!.$5UU!TA$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!)F!&A!*#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71!!":$5UV@2WRP9G&M4'^H8UV42V^576"&!!!51%!!!@````]!!A>-<W>5?8"F!!Z!-0````]&5X2B>'5!%E"!!!(`````!!1&5X2B>'5!L!$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)>8U.446^(<'^C97R-<W>@5V2"6%6@6&F123ZD>'Q!:5!7!!175X2B>'5A,3"*<H2F=GZB<#"4>'&U:2B4>'&U:3!N)%6Y>'6S<G&M)%VF=X.B:W515X2B>'5A,3"3:8.Q<WZT:2"4>'&U:3!N)%.P<8"M:82F!!>-<W>5?8"F!":!1!!"`````Q!'#6.U982F6(FQ:1!=1&!!"!!"!!-!"1!($5>M<W*B<&.F>(2J<G=!$%!Q`````Q.$5UU!PA$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!(F!&A!*#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71!!!>-<W>5?8"F!"*!5!!#!!E!#A>-<W>5?8"F!"2!1!!"`````Q!,"URP:V2Z='5!%E"1!!)!#1!%"URP:V2Z='5!%E"!!!(`````!!U&5X2B>'5!%E"1!!)!#1!'"URP:V2Z='5!&E"!!!(`````!!]*5X2B>'65?8"F!"B!5!!$!!Q!$A!1#E.446.F>(2J<G=!!""!5!!#!!A!%163>7RF=Q!31%!!!@````]!!!64>'&U:1!71&!!"!!$!!%!%Q!("E>M<W*B<!!!%%"4#ERP:V2Z='6.98!!!!Z!5QB4>'&U:5VB=!!!%E"4$&.U982F6(FQ:5VB=!!!%%"1!!-!&1!7!"=$1V..!""!5!!#!"1!'!6$97.I:1"V!0(C]0JG!!!!!S"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9B&-<W>';7RU:8)O<(:D<'&T=QV-<W>';7RU:8)O9X2M!#R!5!!#!")!'2V$<(6T>'6S)'^G)'.M98.T)("S;8:B>'5A:'&U91!"!"I!!!!5!!!!!!!!!!%!!!!#!!!!!Q!!!!1!!!!&!!!!"A!!!!=!!!!)!!!!#1!!!!I!!!!,!!!!$!!!!!U!!!!/`````Q!!!!]!!!!1!!!!%1!!!")!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"=!A!!!!!!"!!1!!!!"!!!!!!!!&Q#!!!!!!!%!"!!!!!%!!!!!!!!8!)!!!!!!!1!%!!!!!1!!!!!!!!!!!!!!!1Z-97*73568)%^C;G6D>!"16%AQ!!!!!!!!!!!!&Q#!!!!!!!!!!!!!!!!!!!%!!!!!!!E!!!!!'Q!11$$`````"F.U=GFO:Q!!%%"!!!(`````!!!$1V..!-Y!]1!!!!!!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC'V^$5UV@2WRP9G&M4'^H8UV42V^576"&,G.U<!#*1"9!#1B6=W6S)%RP:QR4>'&U:3"$;'&O:W5'5X2B>(6T#5FO>'6S=H6Q>!B3:7>J=X2F=AJ6<H*F:WFT>'6S#56S=G^S)%RP:QZ.<W2V<'5A1X*F982F:"".<W2V<'5A2'6T>(*P?76E!!!71V..8U>M<W*B<%RP:V^.5U>@6&F121!!&%"!!!(`````!!)(4'^H6(FQ:1!/1$$`````"6.U982F!"*!1!!"`````Q!%"6.U982F!+Q!]1!!!!!!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC(6^$5UV@2WRP9G&M4'^H8V.5162&8V2:5%5O9X2M!'6!&A!%&F.U982F)#UA37ZU:8*O97QA5X2B>'595X2B>'5A,3"&?(2F=GZB<#".:8.T97>F%&.U982F)#UA5G6T='^O=W515X2B>'5A,3"$<WVQ<'6U:1!(4'^H6(FQ:1!71%!!!@````]!"AF4>'&U:62Z='5!&E"1!!1!!1!$!!5!"Q:(<'^C97Q!!!R!-0````]$1V..!,Y!]1!!!!!!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC'V^$5UV@2WRP9G&M4'^H8UV42V^576"&,G.U<!"Z1"9!#1B6=W6S)%RP:QR4>'&U:3"$;'&O:W5'5X2B>(6T#5FO>'6S=H6Q>!B3:7>J=X2F=AJ6<H*F:WFT>'6S#56S=G^S)%RP:QZ.<W2V<'5A1X*F982F:"".<W2V<'5A2'6T>(*P?76E!!!(4'^H6(FQ:1!31&!!!A!*!!I(4'^H6(FQ:1!51%!!!@````]!#Q>-<W>5?8"F!"*!5!!#!!E!"!>-<W>5?8"F!"*!1!!"`````Q!."6.U982F!"*!5!!#!!E!"A>-<W>5?8"F!":!1!!"`````Q!0#6.U982F6(FQ:1!11&!!!Q!-!!Y!%!.$5UU!%%"1!!)!#!!2"6*V<'6T!"*!1!!"`````Q!!"6.U982F!"*!5!!#!!%!%Q:(<'^C97Q!!""!5QJ-<W>5?8"F47&Q!!!/1&-)5X2B>'6.98!!!"*!5QR4>'&U:62Z='6.98!!!""!5!!$!"5!&A!8!U.441!11&!!!A!5!"A&1W&D;'5!>1$RYP$\LQ!!!!-A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)24'^H2GFM>'6S,GRW9WRB=X-.4'^H2GFM>'6S,G.U<!!M1&!!!A!3!"E>1WRV=X2F=C"P:C"D<'&T=S"Q=GFW982F)'2B>'%!!1!;!!!!%A!!!!!!!!!"!!!!!A!!!!-!!!!%!!!!"1!!!!9!!!!(!!!!#!!!!!E!!!!+!!!!#Q!!!!U!!!!/!!!!%!!!!"%!!!!3!!!!%Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"=!A!!!!!!"!!1!!!!"!!!!!!!!&Q#!!!!!!!%!"!!!!!%!!!!!!!!8!)!!!!!!!1!%!!!!!1!!!!!!!!!!!!%/4'&C6EF&6S"09GJF9X1!5&2)-!!!!!!!!!!!!"=!A!!!!!!!!!!!!!!!!!!"!!!!!!!+!!!!!"]!%%!Q`````Q:4>(*J<G=!!""!1!!"`````Q!!!U.441$/!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!C5!7!!E)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!!!&E.446^(<'^C97R-<W>@46.(8V2:5%5!!"2!1!!"`````Q!#"URP:V2Z='5!$E!Q`````Q64>'&U:1!31%!!!@````]!"!64>'&U:1#M!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BV@1V..8U>M<W*B<%RP:V^46%&526^576"&,G.U<!"F1"9!"":4>'&U:3!N)%FO>'6S<G&M)&.U982F'&.U982F)#UA28BU:8*O97QA476T=W&H:2"4>'&U:3!N)&*F=X"P<H.F%&.U982F)#UA1W^N='RF>'5!"URP:V2Z='5!&E"!!!(`````!!9*5X2B>'65?8"F!":!5!!%!!%!!Q!&!!='2WRP9G&M!!!-1$$`````!U.441#_!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!?5!7!!E)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!!!"URP:V2Z='5!%E"1!!)!#1!+"URP:V2Z='5!&%"!!!(`````!!M(4'^H6(FQ:1!31&!!!A!*!!1(4'^H6(FQ:1!31%!!!@````]!$164>'&U:1!31&!!!A!*!!9(4'^H6(FQ:1!71%!!!@````]!$QF4>'&U:62Z='5!%%"1!!-!$!!/!"!$1V..!!R!)1:&<G&C<'5!!"6!#A!06'BS:7&T;'^M:#AD,X-J!"6!#A!/1WBF9WN1:8*J<W1I=SE!!"B!5!!$!")!%Q!5#V"F=GFP:'FD4'^H!"*!5!!$!!A!%1!6"6*V<'6T!"*!1!!"`````Q!!"6.U982F!"*!5!!#!!%!&Q:(<'^C97Q!!""!5QJ-<W>5?8"F47&Q!!!/1&-)5X2B>'6.98!!!"*!5QR4>'&U:62Z='6.98!!!""!5!!$!"E!'A!<!U.441!11&!!!A!9!"Q&1W&D;'5!>1$RYW*2BA!!!!-A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)24'^H2GFM>'6S,GRW9WRB=X-.4'^H2GFM>'6S,G.U<!!M1&!!!A!7!"U>1WRV=X2F=C"P:C"D<'&T=S"Q=GFW982F)'2B>'%!!1!?!!!!%Q!!!!!!!!!"!!!!!A!!!!-!!!!%!!!!"1!!!!9!!!!(!!!!#!!!!!H`````!!!!#A!!!!M!!!!-!!!!$1!!!!Y!!!!0!!!!%!!!!"%!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!$`Q!!!!!!!!0`!!!!!!!!!!!!!!!!!!!"=!A!!!!!!"!!1!!!!"!!!!!!!!&Q#!!!!!!!%!"!!!!!%!!!!!!!!8!)!!!!!!!1!%!!!!!1!!!!!!!!!!!!!!!!%/4'&C6EF&6S"09GJF9X1!5&2)-!!!!!!!!!!!!"=!A!!!!!!!!!!!!!!!!!!"!!!!!!!,!!!!!"]!%%!Q`````Q:4>(*J<G=!!""!1!!"`````Q!!!U.441$/!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!C5!7!!E)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!!!&E.446^(<'^C97R-<W>@46.(8V2:5%5!!"2!1!!"`````Q!#"URP:V2Z='5!$E!Q`````Q64>'&U:1!31%!!!@````]!"!64>'&U:1#M!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BV@1V..8U>M<W*B<%RP:V^46%&526^576"&,G.U<!"F1"9!"":4>'&U:3!N)%FO>'6S<G&M)&.U982F'&.U982F)#UA28BU:8*O97QA476T=W&H:2"4>'&U:3!N)&*F=X"P<H.F%&.U982F)#UA1W^N='RF>'5!"URP:V2Z='5!&E"!!!(`````!!9*5X2B>'65?8"F!":!5!!%!!%!!Q!&!!='2WRP9G&M!!!-1$$`````!U.441#_!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!?5!7!!E)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!!!"URP:V2Z='5!%E"1!!)!#1!+"URP:V2Z='5!&%"!!!(`````!!M(4'^H6(FQ:1!31&!!!A!*!!1(4'^H6(FQ:1!31%!!!@````]!$164>'&U:1!31&!!!A!*!!9(4'^H6(FQ:1!71%!!!@````]!$QF4>'&U:62Z='5!%%"1!!-!$!!/!"!$1V..!!R!)1:&<G&C<'5!!"6!#A!06'BS:7&T;'^M:#AD,X-J!"6!#A!/1WBF9WN1:8*J<W1I=SE!!"B!5!!$!")!%Q!5#V"F=GFP:'FD4'^H!"*!5!!$!!A!%1!6"6*V<'6T!"*!1!!"`````Q!!"6.U982F!"*!5!!#!!%!&Q:(<'^C97Q!!""!5QJ-<W>5?8"F47&Q!!!/1&-)5X2B>'6.98!!!"*!5QR4>'&U:62Z='6.98!!!""!5!!$!"E!'A!<!U.441!11&!!!A!9!"Q&1W&D;'5!>1$RYW/U\!!!!!-A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)24'^H2GFM>'6S,GRW9WRB=X-.4'^H2GFM>'6S,G.U<!!M1&!!!A!7!"U>1WRV=X2F=C"P:C"D<'&T=S"Q=GFW982F)'2B>'%!!1!?!!!!&A!!!!!!!!!"!!!!!A!!!!-!!!!%!!!!"1!!!!9!!!!(!!!!#!!!!!E!!!!+!!!!#Q!!!!Q!!!!.!!!!$A!!!!]!!!!1!!!!%1!!!")!!!!4!!!!&!!!!"5!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!5!5!!!!!!!!1!!!!!!!!!!!!!!!!!!!!"=!A!!!!!!"!!1!!!!"!!!!!!!!&Q#!!!!!!!%!"!!!!!%!!!!!!!!8!)!!!!!!!1!%!!!!!1!!!!!!!!!!!!!!!!%/4'&C6EF&6S"09GJF9X1!5&2)-!!!!!!!!!!!!"=!A!!!!!!!!!!!!!!!!!!"!!!!!!!-!!!!!"]!%%!Q`````Q:4>(*J<G=!!""!1!!"`````Q!!!U.441$/!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!C5!7!!E)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!!!&E.446^(<'^C97R-<W>@46.(8V2:5%5!!"2!1!!"`````Q!#"URP:V2Z='5!$E!Q`````Q64>'&U:1!31%!!!@````]!"!64>'&U:1#M!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BV@1V..8U>M<W*B<%RP:V^46%&526^576"&,G.U<!"F1"9!"":4>'&U:3!N)%FO>'6S<G&M)&.U982F'&.U982F)#UA28BU:8*O97QA476T=W&H:2"4>'&U:3!N)&*F=X"P<H.F%&.U982F)#UA1W^N='RF>'5!"URP:V2Z='5!&E"!!!(`````!!9*5X2B>'65?8"F!":!5!!%!!%!!Q!&!!='2WRP9G&M!!!-1$$`````!U.441#_!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!?5!7!!E)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!!!"URP:V2Z='5!%E"1!!)!#1!+"URP:V2Z='5!&%"!!!(`````!!M(4'^H6(FQ:1!31&!!!A!*!!1(4'^H6(FQ:1!31%!!!@````]!$164>'&U:1!31&!!!A!*!!9(4'^H6(FQ:1!71%!!!@````]!$QF4>'&U:62Z='5!%%"1!!-!$!!/!"!$1V..!!R!)1:&<G&C<'5!!"6!#A!06'BS:7&T;'^M:#AD,X-J!"6!#A!/1WBF9WN1:8*J<W1I=SE!!"B!5!!$!")!%Q!5#V"F=GFP:'FD4'^H!"*!5!!$!!A!%1!6"6*V<'6T!"*!1!!"`````Q!!"6.U982F!"*!5!!#!!%!&Q:(<'^C97Q!!""!5QJ-<W>5?8"F47&Q!!!/1&-)5X2B>'6.98!!!"*!5QR4>'&U:62Z='6.98!!!""!5!!$!"E!'A!<!U.441!11&!!!A!9!"Q&1W&D;'5!>1$RYW/U^!!!!!-A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)24'^H2GFM>'6S,GRW9WRB=X-.4'^H2GFM>'6S,G.U<!!M1&!!!A!7!"U>1WRV=X2F=C"P:C"D<'&T=S"Q=GFW982F)'2B>'%!!1!?!!!!&A!!!!!!!!!"!!!!!A!!!!-!!!!%!!!!"1!!!!9!!!!(!!!!#!!!!!E!!!!+!!!!#Q!!!!Q!!!!.!!!!$A!!!!]!!!!1!!!!%1!!!")!!!!4!!!!&!!!!"5!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!5!5!!!!!!!!0`!!!!!!!!!!!!!!!!!!!"=!A!!!!!!"!!1!!!!"!!!!!!!!&Q#!!!!!!!%!"!!!!!%!!!!!!!!8!)!!!!!!!1!%!!!!!1!!!!!!!!!!!!!!!!%/4'&C6EF&6S"09GJF9X1!5&2)-!!!!!!!!!!!!"=!A!!!!!!!!!!!!!!!!!!"!!!!!!!.!!!!!"]!%%!Q`````Q:4>(*J<G=!!""!1!!"`````Q!!!U.441$/!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!C5!7!!E)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!!!&E.446^(<'^C97R-<W>@46.(8V2:5%5!!"2!1!!"`````Q!#"URP:V2Z='5!$E!Q`````Q64>'&U:1!31%!!!@````]!"!64>'&U:1#M!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BV@1V..8U>M<W*B<%RP:V^46%&526^576"&,G.U<!"F1"9!"":4>'&U:3!N)%FO>'6S<G&M)&.U982F'&.U982F)#UA28BU:8*O97QA476T=W&H:2"4>'&U:3!N)&*F=X"P<H.F%&.U982F)#UA1W^N='RF>'5!"URP:V2Z='5!&E"!!!(`````!!9*5X2B>'65?8"F!":!5!!%!!%!!Q!&!!='2WRP9G&M!!!-1$$`````!U.441#_!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!?5!7!!E)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!!!"URP:V2Z='5!%E"1!!)!#1!+"URP:V2Z='5!&%"!!!(`````!!M(4'^H6(FQ:1!31&!!!A!*!!1(4'^H6(FQ:1!31%!!!@````]!$164>'&U:1!31&!!!A!*!!9(4'^H6(FQ:1!71%!!!@````]!$QF4>'&U:62Z='5!%%"1!!-!$!!/!"!$1V..!!R!)1:&<G&C<'5!!"6!#A!/6'BS:8.I<WRE+#-P=SE!!"6!#A!/1WBF9WN1:8*J<W1I=SE!!"B!5!!$!")!%Q!5#V"F=GFP:'FD4'^H!"*!5!!$!!A!%1!6"6*V<'6T!"*!1!!"`````Q!!"6.U982F!"*!5!!#!!%!&Q:(<'^C97Q!!""!5QJ-<W>5?8"F47&Q!!!/1&-)5X2B>'6.98!!!"*!5QR4>'&U:62Z='6.98!!!""!5!!$!"E!'A!<!U.441!11&!!!A!9!"Q&1W&D;'5!>1$RZ/28BA!!!!-A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)24'^H2GFM>'6S,GRW9WRB=X-.4'^H2GFM>'6S,G.U<!!M1&!!!A!7!"U>1WRV=X2F=C"P:C"D<'&T=S"Q=GFW982F)'2B>'%!!1!?!!!!&A!!!!!!!!!"!!!!!A!!!!-!!!!%!!!!"1!!!!9!!!!(!!!!#!!!!!E!!!!+!!!!#Q!!!!Q!!!!.!!!!$A!!!!]!!!!1!!!!%1!!!")!!!!4!!!!&!!!!"5!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!5!!!!!!!!!!0`!!!!!!!!!!!!!!!!!!!"=!A!!!!!!"!!1!!!!"!!!!!!!!&Q#!!!!!!!%!"!!!!!%!!!!!!!!8!)!!!!!!!1!%!!!!!1!!!!!!!!!!!!!!!!%/4'&C6EF&6S"09GJF9X1!5&2)-!!!!!!!!!!!!"=!A!!!!!!!!!!!!!!!!!!"!!!!!!!/!!!!!"]!%%!Q`````Q:4>(*J<G=!!""!1!!"`````Q!!!U.441$7!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!E5!7!!I)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!>.:8.T97>F!!!71V..8U>M<W*B<%RP:V^.5U>@6&F121!!&%"!!!(`````!!)(4'^H6(FQ:1!/1$$`````"6.U982F!"*!1!!"`````Q!%"6.U982F!+Q!]1!!!!!!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC(6^$5UV@2WRP9G&M4'^H8V.5162&8V2:5%5O9X2M!'6!&A!%&F.U982F)#UA37ZU:8*O97QA5X2B>'595X2B>'5A,3"&?(2F=GZB<#".:8.T97>F%&.U982F)#UA5G6T='^O=W515X2B>'5A,3"$<WVQ<'6U:1!(4'^H6(FQ:1!71%!!!@````]!"AF4>'&U:62Z='5!&E"1!!1!!1!$!!5!"Q:(<'^C97Q!!!R!-0````]$1V..!-9!]1!!!!!!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC'V^$5UV@2WRP9G&M4'^H8UV42V^576"&,G.U<!#"1"9!#AB6=W6S)%RP:QR4>'&U:3"$;'&O:W5'5X2B>(6T#5FO>'6S=H6Q>!B3:7>J=X2F=AJ6<H*F:WFT>'6S#56S=G^S)%RP:QZ.<W2V<'5A1X*F982F:"".<W2V<'5A2'6T>(*P?76E"UVF=X.B:W5!!!>-<W>5?8"F!"*!5!!#!!E!#A>-<W>5?8"F!"2!1!!"`````Q!,"URP:V2Z='5!%E"1!!)!#1!%"URP:V2Z='5!%E"!!!(`````!!U&5X2B>'5!%E"1!!)!#1!'"URP:V2Z='5!&E"!!!(`````!!]*5X2B>'65?8"F!""!5!!$!!Q!$A!1!U.441!-1#%'27ZB9GRF!!!61!I!$F2I=G6T;'^M:#AD,X-J!!!61!I!$E.I:7.L5'6S;7^E+(-J!!!91&!!!Q!3!"-!&!N1:8*J<W2J9URP:Q!31&!!!Q!)!"%!&163>7RF=Q!31%!!!@````]!!!64>'&U:1!31&!!!A!"!"='2WRP9G&M!!!11&-+4'^H6(FQ:5VB=!!!$E"4#&.U982F47&Q!!!31&--5X2B>'65?8"F47&Q!!!11&!!!Q!:!"I!'Q.$5UU!%%"1!!)!'!!="5.B9WBF!(5!]?6@%2Q!!!!$)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC%5RP:U:J<(2F=CZM>G.M98.T$5RP:U:J<(2F=CZD>'Q!,%"1!!)!&A!>(5.M>8.U:8)A<W9A9WRB=X-A=(*J>G&U:3"E982B!!%!(A!!!"9!!!!!!!!!!1!!!!)!!!!$!!!!"!!!!!5!!!!'!!!!"Q!!!!A!!!!*!!!!#A!!!!M!!!!-!!!!$1!!!!Y!!!!0!!!!%!!!!"%!!!!3!!!!%Q!!!"1!!!!6!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!&!!!!!!!!!!$`Q!!!!!!!!!!!!!!!!!!!8!)!!!!!!!1!%!!!!!1!!!!!!!"=!A!!!!!!"!!1!!!!"!!!!!!!!&Q#!!!!!!!%!"!!!!!%!!!!!!!!!!!!!!!!"$ERB9F:*26=A4W*K:7.U!&"53$!!!!!!!!!!!!!8!)!!!!!!!!!!!!!!!!!!!1!!!!!!$Q!!!!!@!""!-0````]'5X2S;7ZH!!!11%!!!@````]!!!.$5UU!`A$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!,F!&A!-#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71-5XFO9S".:8.T97>F$5&T?7ZD)%VF=X.B:W554G]N5G6Q)%&T?7ZD)%VF=X.B:W5!!":$5UV@2WRP9G&M4'^H8UV42V^576"&!!!51%!!!@````]!!A>-<W>5?8"F!!Z!-0````]&5X2B>'5!%E"!!!(`````!!1&5X2B>'5!L!$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)>8U.446^(<'^C97R-<W>@5V2"6%6@6&F123ZD>'Q!:5!7!!175X2B>'5A,3"*<H2F=GZB<#"4>'&U:2B4>'&U:3!N)%6Y>'6S<G&M)%VF=X.B:W515X2B>'5A,3"3:8.Q<WZT:2"4>'&U:3!N)%.P<8"M:82F!!>-<W>5?8"F!":!1!!"`````Q!'#6.U982F6(FQ:1!71&!!"!!"!!-!"1!("E>M<W*B<!!!$%!Q`````Q.$5UU!\A$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!+F!&A!-#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71-5XFO9S".:8.T97>F$5&T?7ZD)%VF=X.B:W554G]N5G6Q)%&T?7ZD)%VF=X.B:W5!!!>-<W>5?8"F!"*!5!!#!!E!#A>-<W>5?8"F!"2!1!!"`````Q!,"URP:V2Z='5!%E"1!!)!#1!%"URP:V2Z='5!%E"!!!(`````!!U&5X2B>'5!%E"1!!)!#1!'"URP:V2Z='5!&E"!!!(`````!!]*5X2B>'65?8"F!""!5!!$!!Q!$A!1!U.441!-1#%'27ZB9GRF!!!61!I!$F2I=G6T;'^M:#AD,X-J!!!61!I!$E.I:7.L5'6S;7^E+(-J!!!91&!!!Q!3!"-!&!N1:8*J<W2J9URP:Q!31&!!!Q!)!"%!&163>7RF=Q!31%!!!@````]!!!64>'&U:1!31&!!!A!"!"='2WRP9G&M!!!11&-+4'^H6(FQ:5VB=!!!$E"4#&.U982F47&Q!!!31&--5X2B>'65?8"F47&Q!!!11&!!!Q!:!"I!'Q.$5UU!%%"1!!)!'!!="5.B9WBF!(5!]?6@%6!!!!!$)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC%5RP:U:J<(2F=CZM>G.M98.T$5RP:U:J<(2F=CZD>'Q!,%"1!!)!&A!>(5.M>8.U:8)A<W9A9WRB=X-A=(*J>G&U:3"E982B!!%!(A!!!"9!!!!!!!!!!1!!!!,`````!!!!"!!!!!5!!!!'`````Q!!!!A!!!!*!!!!#A!!!!M!!!!-!!!!$1!!!!Y!!!!0!!!!%!!!!"%!!!!3!!!!%Q!!!"1!!!!6!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!&!!!!!!!!!!$`Q!!!!!!!!!!!!!!!!!!!8!)!!!!!!!1!%!!!!!1!!!!!!!"=!A!!!!!!"!!1!!!!"!!!!!!!!&Q#!!!!!!!%!"!!!!!%!!!!!!!!!!!!!!!!"$ERB9F:*26=A4W*K:7.U!&"53$!!!!!!!!!!!!!8!)!!!!!!!!!!!!!!!!!!!1!!!!!!%!!!!!!@!""!-0````]'5X2S;7ZH!!!11%!!!@````]!!!.$5UU!`A$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!,F!&A!-#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71.18.Z<G-A476T=W&H:22/<SV3:8!A18.Z<G-A476T=W&H:1R4?7ZD)%VF=X.B:W5!!":$5UV@2WRP9G&M4'^H8UV42V^576"&!!!51%!!!@````]!!A>-<W>5?8"F!!Z!-0````]&5X2B>'5!%E"!!!(`````!!1&5X2B>'5!L!$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)>8U.446^(<'^C97R-<W>@5V2"6%6@6&F123ZD>'Q!:5!7!!175X2B>'5A,3"*<H2F=GZB<#"4>'&U:2B4>'&U:3!N)%6Y>'6S<G&M)%VF=X.B:W515X2B>'5A,3"3:8.Q<WZT:2"4>'&U:3!N)%.P<8"M:82F!!>-<W>5?8"F!":!1!!"`````Q!'#6.U982F6(FQ:1!71&!!"!!"!!-!"1!("E>M<W*B<!!!$%!Q`````Q.$5UU!\A$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!+F!&A!-#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71.18.Z<G-A476T=W&H:22/<SV3:8!A18.Z<G-A476T=W&H:1R4?7ZD)%VF=X.B:W5!!!>-<W>5?8"F!"*!5!!#!!E!#A>-<W>5?8"F!"2!1!!"`````Q!,"URP:V2Z='5!%E"1!!)!#1!%"URP:V2Z='5!%E"!!!(`````!!U&5X2B>'5!%E"1!!)!#1!'"URP:V2Z='5!&E"!!!(`````!!]*5X2B>'65?8"F!""!5!!$!!Q!$A!1!U.441!-1#%'27ZB9GRF!!!61!I!$F2I=G6T;'^M:#AD,X-J!!!61!I!$E.I:7.L5'6S;7^E+(-J!!!91&!!!Q!3!"-!&!N1:8*J<W2J9URP:Q!31&!!!Q!)!"%!&163>7RF=Q!31%!!!@````]!!!64>'&U:1!31&!!!A!"!"='2WRP9G&M!!!11&-+4'^H6(FQ:5VB=!!!$E"4#&.U982F47&Q!!!31&--5X2B>'65?8"F47&Q!!!11&!!!Q!:!"I!'Q.$5UU!%%"1!!)!'!!="5.B9WBF!(5!]?6@%@!!!!!$)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC%5RP:U:J<(2F=CZM>G.M98.T$5RP:U:J<(2F=CZD>'Q!,%"1!!)!&A!>(5.M>8.U:8)A<W9A9WRB=X-A=(*J>G&U:3"E982B!!%!(A!!!"9!!!!!!!!!!1!!!!,`````!!!!"!!!!!5!!!!'`````Q!!!!A!!!!*!!!!#A!!!!M!!!!-!!!!$1!!!!Y!!!!0!!!!%!!!!"%!!!!3!!!!%Q!!!"1!!!!6!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!&!!!!!!!!!!$`Q!!!!!!!!!!!!!!!!!!!8!)!!!!!!!1!%!!!!!1!!!!!!!"=!A!!!!!!"!!1!!!!"!!!!!!!!&Q#!!!!!!!%!"!!!!!%!!!!!!!!!!!!!!!!"$ERB9F:*26=A4W*K:7.U!&"53$!!!!!!!!!!!!!8!)!!!!!!!!!!!!!!!Q!!!">(<'^C97R-<W>';7RU:8)O<(:D<'&T=Q!!!"2$5UV-<W>';7RU:8)O<(:D<'&T=Q!!!$6$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9DJ$5UV-<W>';7RU:8)O<(:D<'&T=Q +!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9B&-<W>';7RU:8)O<(:D<'&T=Q"16%AQ!!!!!!!!!!!!!!!"!!%!!!!!!"!!!!!!(Q!11$$`````"F.U=GFO:Q!!%%"!!!(`````!!!$1V..!0Y!]1!!!!!!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC'V^$5UV@2WRP9G&M4'^H8UV42V^576"&,G.U<!#Z1"9!$!B6=W6S)%RP:QR4>'&U:3"$;'&O:W5'5X2B>(6T#5FO>'6S=H6Q>!B3:7>J=X2F=AJ6<H*F:WFT>'6S#56S=G^S)%RP:QZ.<W2V<'5A1X*F982F:"".<W2V<'5A2'6T>(*P?76E$5&T?7ZD)%VF=X.B:W554G]N5G6Q)%&T?7ZD)%VF=X.B:W5-5XFO9S".:8.T97>F!!!71V..8U>M<W*B<%RP:V^.5U>@6&F121!!&%"!!!(`````!!)(4'^H6(FQ:1!/1$$`````"6.U982F!"*!1!!"`````Q!%"6.U982F!+Q!]1!!!!!!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC(6^$5UV@2WRP9G&M4'^H8V.5162&8V2:5%5O9X2M!'6!&A!%&F.U982F)#UA37ZU:8*O97QA5X2B>'595X2B>'5A,3"&?(2F=GZB<#".:8.T97>F%&.U982F)#UA5G6T='^O=W515X2B>'5A,3"$<WVQ<'6U:1!(4'^H6(FQ:1!71%!!!@````]!"AF4>'&U:62Z='5!&E"1!!1!!1!$!!5!"Q:(<'^C97Q!!!R!-0````]$1V..!/Y!]1!!!!!!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC'V^$5UV@2WRP9G&M4'^H8UV42V^576"&,G.U<!#J1"9!$!B6=W6S)%RP:QR4>'&U:3"$;'&O:W5'5X2B>(6T#5FO>'6S=H6Q>!B3:7>J=X2F=AJ6<H*F:WFT>'6S#56S=G^S)%RP:QZ.<W2V<'5A1X*F982F:"".<W2V<'5A2'6T>(*P?76E$5&T?7ZD)%VF=X.B:W554G]N5G6Q)%&T?7ZD)%VF=X.B:W5-5XFO9S".:8.T97>F!!!(4'^H6(FQ:1!31&!!!A!*!!I(4'^H6(FQ:1!51%!!!@````]!#Q>-<W>5?8"F!"*!5!!#!!E!"!>-<W>5?8"F!"*!1!!"`````Q!."6.U982F!"*!5!!#!!E!"A>-<W>5?8"F!":!1!!"`````Q!0#6.U982F6(FQ:1!11&!!!Q!-!!Y!%!.$5UU!$%!B"E6O97*M:1!!&5!+!!Z5;(*F=WBP<'1I)S^T+1!!&5!+!!Z$;'6D;V"F=GFP:#BT+1!!'%"1!!-!%A!4!"1,5'6S;7^E;7.-<W=!%E"1!!-!#!!2!"5&5H6M:8-!%E"!!!(`````!!!&5X2B>'5!%E"1!!)!!1!8"E>M<W*B<!!!%%"4#ERP:V2Z='6.98!!!!Z!5QB4>'&U:5VB=!!!%E"4$&.U982F6(FQ:5VB=!!!%%"1!!-!'1!;!"M$1V..!""!5!!#!"A!(!6$97.I:1"V!0(F8R(Q!!!!!S"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9B&-<W>';7RU:8)O<(:D<'&T=QV-<W>';7RU:8)O9X2M!#R!5!!#!"9!(2V$<(6T>'6S)'^G)'.M98.T)("S;8:B>'5A:'&U91!"!"Y!!!!7!!!!!!!!!!%!!!!#`````Q!!!!1!!!!&!!!!"P````]!!!!)!!!!#1!!!!I!!!!,!!!!$!!!!!U!!!!/!!!!$Q!!!"!!!!!2!!!!%A!!!"-!!!!5!!!!&1!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"1!!!!!!!!!!`]!!!!!!!!!!!!!!!!!!!&Q#!!!!!!!%!"!!!!!%!!!!!!!!8!)!!!!!!!1!%!!!!!1!!!!!!!"=!A!!!!!!"!!1!!!!"!!!!!!!!!!!!!!!!!1Z-97*73568)%^C;G6D>!"16%AQ!!!!!!!!!!!!&Q#!!!!!!!!!!!!!!!-!!!!82WRP9G&M4'^H2GFM>'6S,GRW9WRB=X-!!!!51V..4'^H2GFM>'6S,GRW9WRB=X-!!!!V1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)[1V..4'^H2GFM>'6S,GRW9WRB=X- false @@ -50,7 +50,7 @@ true 1 5 - 277094402 + 278929408 &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!2A!!!!&A!51#%/47&U9WBF:$]A+%2V=#E!!!1!!!!?1$$`````&5ZB<75A+#)C)(2P)&6T:3"665F%+1!71$$`````$5.V=H*F<H1A5X2B>'5!%E!Q`````QF"=G>V<76O>(-!%%!Q`````Q?BLF.U982F!"2!-0````],I;^"=G>V<76O>(-!$%!B"H.U982V=Q!!#U!$!!2D<W2F!!!11$$`````"H.P>8*D:1!!&%"1!!-!"Q!)!!E(I;^&=H*P=A"K!0(B=TTB!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9C"@1V..8V*F=X"P<H.F)&.P>8*D:3".:8.T97>F,G.U<!!A1&!!!Q!&!!9!#AZ4<X6S9W5A476T=W&H:1!!&E!Q`````QV4<X6S9W5A47^E>7RF!"J!)22$<WVQ<'6U:3B5+3^4>'&S>#B'+1!!\A$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!+F!&A!-#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71.18.Z<G-A476T=W&H:22/<SV3:8!A18.Z<G-A476T=W&H:1R4?7ZD)%VF=X.B:W5!!!>-<W>5?8"F!"*!6!!'#F2J<75A5X2B<8!!!'I!]?4E,L1!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC&F^$5UV@2WRP9G&M4'^H8UV42SZD>'Q!+E"1!!A!!A!$!!1!#Q!-!!U!$A!0$E.S<X.T)%.443"%982B!!"=1(!!(A!!.#"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9B&-<W>';7RU:8)O<(:D<'&T=Q!!(5>M<W*B<%RP:U:J<(2F=CZM>G.M98.T)#B%>8!J!":!)2&.982D;'6E)&"S:8:J<X6T0Q"O!0(EZ#[U!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9B:@1V..8U>M<W*B<%RP:V^.5U=O9X2M!#Z!5!!)!!)!!Q!%!!M!$!!.!!Y!$R.$=G^T=S"$5UUA2'&U93!I37YJ!&:!=!!?!!!U)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC%5RP:U:J<(2F=CZM>G.M98.T!!!82WRP9G&M4'^H2GFM>'6S,GRW9WRB=X-!91$Q!!Q!!!!"!"!!%1!"!!%!!1!"!")!!1!4!"1%!!"Y!!!.#!!!!!!!!!U+!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!")!!!!!!!!!%!!!!"!!!!U!!!!-!!!!!!!!!!!!!!%!&1!!!!! @@ -59,7 +59,7 @@ true 1 5 - 277094402 + 278929408 &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!2A!!!!&A!51#%/47&U9WBF:$]A+%2V=#E!!!1!!!!?1$$`````&5ZB<75A+#)C)(2P)&6T:3"665F%+1!71$$`````$5.V=H*F<H1A5X2B>'5!%E!Q`````QF"=G>V<76O>(-!%%!Q`````Q?BLF.U982F!"2!-0````],I;^"=G>V<76O>(-!$%!B"H.U982V=Q!!#U!$!!2D<W2F!!!11$$`````"H.P>8*D:1!!&%"1!!-!"Q!)!!E(I;^&=H*P=A"K!0(B=TTB!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9C"@1V..8V*F=X"P<H.F)&.P>8*D:3".:8.T97>F,G.U<!!A1&!!!Q!&!!9!#AZ4<X6S9W5A476T=W&H:1!!&E!Q`````QV4<X6S9W5A47^E>7RF!"J!)22$<WVQ<'6U:3B5+3^4>'&S>#B'+1!!\A$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!+F!&A!-#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71.18.Z<G-A476T=W&H:22/<SV3:8!A18.Z<G-A476T=W&H:1R4?7ZD)%VF=X.B:W5!!!>-<W>5?8"F!"*!6!!'#F2J<75A5X2B<8!!!'I!]?4E,L1!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC&F^$5UV@2WRP9G&M4'^H8UV42SZD>'Q!+E"1!!A!!A!$!!1!#Q!-!!U!$A!0$E.S<X.T)%.443"%982B!!"=1(!!(A!!.#"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9B&-<W>';7RU:8)O<(:D<'&T=Q!!(5>M<W*B<%RP:U:J<(2F=CZM>G.M98.T)#B%>8!J!":!)2&.982D;'6E)&"S:8:J<X6T0Q"O!0(EZ#[U!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9B:@1V..8U>M<W*B<%RP:V^.5U=O9X2M!#Z!5!!)!!)!!Q!%!!M!$!!.!!Y!$R.$=G^T=S"$5UUA2'&U93!I37YJ!&:!=!!?!!!U)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC%5RP:U:J<(2F=CZM>G.M98.T!!!82WRP9G&M4'^H2GFM>'6S,GRW9WRB=X-!91$Q!!Q!!!!"!"!!%1!"!!%!!1!"!")!!1!4!"1'!!"Y!!!.#!!!!!!!!!U+!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!")!!!!!!!!!%!!!!"!!!!U!!!!-!!!!!!!!!!!!!!%!&1!!!!! @@ -68,7 +68,7 @@ true 1 5 - 277094402 + 278929408 &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!2A!!!!&A!51#%/47&U9WBF:$]A+%2V=#E!!!1!!!!?1$$`````&5ZB<75A+#)C)(2P)&6T:3"665F%+1!71$$`````$5.V=H*F<H1A5X2B>'5!%E!Q`````QF"=G>V<76O>(-!%%!Q`````Q?BLF.U982F!"2!-0````],I;^"=G>V<76O>(-!$%!B"H.U982V=Q!!#U!$!!2D<W2F!!!11$$`````"H.P>8*D:1!!&%"1!!-!"Q!)!!E(I;^&=H*P=A"K!0(B=TTB!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9C"@1V..8V*F=X"P<H.F)&.P>8*D:3".:8.T97>F,G.U<!!A1&!!!Q!&!!9!#AZ4<X6S9W5A476T=W&H:1!!&E!Q`````QV4<X6S9W5A47^E>7RF!"J!)22$<WVQ<'6U:3B5+3^4>'&S>#B'+1!!\A$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!+F!&A!-#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71.18.Z<G-A476T=W&H:22/<SV3:8!A18.Z<G-A476T=W&H:1R4?7ZD)%VF=X.B:W5!!!>-<W>5?8"F!"*!6!!'#F2J<75A5X2B<8!!!'I!]?4E,L1!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC&F^$5UV@2WRP9G&M4'^H8UV42SZD>'Q!+E"1!!A!!A!$!!1!#Q!-!!U!$A!0$E.S<X.T)%.443"%982B!!"=1(!!(A!!.#"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9B&-<W>';7RU:8)O<(:D<'&T=Q!!(5>M<W*B<%RP:U:J<(2F=CZM>G.M98.T)#B%>8!J!":!)2&.982D;'6E)&"S:8:J<X6T0Q"O!0(EZ#[U!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9B:@1V..8U>M<W*B<%RP:V^.5U=O9X2M!#Z!5!!)!!)!!Q!%!!M!$!!.!!Y!$R.$=G^T=S"$5UUA2'&U93!I37YJ!&:!=!!?!!!U)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC%5RP:U:J<(2F=CZM>G.M98.T!!!82WRP9G&M4'^H2GFM>'6S,GRW9WRB=X-!91$Q!!Q!!!!"!"!!%1!"!!%!!1!"!")!!1!4!"1%!!"Y!!!.#!!!!!!!!!U+!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!")!!!!!!!!!%!!!!"!!!!U!!!!-!!!!!!!!!!!!!!%!&1!!!!! @@ -77,7 +77,7 @@ true 1 5 - 277094402 + 278929408 &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!2A!!!!&A!51#%/47&U9WBF:$]A+%2V=#E!!!1!!!!?1$$`````&5ZB<75A+#)C)(2P)&6T:3"665F%+1!71$$`````$5.V=H*F<H1A5X2B>'5!%E!Q`````QF"=G>V<76O>(-!%%!Q`````Q?BLF.U982F!"2!-0````],I;^"=G>V<76O>(-!$%!B"H.U982V=Q!!#U!$!!2D<W2F!!!11$$`````"H.P>8*D:1!!&%"1!!-!"Q!)!!E(I;^&=H*P=A"K!0(B=TTB!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9C"@1V..8V*F=X"P<H.F)&.P>8*D:3".:8.T97>F,G.U<!!A1&!!!Q!&!!9!#AZ4<X6S9W5A476T=W&H:1!!&E!Q`````QV4<X6S9W5A47^E>7RF!"J!)22$<WVQ<'6U:3B5+3^4>'&S>#B'+1!!\A$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!+F!&A!-#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71.18.Z<G-A476T=W&H:22/<SV3:8!A18.Z<G-A476T=W&H:1R4?7ZD)%VF=X.B:W5!!!>-<W>5?8"F!"*!6!!'#F2J<75A5X2B<8!!!'I!]?4E,L1!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC&F^$5UV@2WRP9G&M4'^H8UV42SZD>'Q!+E"1!!A!!A!$!!1!#Q!-!!U!$A!0$E.S<X.T)%.443"%982B!!"=1(!!(A!!.#"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9B&-<W>';7RU:8)O<(:D<'&T=Q!!(5>M<W*B<%RP:U:J<(2F=CZM>G.M98.T)#B%>8!J!":!)2&.982D;'6E)&"S:8:J<X6T0Q"O!0(EZ#[U!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9B:@1V..8U>M<W*B<%RP:V^.5U=O9X2M!#Z!5!!)!!)!!Q!%!!M!$!!.!!Y!$R.$=G^T=S"$5UUA2'&U93!I37YJ!&:!=!!?!!!U)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC%5RP:U:J<(2F=CZM>G.M98.T!!!82WRP9G&M4'^H2GFM>'6S,GRW9WRB=X-!91$Q!!Q!!!!"!"!!%1!"!!%!!1!"!")!!1!4!"1%!!"Y!!!.#!!!!!!!!!U+!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!")!!!!!!!!!%!!!!"!!!!U!!!!-!!!!!!!!!!!!!!%!&1!!!!! @@ -86,7 +86,7 @@ true 1 5 - 277094402 + 278929408 &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!2A!!!!&A!51#%/47&U9WBF:$]A+%2V=#E!!!1!!!!?1$$`````&5ZB<75A+#)C)(2P)&6T:3"665F%+1!71$$`````$5.V=H*F<H1A5X2B>'5!%E!Q`````QF"=G>V<76O>(-!%%!Q`````Q?BLF.U982F!"2!-0````],I;^"=G>V<76O>(-!$%!B"H.U982V=Q!!#U!$!!2D<W2F!!!11$$`````"H.P>8*D:1!!&%"1!!-!"Q!)!!E(I;^&=H*P=A"K!0(B=TTB!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9C"@1V..8V*F=X"P<H.F)&.P>8*D:3".:8.T97>F,G.U<!!A1&!!!Q!&!!9!#AZ4<X6S9W5A476T=W&H:1!!&E!Q`````QV4<X6S9W5A47^E>7RF!"J!)22$<WVQ<'6U:3B5+3^4>'&S>#B'+1!!\A$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!+F!&A!-#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71.18.Z<G-A476T=W&H:22/<SV3:8!A18.Z<G-A476T=W&H:1R4?7ZD)%VF=X.B:W5!!!>-<W>5?8"F!"*!6!!'#F2J<75A5X2B<8!!!'I!]?4E,L1!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC&F^$5UV@2WRP9G&M4'^H8UV42SZD>'Q!+E"1!!A!!A!$!!1!#Q!-!!U!$A!0$E.S<X.T)%.443"%982B!!"=1(!!(A!!.#"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9B&-<W>';7RU:8)O<(:D<'&T=Q!!(5>M<W*B<%RP:U:J<(2F=CZM>G.M98.T)#B%>8!J!":!)2&.982D;'6E)&"S:8:J<X6T0Q"O!0(EZ#[U!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9B:@1V..8U>M<W*B<%RP:V^.5U=O9X2M!#Z!5!!)!!)!!Q!%!!M!$!!.!!Y!$R.$=G^T=S"$5UUA2'&U93!I37YJ!&:!=!!?!!!U)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC%5RP:U:J<(2F=CZM>G.M98.T!!!82WRP9G&M4'^H2GFM>'6S,GRW9WRB=X-!91$Q!!Q!!!!"!"!!%1!"!!%!!1!"!")!!1!4!"1%!!"Y!!!.#!!!!!!!!!U+!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!")!!!!!!!!!%!!!!"!!!!U!!!!-!!!!!!!!!!!!!!%!&1!!!!! @@ -95,7 +95,7 @@ true 1 5 - 277094402 + 278929408 &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!2A!!!!&A!51#%/47&U9WBF:$]A+%2V=#E!!!1!!!!?1$$`````&5ZB<75A+#)C)(2P)&6T:3"665F%+1!71$$`````$5.V=H*F<H1A5X2B>'5!%E!Q`````QF"=G>V<76O>(-!%%!Q`````Q?BLF.U982F!"2!-0````],I;^"=G>V<76O>(-!$%!B"H.U982V=Q!!#U!$!!2D<W2F!!!11$$`````"H.P>8*D:1!!&%"1!!-!"Q!)!!E(I;^&=H*P=A"K!0(B=TTB!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9C"@1V..8V*F=X"P<H.F)&.P>8*D:3".:8.T97>F,G.U<!!A1&!!!Q!&!!9!#AZ4<X6S9W5A476T=W&H:1!!&E!Q`````QV4<X6S9W5A47^E>7RF!"J!)22$<WVQ<'6U:3B5+3^4>'&S>#B'+1!!\A$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!+F!&A!-#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71.18.Z<G-A476T=W&H:22/<SV3:8!A18.Z<G-A476T=W&H:1R4?7ZD)%VF=X.B:W5!!!>-<W>5?8"F!"*!6!!'#F2J<75A5X2B<8!!!'I!]?4E,L1!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC&F^$5UV@2WRP9G&M4'^H8UV42SZD>'Q!+E"1!!A!!A!$!!1!#Q!-!!U!$A!0$E.S<X.T)%.443"%982B!!"=1(!!(A!!.#"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9B&-<W>';7RU:8)O<(:D<'&T=Q!!(5>M<W*B<%RP:U:J<(2F=CZM>G.M98.T)#B%>8!J!":!)2&.982D;'6E)&"S:8:J<X6T0Q"O!0(EZ#[U!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9B:@1V..8U>M<W*B<%RP:V^.5U=O9X2M!#Z!5!!)!!)!!Q!%!!M!$!!.!!Y!$R.$=G^T=S"$5UUA2'&U93!I37YJ!&:!=!!?!!!U)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC%5RP:U:J<(2F=CZM>G.M98.T!!!82WRP9G&M4'^H2GFM>'6S,GRW9WRB=X-!91$Q!!Q!!!!"!"!!%1!"!!%!!1!"!")!!1!4!"1'!!"Y!!!.#!!!!!!!!!U+!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!")!!!!!!!!!%!!!!"!!!!U!!!!-!!!!!!!!!!!!!!%!&1!!!!! @@ -104,7 +104,7 @@ true 1 5 - 277094402 + 278929408 &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!41!!!!(1!?1$$`````&5ZB<75A+#)C)(2P)&6T:3"665F%+1!71$$`````$5.V=H*F<H1A5X2B>'5!%E!Q`````QF"=G>V<76O>(-!%%!Q`````Q?BLF.U982F!"2!-0````],I;^"=G>V<76O>(-!$%!B"H.U982V=Q!!#U!$!!2D<W2F!!!11$$`````"H.P>8*D:1!!&%"1!!-!"1!'!!=(I;^&=H*P=A"K!0(B=TTB!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9C"@1V..8V*F=X"P<H.F)&.P>8*D:3".:8.T97>F,G.U<!!A1&!!!Q!$!!1!#!Z4<X6S9W5A476T=W&H:1!!&E!Q`````QV4<X6S9W5A47^E>7RF!"J!)22$<WVQ<'6U:3B5+3^4>'&S>#B'+1!!\A$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)<8U.446^(<'^C97R-<W>@46.(8V2:5%5O9X2M!+F!&A!-#&6T:8)A4'^H$&.U982F)%.I97ZH:1:4>'&U>8-*37ZU:8*S>8"U#&*F:WFT>'6S#F6O=G6H;8.U:8)*28*S<X)A4'^H$EVP:(6M:3"$=G6B>'6E%%VP:(6M:3"%:8.U=G^Z:71.18.Z<G-A476T=W&H:22/<SV3:8!A18.Z<G-A476T=W&H:1R4?7ZD)%VF=X.B:W5!!!>-<W>5?8"F!"*!6!!'#F2J<75A5X2B<8!!!'I!]?4E,L1!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC&F^$5UV@2WRP9G&M4'^H8UV42SZD>'Q!+E"1!!A!!!!"!!)!#1!+!!M!$!!.$E.S<X.T)%.443"%982B!!!-1#%'5G6T:81`!!!%!!!!<A$RZ/1ON!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)78U.446^(<'^C97R-<W>@46.(,G.U<!!O1&!!#!!!!!%!!A!*!!I!#Q!-!!U31X*P=X-A1V..)%2B>'%A4X6U!!!51&1!"AR$>8*S:7ZU)&2J<75!!"R!)2>3:7VP>G5A37VN:72J982F<(E`)#B'+1!)!$$`````!"R!1!!"`````Q!5$U&E:'FU;7^O97QA37ZG<Q!61!I!$X2I=G6B=WBP<'1I)S^T+1!61!I!$U.I:7.L)&"F=G^J:#BT+1!51&!!!A!7!"=)5W6U>'FO:X-!!(E!]1!!!!!!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC)&"F=GFP:'FD)&.U=GFO:S"';7RU:8)A4'6W:7QO9X2M!#^!&A!&"GZP=GVB<!*--1*--A*--Q*-.!!!$ERF>G6M)#B/<X*N97QJ!!!=1%!!!@````]!&!^';7RU:8*F:#"4>'&U>8-!$E!B#%:J<(2F=G6E!!"M!0!!%!!/!!]!%!!1!"%!%!!3!"!!%!!4!"5!'!!:!"!!'A!<!Q!"#!!!%!!!!!I!!!!!!!!!!!!!!!U!!!!!!!!!#1!!!!!!!!!!!!!!#!!!!!E!!!!)!!!!#!!!!!!!!!!*!!!!#1!!!!!"!"Q!!!!! @@ -113,7 +113,7 @@ true 1 1 - 276832272 + 278929424 @@ -133,7 +133,7 @@ true 1 5 - 277094402 + 278929408 &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!%Z!!!!"A!%!!!!5E"Q!"Y!!$1A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)24'^H2GFM>'6S,GRW9WRB=X-!!".(<'^C97R-<W>';7RU:8)A4X6U!""!-0````]'5X2S;7ZH!!!91%!!!@````]!!AN(=G^V=$J4>'&U:1"31(!!(A!!.#"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9B&-<W>';7RU:8)O<(:D<'&T=Q!!%E>M<W*B<%RP:U:J<(2F=C"*<A!!91$Q!!Q!!!!!!!!!!1!!!!!!!!!!!!!!!!!$!!1%!!"Y!!!!!!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!#%!!!!")!!!U!!!!-!!!!!!!!!!!!!!%!"1!!!!! @@ -160,7 +160,7 @@ true 1 5 - 277094402 + 278929408 &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&4!!!!#!!%!!!!5E"Q!"Y!!$1A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)24'^H2GFM>'6S,GRW9WRB=X-!!".(<'^C97R-<W>';7RU:8)A4X6U!!R!-0````]$1V..!!Z!-0````]&5X2B>'5!%E"1!!)!!A!$"URP:V2Z='5!&E"!!!(`````!!1*1V../F.U982F!&*!=!!?!!!U)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC%5RP:U:J<(2F=CZM>G.M98.T!!!32WRP9G&M4'^H2GFM>'6S)%FO!!"B!0!!$!!!!!!!!!!"!!!!!!!!!!!!!!!!!!5!"A9!!(A!!!!!!!!!!!!!!!!!!!U,!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!)1!!!!%A!!$1!!!!Q!!!!!!!!!!!!!!1!(!!!!!! @@ -196,7 +196,7 @@ true 1 5 - 276832256 + 278929408 @@ -206,7 +206,7 @@ true 1 5 - 277094402 + 278929408 &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!58!!!!'A!51#%/47&U9WBF:$]A+%2V=#E!!!A!-0````]!(%"!!!(`````!!%0172E;82J<WZB<#"*<G:P!"Z!-0````]64G&N:3!I)C)A>']A68.F)&66351J!":!-0````].1X6S=G6O>#"4>'&U:1!31$$`````#5&S:X6N:7ZU=Q!11$$`````"['O5X2B>'5!&%!Q`````QOBLU&S:X6N:7ZU=Q!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!51&!!!Q!)!!E!#A?BLU6S=G^S!'I!]?&T0/%!!!!#)%.P<7VV<GFD97*M:3"4>'&U:3".97.I;7ZF,GRW<'FC)&^$5UV@5G6T='^O=W5A5W^V=G.F)%VF=X.B:W5O9X2M!#"!5!!$!!9!"Q!,$F.P>8*D:3".:8.T97>F!!!71$$`````$6.P>8*D:3".<W2V<'5!'E!B&%.P<8"M:82F+&1J,V.U98*U+%9J!!$O!0%!!!!!!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9BN@1V..8U>M<W*B<%RP:V^.5U>@6&F123ZD>'Q!K5!7!!Q)68.F=C"-<W=-5X2B>'5A1WBB<G>F"F.U982V=QF*<H2F=H*V=(1)5G6H;8.U:8)+67ZS:7>J=X2F=AF&=H*P=C"-<W=/47^E>7RF)%.S:7&U:71147^E>7RF)%2F=X2S<XFF:!V"=XFO9S".:8.T97>F&%ZP,6*F=#""=XFO9S".:8.T97>F$&.Z<G-A476T=W&H:1!!"URP:V2Z='5!%E"5!!9+6'FN:3"4>'&N=!!!<A$RZ/1ON!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)78U.446^(<'^C97R-<W>@46.(,G.U<!!O1&!!#!!$!!1!"1!-!!U!$A!0!"!31X*P=X-A1V..)%2B>'%A4X6U!!"=1(!!(A!!.#"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9B&-<W>';7RU:8)O<(:D<'&T=Q!!(5>M<W*B<%RP:U:J<(2F=CZM>G.M98.T)#B%>8!J!"R!1!!"`````Q!"$U:J<(2F=G6E)&.U982V=Q!%!!!!?1$R!!!!!!!!!!)A1W^N<86O;7.B9GRF)&.U982F)%VB9WBJ<G5O<(:M;7)A5'6S;7^E;7-A5X2S;7ZH)%:J<(2F=C"-:8:F<#ZD>'Q!,U!7!!5'<G^S<7&M!EQR!EQS!EQT!EQU!!!/4'6W:7QA+%ZP=GVB<#E!!":!)2&.982D;'6E)&"S:8:J<X6T0Q"M!0(EZ#[U!!!!!C"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9B:@1V..8U>M<W*B<%RP:V^.5U=O9X2M!#R!5!!)!!-!"!!&!!Q!$1!/!!]!%"&$=G^T=S"$5UUA2'&U93"*<A"31(!!(A!!.#"$<WVN>7ZJ9W&C<'5A5X2B>'5A47&D;'FO:3ZM>GRJ9B&-<W>';7RU:8)O<(:D<'&T=Q!!%E>M<W*B<%RP:U:J<(2F=C"*<A!!91$Q!!Q!!!!#!"%!%A!4!"1!&1!5!"9!&!!8!"A$!!"Y!!!.#!!!#1!!!!U+!!!.#Q!!#1!!!!!!!!!1!!!!!!!!!")!!!!!!!!!%!!!!"!!!!U!!!!-!!!!!!!!!!!!!!%!'1!!!!! @@ -215,6 +215,6 @@ true 1 1 - 276832272 + 278929424 diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmDoc/Localize CSM VIs.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmDoc/Localize CSM VIs.vi index d97b7d25a..87c95a350 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmDoc/Localize CSM VIs.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmDoc/Localize CSM VIs.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Add CSM Module.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Add CSM Module.vi index 692b8280f..7f6f57d04 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Add CSM Module.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Add CSM Module.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Add CSM-VI.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Add CSM-VI.vi index 669c95fea..452474514 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Add CSM-VI.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Add CSM-VI.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Delete CSM Module.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Delete CSM Module.vi index 276cbfa42..a01555c35 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Delete CSM Module.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Delete CSM Module.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Delete CSM State.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Delete CSM State.vi index 93cc5c0bd..775181e7c 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Delete CSM State.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Delete CSM State.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Delete CSM-VI.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Delete CSM-VI.vi index 499fa9e79..a73655177 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Delete CSM-VI.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Delete CSM-VI.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Jump to CSM State.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Jump to CSM State.vi index 6f06fd6f4..083e7ee94 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Jump to CSM State.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Jump to CSM State.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM API By CSM-VI.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM API By CSM-VI.vi index 9b3725677..dcd3c72f8 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM API By CSM-VI.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM API By CSM-VI.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM API By CSM.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM API By CSM.vi index 34a4ecd2c..ff2bc5b18 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM API By CSM.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM API By CSM.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM Module Info.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM Module Info.vi index e7cf1b1e1..37da5b55a 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM Module Info.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM Module Info.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM States By CSM-VI.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM States By CSM-VI.vi index 95ace313f..ffa4fd9e0 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM States By CSM-VI.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM States By CSM-VI.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM States By CSM.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM States By CSM.vi index faa538baa..ec3245366 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM States By CSM.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM States By CSM.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM Status By CSM.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM Status By CSM.vi index 3e96449f1..72dbf11d9 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM Status By CSM.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM Status By CSM.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM User-States with lvcsm Support.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM User-States with lvcsm Support.vi index a87c30466..bb6897137 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM User-States with lvcsm Support.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM User-States with lvcsm Support.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM-VI Info.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM-VI Info.vi index 553a997b0..c7785141f 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM-VI Info.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM-VI Info.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM-VIs.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM-VIs.vi index 1f612899c..d425a8a8a 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM-VIs.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSM-VIs.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSMs.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSMs.vi index 5791d64ba..76640e04e 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSMs.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Read CSMs.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Refresh Online CSMs in lvcsm.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Refresh Online CSMs in lvcsm.vi index 9ae601fe0..d7cc0521a 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Refresh Online CSMs in lvcsm.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Refresh Online CSMs in lvcsm.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Update Case Frame to Image.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Update Case Frame to Image.vi index 112897b45..22b102c62 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Update Case Frame to Image.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/Update Case Frame to Image.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/_Read ItemArray.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/_Read ItemArray.vi index eab6a5987..dc2f3e014 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/_Read ItemArray.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/_Read ItemArray.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/_Request StringList with lvcsm Support.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/_Request StringList with lvcsm Support.vi index 715de17cc..1a0f44eff 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/_Request StringList with lvcsm Support.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API with lvcsm Support/_Request StringList with lvcsm Support.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Add State Frame.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Add State Frame.vi index 32ee7c0a7..eca81f9e3 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Add State Frame.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Add State Frame.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Check NewStateNotify is Registered.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Check NewStateNotify is Registered.vi index fb2886c03..f4ab9cf25 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Check NewStateNotify is Registered.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Check NewStateNotify is Registered.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Connect LastResp to Response in Error Case.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Connect LastResp to Response in Error Case.vi index 8b2160cd4..62826491a 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Connect LastResp to Response in Error Case.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Connect LastResp to Response in Error Case.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Copy State.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Copy State.vi index 7a6eb29c7..4af73161b 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Copy State.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Copy State.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Create From Basic Refs.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Create From Basic Refs.vi index 90ec8bb84..6afa77570 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Create From Basic Refs.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Create From Basic Refs.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Destroy.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Destroy.vi index 72bc98bf8..05fb227da 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Destroy.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Destroy.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Get All API Interface Info.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Get All API Interface Info.vi index 1dc9d18de..4d065568f 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Get All API Interface Info.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Get All API Interface Info.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Get CaseFrame Index By CaseName.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Get CaseFrame Index By CaseName.vi index d94ff47a3..87535367e 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Get CaseFrame Index By CaseName.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Get CaseFrame Index By CaseName.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Get CaseFrame Reference By CaseName.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Get CaseFrame Reference By CaseName.vi index a13b3dbcd..9628cb1be 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Get CaseFrame Reference By CaseName.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Get CaseFrame Reference By CaseName.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Get Event Structure Num.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Get Event Structure Num.vi index b0133f934..a56f4316c 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Get Event Structure Num.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Get Event Structure Num.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Get Interface Info.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Get Interface Info.vi index 75132cc5e..24ff782b2 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Get Interface Info.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Get Interface Info.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Get Internal Data Info.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Get Internal Data Info.vi index c1d004e1c..3beef324c 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Get Internal Data Info.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Get Internal Data Info.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Open Block Diagram.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Open Block Diagram.vi index 872137b03..a20b85afc 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Open Block Diagram.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Open Block Diagram.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Open Front Panel.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Open Front Panel.vi index 58bdc864d..961eaab55 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Open Front Panel.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Open Front Panel.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Remove State Frame.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Remove State Frame.vi index 359713f94..c85e35999 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Remove State Frame.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Remove State Frame.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Save Instrument.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Save Instrument.vi index fb97b6612..f175e8cf7 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Save Instrument.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Save Instrument.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Set Error Tunnel Use Default If not Connected.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Set Error Tunnel Use Default If not Connected.vi index e2364c91b..eb628fdc6 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Set Error Tunnel Use Default If not Connected.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Set Error Tunnel Use Default If not Connected.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Set Visible Case Frame.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Set Visible Case Frame.vi index cf2f18018..5b9cc4de7 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Set Visible Case Frame.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Set Visible Case Frame.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Start Undo.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Start Undo.vi index 9704c4082..b1408885e 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Start Undo.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Start Undo.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Stop Undo.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Stop Undo.vi index 7b2d27781..f4ad64b2e 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Stop Undo.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Stop Undo.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Undo.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Undo.vi index 91f19fc62..acd3996da 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Undo.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Undo.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Update lvcsm Section in VI Description.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Update lvcsm Section in VI Description.vi index e2e3e46d6..290722283 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Update lvcsm Section in VI Description.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/API/Update lvcsm Section in VI Description.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/CSM-Helper.lvclass b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/CSM-Helper.lvclass index fa119e0c7..354aa91ac 100644 --- a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/CSM-Helper.lvclass +++ b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/CSM-Helper.lvclass @@ -16,10 +16,10 @@ &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!6+0%.M>8.U:8)_$1I]4G&N:4Z1:7Y],UZB<75_$1I]4H6N27RU=TYY0#^/>7V&<(2T0AU+0&5T-DY.#DR/97VF0E:P=G6H=G^V<G1A1W^M<X)],UZB<75_$1I]6G&M0D%W.T=X-D%V0#^797Q_$1I],V5T-DY.#DR6-T)_$1I]4G&N:4Z#97.L:X*P>7ZE)%.P<'^S0#^/97VF0AU+0&:B<$YW.T-W/4EY0#^797Q_$1I],V5T-DY.#DR$<(6T>'6S0AU+0%ZB<75_2GFM<#"1982U:8*O0#^/97VF0AU+0%ZV<56M>(-_/$QP4H6N27RU=TY.#DR6/$Y.#DR/97VF0F*P>S!Q0#^/97VF0AU+0&:B<$YR/45],V:B<$Y.#DQP64A_$1I]64A_$1I]4G&N:4Z3<X=A-4QP4G&N:4Y.#DR797Q_-4EV0#^797Q_$1I],V5Y0AU+0&5Y0AU+0%ZB<75_5G^X)$)],UZB<75_$1I]6G&M0D%Z.4QP6G&M0AU+0#^6/$Y.#DR6/$Y.#DR/97VF0F*P>S!T0#^/97VF0AU+0&:B<$YR/45],V:B<$Y.#DQP64A_$1I]64A_$1I]4G&N:4Z3<X=A.$QP4G&N:4Y.#DR797Q_-4EV0#^797Q_$1I],V5Y0AU+0&5Y0AU+0%ZB<75_5G^X)$5],UZB<75_$1I]6G&M0D%Z.4QP6G&M0AU+0#^6/$Y.#DR6/$Y.#DR/97VF0F*P>S!W0#^/97VF0AU+0&:B<$YR/45],V:B<$Y.#DQP64A_$1I]64A_$1I]4G&N:4Z3<X=A.TQP4G&N:4Y.#DR797Q_-4EV0#^797Q_$1I],V5Y0AU+0#^$<(6T>'6S0AU+0%ER.DY.#DR/97VF0F>J:(2I0#^/97VF0AU+0&:B<$YR0#^797Q_$1I],UER.DY.#DR&6TY.#DR/97VF0EVP:'5],UZB<75_$1I]1WBP;7.F0E.P=(E],U.I<WFD:4Y.#DR$;'^J9W5_4X)],U.I<WFD:4Y.#DR$;'^J9W5_28BD<(6T;8:F)%^S0#^$;'^J9W5_$1I]1WBP;7.F0E*J>#"$<'6B=DQP1WBP;7.F0AU+0%.I<WFD:4Z/<X1A1W^Q?4QP1WBP;7.F0AU+0%.I<WFD:4Z/<X1A4X)],U.I<WFD:4Y.#DR$;'^J9W5_4G^S)%6Y9WRV=WFW:3"0=DQP1WBP;7.F0AU+0%.I<WFD:4Z/<X1A1GFU)%.M:7&S0#^$;'^J9W5_$1I]6G&M0D!],V:B<$Y.#DQP26=_$1I]25Q_$1I]4G&N:4Z4>(FM:4QP4G&N:4Y.#DR$;'^J9W5_5W^M;71],U.I<WFD:4Y.#DR$;'^J9W5_2'&T;$QP1WBP;7.F0AU+0%.I<WFD:4Z%<X1],U.I<WFD:4Y.#DR$;'^J9W5_2'&T;#"%<X1],U.I<WFD:4Y.#DR$;'^J9W5_2'&T;#"%<X1A2'^U0#^$;'^J9W5_$1I]6G&M0D!],V:B<$Y.#DQP25Q_$1I]25Q_$1I]4G&N:4Z';7RM)&*V<'5],UZB<75_$1I]1WBP;7.F0E6W:7YA4W2E0#^$;'^J9W5_$1I]1WBP;7.F0F>J<G2J<G=],U.I<WFD:4Y.#DR797Q_-$QP6G&M0AU+0#^&4$Y.#DR&4$Y.#DR/97VF0E6O:#"$98"T0#^/97VF0AU+0%.I<WFD:4Z%:7:B>7RU0#^$;'^J9W5_$1I]1WBP;7.F0E:M981],U.I<WFD:4Y.#DR797Q_-$QP6G&M0AU+0#^&4$Y.#DQP1WRV=X2F=DY.#A!!!!! true &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!6*0%.M>8.U:8)_$1I]4G&N:4Z1:7Y],UZB<75_$1I]4H6N27RU=TYY0#^/>7V&<(2T0AU+0&5T-DY.#DR/97VF0E:P=G6H=G^V<G1A1W^M<X)],UZB<75_$1I]6G&M0D9X-T9Z/4A],V:B<$Y.#DQP64-S0AU+0&5T-DY.#DR/97VF0E*B9WNH=G^V<G1A1W^M<X)],UZB<75_$1I]6G&M0D9X-T9Z/4A],V:B<$Y.#DQP64-S0AU+0%.M>8.U:8)_$1I]4G&N:4Z';7RM)&"B>(2F=GY],UZB<75_$1I]4H6N27RU=TYY0#^/>7V&<(2T0AU+0&5Y0AU+0%ZB<75_5G^X)$!],UZB<75_$1I]6G&M0D%S.DQP6G&M0AU+0#^6/$Y.#DR6/$Y.#DR/97VF0F*P>S!R0#^/97VF0AU+0&:B<$YR-D9],V:B<$Y.#DQP64A_$1I]64A_$1I]4G&N:4Z3<X=A-DQP4G&N:4Y.#DR797Q_-4)W0#^797Q_$1I],V5Y0AU+0&5Y0AU+0%ZB<75_5G^X)$-],UZB<75_$1I]6G&M0D%S.DQP6G&M0AU+0#^6/$Y.#DR6/$Y.#DR/97VF0F*P>S!U0#^/97VF0AU+0&:B<$YR-D9],V:B<$Y.#DQP64A_$1I]64A_$1I]4G&N:4Z3<X=A.4QP4G&N:4Y.#DR797Q_-4)W0#^797Q_$1I],V5Y0AU+0&5Y0AU+0%ZB<75_5G^X)$9],UZB<75_$1I]6G&M0D%S.DQP6G&M0AU+0#^6/$Y.#DR6/$Y.#DR/97VF0F*P>S!X0#^/97VF0AU+0&:B<$YR-D9],V:B<$Y.#DQP64A_$1I],U.M>8.U:8)_$1I]34%W0AU+0%ZB<75_6WFE>'A],UZB<75_$1I]6G&M0D)],V:B<$Y.#DQP34%W0AU+0%680AU+0%ZB<75_47^E:4QP4G&N:4Y.#DR$;'^J9W5_1W^Q?4QP1WBP;7.F0AU+0%.I<WFD:4Z0=DQP1WBP;7.F0AU+0%.I<WFD:4Z&?'.M>8.J>G5A4X)],U.I<WFD:4Y.#DR$;'^J9W5_1GFU)%.M:7&S0#^$;'^J9W5_$1I]1WBP;7.F0EZP>#"$<X"Z0#^$;'^J9W5_$1I]1WBP;7.F0EZP>#"0=DQP1WBP;7.F0AU+0%.I<WFD:4Z/<X)A28BD<(6T;8:F)%^S0#^$;'^J9W5_$1I]1WBP;7.F0EZP>#"#;81A1WRF98)],U.I<WFD:4Y.#DR797Q_-$QP6G&M0AU+0#^&6TY.#DR&4$Y.#DR/97VF0F.U?7RF0#^/97VF0AU+0%.I<WFD:4Z4<WRJ:$QP1WBP;7.F0AU+0%.I<WFD:4Z%98.I0#^$;'^J9W5_$1I]1WBP;7.F0E2P>$QP1WBP;7.F0AU+0%.I<WFD:4Z%98.I)%2P>$QP1WBP;7.F0AU+0%.I<WFD:4Z%98.I)%2P>#"%<X1],U.I<WFD:4Y.#DR797Q_-$QP6G&M0AU+0#^&4$Y.#DR&4$Y.#DR/97VF0E:J<'QA5H6M:4QP4G&N:4Y.#DR$;'^J9W5_28:F<C"0:'1],U.I<WFD:4Y.#DR$;'^J9W5_6WFO:'FO:TQP1WBP;7.F0AU+0&:B<$YQ0#^797Q_$1I],U6-0AU+0%6-0AU+0%ZB<75_27ZE)%.B=(-],UZB<75_$1I]1WBP;7.F0E2F:G&V<(1],U.I<WFD:4Y.#DR$;'^J9W5_2GRB>$QP1WBP;7.F0AU+0&:B<$YQ0#^797Q_$1I],U6-0AU+0#^$<(6T>'6S0AU+!!!!!! - &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!$($5F.31QU+!!.-6E.$4%*76Q!!,7Q!!!28!!!!)!!!,5Q!!!!8!!!!!2*$5UUN3'6M='6S,GRW9WRB=X-!!!!!I"=!A!!!-!!!+!!%!!!!!!1!!Q!]!,Q!(U!!!A!!!!!"!!%!"P````]!!!!!!!!!!!!!!!!'^7+U-+?&1)@R;'T(/)H2!!!!$!!!!"!!!!!!E3,%G?H^0UCZ+WM?:5A$<.1>D.G0!,)%[9!*G/TY1HY!!"!!!!!!!%'X5"CR+\6'FP:+.@YSEW)"!!!!`````^1>D.G0!,)%[9!*G/TY1HY!!!!1*&:B*%<'G<#8QWIIY[YLYA!!!!1!!!!!!!!#%A!"4&:$1Q!!!!5!!F:*4%)!!!!!5&2)-!!!!!5!!1!"!!!!!!)!!F:*1U-!!!!!!BB$5UUN3'6M='6S)&6U;7RJ>(EO<(:M;7)31V..)%*B=WFD)&*F:H-O9X2M5&2)-!!!!#%!!1!%!!!(682J<'FU?2*$5UUA1G&T;7-A5G6G=SZD>'Q!!!!!!!&#!!!!!!!#6EF$1Q!!!!!!!BB$5UUN3'6M='6S)&6U;7RJ>(EO<(:M;7)41V..)%VP:(6M:3"5?8"F,G.U<!"16%AQ!!!!)A!"!!1!!!>6>'FM;82Z%U.443".<W2V<'5A6(FQ:3ZD>'Q!!!!!!!*#!!!)!!!#6EF$1Q!!!!!!!!%B8W.T<7BF<("F=F^'=G^O>&^5>7ZO:7RT8V*F:H-O9X2M5&2)-!!!!$!!!1!%!!!(6(FQ:72F:C&@9X.N;'6M='6S8U:S<WZU8V2V<GZF<(.@5G6G=SZD>'Q!!!!#!!0`!!!!!1!"!!!!!!!.!!!!!!!!!!!!!!!!!!!!!!!#6EF$1Q!!!!!")&^D=WVI:7RQ:8*@1G&D;V^5>7ZO:7RT8V*F:H-O9X2M!&"53$!!!!!P!!%!"!!!"V2Z='6E:79A8W.T<7BF<("F=F^#97.L8V2V<GZF<(.@5G6G=SZD>'Q!!!!#!!4`!!!!!1!"!!!!!!!.!!!!!!!!!!!!!!!!!!!!!!!$!!!!!!!#!!5!!!!!!$!!!!"5?*RDE'*A;W#YQ!$%D%$-V-$U!]D_Q#$!!2+&E!C7!!=S2";(K1.B!'/_%_Y!!!"+!!!"'(C=9W$!"0_"!%AR-D!Q&Q"J&D2R-!VD5R0A-B?886"R:KA<73'CD%!RJDV!"B.)$KIG"/Q>"G9:I0!*>(09M*A.!"=X*WA!!!!!!!Q!!6:*2&-!!!!!!!-!!!.%!!!*L(C=J::.;".2%-@@JNOYF5C#RK;(AIL""KMVR@K"L446&"M*."7R5-%+L<7#I)=5%V":C=9O;U+6GKM($ZY513SF3-V(*;8U%#3(AFB10$3EI09A#G+=?@OW?:8;1X:B:XY\_`[T<_>NXM3TC:!L"Y]?(A.@*2$C)$):O$:Y;4/";[)>YT8%]"&A_@<_%W^/:I<A;,,OO%OP)]M7V?OU27Y[[UQD>N8PN#N_J[C)TK8@J6)J-G0*K&V8MRVN/&;6)*\V/C7]!#_C,`5-YSA^8Q#S38*I.QG+T=G_4&:O%<1([SH\VD[`^VRE71*.P2K%2U@@Q*RB%DO6?"*)C=[AD=^CF+AV;[<W5\#/*[XX4E._F9[,>9F+(%'FAFC0K#3IUC/K0H%^<;U"\7>3O@:&R>K2WWK#[E[)7H(5;;LL&L5K$;FHR+(78N%[HBYZ(QO9&'VUDUF,+Y>.R0IY*9@1J5>T\FHX8,$6/J'-@"-+P<#?A)6OZE]RX]\]%?905*]O.)DY&LBCM9"$3>#FI]M7#TO5;<J_C8GUUTH[2A\6ZVCP'AG]'ZX8KT&0]_4U;O1WL'3`!;X,A0;\K8,NF!&NR)$7<U#\X9"W5;B=_UQI@W/ON>_93``']P1<7["Z8+L0N6[?1:IHL]]B4`-M[(.9W(!/_QVI@Z$+N7].;%>2'[>V[^#XV3CN7]#O*"$EE"XWA+1=2J=;H8/HL20P)SO#/T7*/\;V-VXUQ;_^[%84DO99GE.IX'A;U?R"MQN.02I(GKVINK#2U&4B^D)D8?C((O%BO.P\H<<5*V'^YY,HR"[CB:"&/3P6:<X3PFKY&G96;#_+2?^#UGJ`I?UC[,1J,>C*2*QK(;/;MRY8\5M?O_;'.2@3X(6UE\4DQ6QSK`XQ?8&RKBK]G?O2(DBF/,&(]W=4%1A_U!4W&BP<"GRC-<X8)L^E#:?!N\'9)*4P(_=YT0&LDO_<SJTBO-2R;V7:<X$]CO/P($?+:<\-]6//CRQX6*>ZA/-H((^A8/$K]Y\6QM8&]O:S@@%6]-Y$&E._R"BL<W;RDQ"DD,]!8W2="*<.'K_!N\(Y,_!EC`^BD'N(S0`^S7ZP*_%/`@`88V7YKXY!!!!-&Q#!"1!!"$%X,D!!!!!!$"=!A!!!!!1R.SYQ!!!!!!Q8!)!&!!!%-4=O-!!!!!!-&Q#!!!!!"$%X,D!!!!!!$"=!A!5!!!1R.SYQ!!!!!"1"!!!!^6=VAHEGIIQO=V*/"EEZH1!!!!U!!!!!!!!!!!!!!!!!!!!!!!!!A0````_!!!!"ARU5193BNM'%'66"B)5519-Z&%'!!!!"`````Y!!!!'!!!!"A!,!!9!)-!'!)!Q"A)!$!9!!!Q'!9!Y"A(A_!9"_`A'!@`Y"A(`_!9"``A'!@`Y"A(`_!9$``_'!(`XZA!`XY9!$X]'!!(]"A!!]!9!!!!(`````!!!#!.X>X>X>X>X>X>X>X>X>X>X4-T-T-T-T-T-T-T-T-T-^UT-T`T-``T]T0T]T0T-T0>-T0T0T]T-`]`]`]`]T-TX4-T]T-T`T0T]`0T]`-T-^UT-`-`-T0T]T0T]T0T-T0>-T-`]T``-`-T]`-T]T-TX4-T-T-T-T-T-T-T-T-T-^X>X>X>X>X>X>X>X>X>X>X>!!!!!!!!!!!!!!!!!!!!X1!!!!!!!!!!!!!!!!!!!.U!!!!!!!!+KK!!!!!!!!$>!!!!!!!+IT-[I!!!!!!!X1!!!!!+IT-T-TKA!!!!!.U!!!!+IT-T-T-T/K!!!!$>!!!!#K-T-T-T-T_A!!!!X1!!!!KKIT-T-T``I!!!!.U!!!!+KKKD-T```[!!!!$>!!!!#KKKKKL```_A!!!!X1!!!!KKKKKP````I!!!!.U!!!!+KKKKL````[!!!!$>!!!!#KKKKK````_A!!!!X1!!!!KKKKKP````I!!!!.U!!!!+KKKKL````[!!!!$>!!!!#KKKKK````KP`Q!!X1!!!!#KKKKP``KK````!.U!!!!!!+KKL`KK````!!$>!!!!!!!!KKKD````]!!!X1!!!!!!!!#D````]!!!!.U!!!!!!!!!!!``]!!!!!$>!!!!!!!!!!!!!!!!!!!!X>X>X>X>X>X>X>X>X>X>X>!!!%!(N\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?Q]0$Q]0$Q]0$Q]0$Q]0$Q]0$Q]0$Q]0$Q]0$Q]0$XN\$Q]0$Q```Q]0$````Q``$Q]0`Q``$Q]0`Q]0$Q]0?XM0$Q]0`Q]0`Q``$Q]0$```$```$```$```$Q]0$Q^\?Q]0$Q``$Q]0$Q```Q]0`Q``$`]0`Q``$`]0$Q]0$XN\$Q]0$`]0$`]0$Q]0`Q``$Q]0`Q``$Q]0`Q]0$Q]0?XM0$Q]0$```$Q````]0$`]0$Q``$`]0$Q``$Q]0$Q^\?Q]0$Q]0$Q]0$Q]0$Q]0$Q]0$Q]0$Q]0$Q]0$Q]0$XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XM!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"\?Q!!!!!!!!!!!!!!!!!!#!A!!!!!!!!!!!!!!!!!!(N\!!!!!!!!!!!!!!!!#'1[:'1)!!!!!!!!!!!!!!!!?XM!!!!!!!!!!!!!#'1[$Q]0$W2E#!!!!!!!!!!!!!"\?Q!!!!!!!!!!#'1[$Q]0$Q]0$Q^E:!A!!!!!!!!!!(N\!!!!!!!!!'1[$Q]0$Q]0$Q]0$Q]0:'1!!!!!!!!!?XM!!!!!!!!!/DI0$Q]0$Q]0$Q]0$Q`_:!!!!!!!!!"\?Q!!!!!!!!![:'1[$Q]0$Q]0$Q`_`PY[!!!!!!!!!(N\!!!!!!!!!$JE:'2E/A]0$Q`_`P\_`DI!!!!!!!!!?XM!!!!!!!!!/G2E:'2E:$JE`P\_`P\_/A!!!!!!!!"\?Q!!!!!!!!![:'2E:'2E:0\_`P\_`PY[!!!!!!!!!(N\!!!!!!!!!$JE:'2E:'2E`P\_`P\_`DI!!!!!!!!!?XM!!!!!!!!!/G2E:'2E:'4_`P\_`P\_/A!!!!!!!!"\?Q!!!!!!!!![:'2E:'2E:0\_`P\_`PY[!!!!!!!!!(N\!!!!!!!!!$JE:'2E:'2E`P\_`P\_`DI!!!!!!!!!?XM!!!!!!!!!:'2E:'2E:'4_`P\_`PZE:+SML!!!!!"\?Q!!!!!!!!!!/DJE:'2E:0\_`PZE:$KML+SML+Q!!(N\!!!!!!!!!!!!!$JE:'2E`PZE:$KML+SML+Q!!!!!?XM!!!!!!!!!!!!!!!![:'2E:!_ML+SML+SM!!!!!!"\?Q!!!!!!!!!!!!!!!!!!/A_ML+SML+SM!!!!!!!!!(N\!!!!!!!!!!!!!!!!!!!!!!#ML+SM!!!!!!!!!!!!?XM!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XM!!!!#!!5!!!!!!IQ!!5:13&!!!!!%!!*52%.$!!!!!3&@9X.N;'6M='6S8U:S<WZU8V2V<GZF<(.@5G6G=SZD>'R16%AQ!!!!-!!"!!1!!!>5?8"F:'6G)6^D=WVI:7RQ:8*@2H*P<H2@6(6O<G6M=V^3:7:T,G.U<!!!!!)!!0]!!!!"!!%!!!!!!!U!!!!!!!!!!!!!!!!!!!!!!!!!!1!!!;B16%AQ!!!!!!!!!!!!!F2%1U-!!!!!!3"@9X.N;'6M='6S8U*B9WN@6(6O<G6M=V^3:7:T,G.U<!"16%AQ!!!!,Q!"!!1!!!>5?8"F:'6G)&^D=WVI:7RQ:8*@1G&D;V^5>7ZO:7RT8V*F:H-O9X2M!!!!!A!!`Q!!!!%!!1!!!!!!$1!!!!!!!!!!!!!!!!!!!!!!!!!"!!!"<F"53$!!!!!!!!!!!!!#6%2$1Q!!!!!!!BB$5UUN3'6M='6S)&6U;7RJ>(EO<(:M;7)31V..)%*B=WFD)&*F:H-O9X2M5&2)-!!!!#%!!1!%!!!(682J<'FU?2*$5UUA1G&T;7-A5G6G=SZD>'Q!!!!!!!"#!!!!!!!!!!%!!!%+5&2)-!!!!#=!!1!%!!!(682J<'FU?2B$5UUN3'6M='6S)&6U;7RJ>(EO<(:M;7)!!F2%1U-!!!!!!!!#'%.443V):7RQ:8)A682J<'FU?3ZM>GRJ9B.$5UUA47^E>7RF)&2Z='5O9X2M!&"53$!!!!!C!!%!"!!!"V6U;7RJ>(E41V..)%VP:(6M:3"5?8"F,G.U<!!!!!!!!%)!!!A!!!!!!1!!!CN16%AQ!!!!*Q!"!!1!!!>6>'FM;82Z'%.443V):7RQ:8)A682J<'FU?3ZM>GRJ9A!$!!!-%1!!/$&YH,V<$8"4RR(?/]EA'9-F<)0.HW1D</+5HU!+B*$%N15NG(`THQZ5NA5)<!FEG92U'J*5I;547G<;5%A(3OH!**VJ4%K!&&T;5A_4D+#ETJ3GU#*A;.)*J+5F4-E%_88@0<UHH>[4HI2EG`'/-<?X>^_XN\OX/A#GD</5UBZY0A,%=B>`G"O"`/91!?A;:Y,I6_6WM#QF8Q!J,C-2K$%NN6SG072%"!K;1Z7GC=Y>="N(#R?%,9:#=N*S$9@WMZ4B:0E2+!S'Y-@7/9[QR>%RQL%D4Z[W#'S7H;3(LH$9`G@;'@3B21C/&;6V(/E"YCQX'I-6#VV?>^!B`N9]TF4'ZD2(Q/)-$@1\QF5Y)^I_Q[;EEQU4K&/?%H$+M8$U[.'9EF63KG4,G)9[BAE!BBI[/98/9.2J=Y3`R(4SG1\;K:(N/'U^0R48,CIFKB9Z1KC*;M^'>SSKSGK2'K:W`@JV6%-:66M@A7*(O.:5:LL7@#FPY+,A#3"!AO`$++2DD5GI%XZE[+!(L0.&,JD'9+4$%3*DJB.,!`[V)1,6Q2$Z"D#9"Y'>XK$&D!_DT-=-E1]SC`&B>O[Q1)S11TK%/)V>&30L7NL<!G[`X<@7XN4C;GOT<`*\NLA#<HOT+_"35`7%-W3?+O)A'G.O!E0"3,P*\8D9@8$Y]''%!G6-^5F5(?I)+XJ&30*&]JE#@8--?N&K$-/H%%0HP38L2"T(4+?S^RJ&\S8Z4,\/J*@Z]RMR@Z[%`GSV*#[5]_=P^Y)`4X''2D[@Y-`E&DV&)CF]=[KE&0.H?AI"/E>OJ>#:BDL<YPU:<>R#H9C_0T`G$&FYBR:V%RR[^_\>H"[3-6VR;#-BME-,^Y8\IE.`4@!9VN"[ZN#3BSZ!0N#BR8!3*LOAC*TDY8_L/435@*7B8R,TXDS%@U:K_/X^10,A`H8L8>ZV\O9%'AIC]#NUO%G/]$)W>3'<WA;DI2IGY>:'V?.]IL4;J-73(I/^SS;20Q$$H*U.+2?FJ3++ZA:4B4C^?GCT)!Z&K4]U_VH.NNA?D_)?"TP#*<+0$U0M*M"5X'"H:S>O%+87"EM1!TM<5CZ+:8[0?CH35.%4SE7J0T4\7?-X_,95=&<'E3DO]6%-@(&_L<8(91C$H1UJ&[6CQKF?D?:1]=3F.T,T3?.X?%T;Y9KY(:;AON9/#7`"BE/U&L/?-Y'(^DA?WD%L9=QK=.Z<<*<CK!(D[0<6)B(2==U91"WB=OGI6J*[MIM>650UK**.3K:R>NDG]+FGA7[M\+IIK(5V<<1P;@>[X3VN#;?V)5+7"U-5%ZUT<*M4B9#UQ!9OW:'6,&D0ZZ+>=".!Q*#76LBQ6)!K8*.6[JRG"#.JA,6[/9U]H:$4])MMRV8LZ44S^4B'Z-RGF$.<(MNGVZH=Q/1\4*ZFMFP*<W1.F^`E2==(7/,+@8YDD2LZ$2L*!GB,HKN)5W*_Q`'!J5VD#JXGR0S'/IWIU[;<XYB<F>^%8>X]2N9KR#4.=HN[$J+>QK-MS_5RP;8)FD.E:WHOYZ\D5)UBGW0B"K9ZU7]8=U5;12:]SJ*?4:XHL!N>`D;XP3%A&G?,WNXNC=3AG8_):F3VI'BGDJY:'D64M.C^TN-7],M#(J^84@V(TF$J)YZQ!RI1*\=$B2KI3%<BA!DZW"EKG]J8@6!($F6IIW*I9Z4?EA+J_,.AC9ND;0W@/.HD`%ENR74QJ/T,K'(6>!C-A1@C4NR!LX4C]P$%25=AB>V2#O&/TX%SJ?=3IT"0RP9P\#"JAFO2,LBZ-`V_HV_.[I?:IPL88+*[[=&2*:=V5/X(I8J72P5)(IQ\1CG0;CCJRT;G#WLB9H?LS_0V?.>*BU-.\\F-Y4W@3XD`G)84XN3!NT](\TMSP+U)\Z'IUSJRZW4@R*V436EM4]^-M'+ROWW4GLH/4*H\43[:_XU7T,WLQ:S*9W[$T&QV-N=K%*[Z8`9.=W]G:;Y_\9QRWRNQ_\WO&K>7RY"U:%LBE6R3_&97&*\7I.$-+$40DVO`[@,:>J.QP_?Y_"X4XB3P83^JZ[0W2T_)V>OPS`5W(+/PE5K_XPZ&CHJ\52LV^M":@J]XE,TAXKAKO/EJW-Q8X+U08H$4Z!7X4\0AJA?B6<@AXKQOO/FB8,6OQ>WG58!0E!NOVE3C.;S]XMPE#39`90)4^K_M++>F4)ZG=DS45W0F_$=4SX'W*?Z9@\M8SP'A6DHOI@PBO23F^8:6OWE`1NE"HB1[L[D;4@P24I>M*V5ZPF0><NIPWUJ6DH^@PRRX#F<$2/&.6I\H2Y-LL6(+=;%+S`(.(!OUNE_#+[XL\8+=/D--LH2G$I-LH:6&=$WJ%6Q,YP-DH2KFE.9+6@2FI:YL(/FDP6?/U_G:IPJY,F'>]?#IUC=U5"X)I4I_CCI2%.6;9270[M4EK%\71:5B;GJQN\C<!FKA0J)JK*.S#?LE,/YY$WG!/IA$><1-;K>1B=$[?6!LM[_R]BN]\@YGN\WO9:Y;W;J-E8UIF]B7:R%%LGMA7]AB7S9DOR72\22W]8&]?.`%]2&*#@3E3W#B?,`R?56,D%EVCS-T:8&5,FGU:2&UOD69N(!MZMEM4E%7NQI<?"<\^QW,ZK1MVK8,IPEL`H8NL7ZP),'=2A1(:=J@93\ZMW4"XX-;`&GZK_IH3G=-_:MC\/"LWP`UT68VPXX2+PIMU^PKP6T?6L`)AM7R'CQ/ZFD]1/H%95V]2WDC7<T9.ST_,3G,-^)V9Z\L;AP9N2N'@]_5PSOZZ/^K&F8'WRL]&8(]H6";@=D@%3(B:PH<PO(P>UHZGZ67A9A6D(W_KV8D[*X*F,JX=UH>?VF1NVO$OG+/OLV+LQ_J;YU7C!JV0_M<[A\W?K`PZZF3?#C8&,[2"97V'B37*/XV#68C>[S/P;02[RO3U/P,FXN^QF5Y#=@Y8F^2CF\@[D1@QB3C#YBB=;X<\`9WO45[@J\G%.`QA]PQ:\\B&_C64^D<.2N_=!<_J.PQW[*O_-&:8,6OQ_]:D9<@5,HBVZ]V^P9Q?:4*-*/@MZ;?F=G(G6Q3;_^^+\'^RT<!H?2NP>$??U'LP8=?4M/6&+W[&R0<?TA?Y!+=4[(TH=4W(OK=2ZUL_OW^\[L;?[+O@HPP?`LNP5\B0(R)A,8X_D/^"=C+^+9-NM!G/!!(/"_GS]1YJXJ4*J)Q-=WD:*LNH<OFR>/97'!52/BS^-@CO!>81T('D95CP2>F6L"KPPVK5<]<EI;KXXYF(:L^L((0E@#8\+QO4XC/6!UF#P7Q6H/0*4B%@I[%1R14<KXH8X&$B@3(\HXQI8(PI?D+_0>1R6*M+*8?1S&/3MSG$UMR'ZY2\M-BW-D&<$IO2=T7/?X+JZZ,NGZ+00(,)`3JZJ!22U8DN*A4RW-F=%UZ!'C]0C\1+(([5W:>*UZDJ&(([+M2/B>H$*<BD0FRZ9%*.M.Q?$%B@X:X>[-8I*3G2,2@-.+A1`S.?6QQ-'<]R,82?1>'[$TJ&7:"1OQ@CH$KTWK5:_U;8WS?\QP987),,'^/`?S'?1<]+?;W]T(Z4X?%+4-TE=%B#(>B!%[5_";3]FZ4!!7;LR;<V!YG$67`7GR+0%1,J.599KO"1FT.]!>@470[KWHE6G//U)5;/82YL,;-ZF#'0Z>$[;,Y(/K7TEF:Z8:;;9@+=K'S!KQX=1>APBF4+>!IB9<&FU*,-<`+V@"Y]++$P=?X3UO3^[#@4POC0X/,WRP!=ND@XB2I^WOUWY:EWKYJT77\RJZ&U`26D6*V/(@<_&T"&_07ZGD=5P#&Z0DK8D>ION=.X#0*&'&$,B%W:I(Q+RI)D_!1$CM@,[)(6].:`F(4J]E28J%OQI0K8!TA:!Z-`J8J8?P@O<RLX=Y#XJ=UY"X*Q8MU"G]&QLO?B`@8S?(6[U(%0F":PN\4YL<0^@EUGECH-Y8W$\G%NCM,;*`6A(95"_W?W!@D^R&;/Q`N4Z+W##TJ>3+=&=NGKQ(>FSGA_X-*[%_T!.1<$_BK#6"<]LY!_R048KG2$/WI`8,RD8ODK:A3V<.!^-P5Y(!+K1:9:K+2<2%I=>9.PG#:D7A5G';<:FLWY7W62'#);:`J<N>&Z<`R>=V6.)0P'T<$%=>L.F0J`Q(F;-BY!!!!!!!!"!!!!3=!!!!%!!!!!!!!!!Q!!5*%3&!!!!!!!!-!!!"C!!!!=HC=9W"AS"/190L(50?8A5HA+Z!B`:?"7>#0]4=$![?@Q'%AT3AA#237`=P!,KA.&N9_IMP"!!7K<)Q=EBS("4H!-BQN'AT````H_(LE'FT&%2]Y5W770)=%!"2C'1!!!!!!!!1!!!!(!!!-*1!!!!=!!!!B8WZJ8URB=X2,<G^X<E^X<GFO:UR71WRB=X.$<(6T>'6S!!!$42=!A!!!!!!"!!A!-0````]!!1!!!!!$-1!!!"9!%%"Q!!A!!!!#!!!#6EE!!"B!=!!)!!"!-Q!!#F>I;7RF)%RP<X!!!"R!=!!)!!"!'!!!$E.B=W5A5X2S>7.U>8*F!!!?1(!!#!!!1"%!!"&198*T:3"4>'&U:3"2>76V:1!=1(!!#!!!1%I!!!^&>G6O>#"4>(*V9X2V=G5!7A$R!!!!!!!!!!)91V..,5BF<("F=C"6>'FM;82Z,GRW<'FC%U.443".<W2V<'5A6(FQ:3ZD>'Q!*5!7!!-*4G^U)'%A1V.."5J,36..!U.441!%6(FQ:1!!$E!B#%FO4(:M;7*Q!!"=!0(E_#-#!!!!!BB$5UUN3'6M='6S)&6U;7RJ>(EO<(:M;7)31V..)%*B=WFD)&*F:H-O9X2M!#B!5!!(!!!!!1!#!!-!"!!&!!905'&S>#"3:7:F=G6O9W6T!"J!=!!)!!"!+A!!$&*F:WFT>(*B>'FP<A!!'E"Q!!A!!%!K!!!-37ZU:8*O97R%982B!!!71(!!#!!!1#I!!!B$5UUA4G&N:1!!&E"Q!!A!!%!K!!!*4'&T>#"3:8.Q!"R!=!!)!!"!+A!!$V*F<7&J<GFO:S"4>'&U:1!71(!!#!!!1#I!!!F"=G>V<76O>(-!(%"Q!!A!!%!K!!!05G6T='^O=W5A5W^V=G.F!"B!=!!)!!"!+A!!#F.P>8*D:3"$5UU!!":!=!!)!!"!+A!!#&.F<'6D>'^S!!!31(!!#!!!1#I!!!6&=H*P=A"J!0%!!!!!!!!!!B*$5UUN3'6M='6S,GRW9WRB=X-B8W.T<7BF<("F=F^'=G^O>&^5>7ZO:7RT8V*F:H-O9X2M!#R!5!!+!!A!#1!+!!M!$!!.!!Y!$Q!1!"%.2H*P<H1A6(6O<G6M=Q!31(!!#!!!1#I!!!23:8.Q!!"?!0%!!!!!!!!!!B*$5UUN3'6M='6S,GRW9WRB=X-A8W.T<7BF<("F=F^#97.L8V2V<GZF<(.@5G6G=SZD>'Q!)E"1!!5!#!!*!"-!$!!2$%*B9WMA6(6O<G6M=Q!!)%"1!!-!"Q!3!"131V..,5BF<("F=CZM>G.M98.T!!!"!"5!!!!!!!!!'ER71WRB=X.1=GFW982F2'&U962B9E^S:'6S!!!!D2=!A!!!!!!#!!5!"Q!!$!"!!!(`````!!!!!1!"!!!!'A!!!!!!!!!"!!!!!A!!!!-!!!!%!!!!"1!!!!9!!!!(!!!!#!!!!!E!!!!+!!!!#Q!!!!Q!!!!.!!!!$A!!!!]!!!!1!!!!%1!!!")!!!!4!!!!&!!!!"5!!!!7!!!!&Q!!!"A!!!!:!!!!!!!!!"N-6E.M98.T5(*J>G&U:52B>'&5;7VF=X2B<8!!!!!:&Q#!!!!!!!%!"1!(!!!"!!$E_$=O!!!!!!!!!#:-6E.M98.T5(*J>G&U:52B>'&-98.U18"Q<'FF:&2J<76T>'&N=!!!!"E8!)!!!!!!!1!&!!=!!!%!!/4Y.SY!!!!!!!!!'ER71WRB=X.1=GFW982F2'&U962Z='6%:8.D!!!$7R=!A!!!!!!"!!A!-0````]!!1!!!!!$0Q!!!"=!%%"Q!!A!!!!#!!!#6EE!!"B!=!!)!!"!-Q!!#F>I;7RF)%RP<X!!!"R!=!!)!!"!'!!!$E.B=W5A5X2S>7.U>8*F!!!?1(!!#!!!1"%!!"&198*T:3"4>'&U:3"2>76V:1!=1(!!#!!!1%I!!!^&>G6O>#"4>(*V9X2V=G5!7A$R!!!!!!!!!!)91V..,5BF<("F=C"6>'FM;82Z,GRW<'FC%U.443".<W2V<'5A6(FQ:3ZD>'Q!*5!7!!-*4G^U)'%A1V.."5J,36..!U.441!%6(FQ:1!!$E!B#%FO4(:M;7*Q!!"=!0(E_#-#!!!!!BB$5UUN3'6M='6S)&6U;7RJ>(EO<(:M;7)31V..)%*B=WFD)&*F:H-O9X2M!#B!5!!(!!!!!1!#!!-!"!!&!!905'&S>#"3:7:F=G6O9W6T!"J!=!!)!!"!+A!!$&*F:WFT>(*B>'FP<A!!'E"Q!!A!!%!K!!!-37ZU:8*O97R%982B!!!71(!!#!!!1#I!!!B$5UUA4G&N:1!!&E"Q!!A!!%!K!!!*4'&T>#"3:8.Q!"R!=!!)!!"!+A!!$V*F<7&J<GFO:S"4>'&U:1!71(!!#!!!1#I!!!F"=G>V<76O>(-!(%"Q!!A!!%!K!!!05G6T='^O=W5A5W^V=G.F!"B!=!!)!!"!+A!!#F.P>8*D:3"$5UU!!":!=!!)!!"!+A!!#&.F<'6D>'^S!!!31(!!#!!!1#I!!!6&=H*P=A"J!0%!!!!!!!!!!B*$5UUN3'6M='6S,GRW9WRB=X-B8W.T<7BF<("F=F^'=G^O>&^5>7ZO:7RT8V*F:H-O9X2M!#R!5!!+!!A!#1!+!!M!$!!.!!Y!$Q!1!"%.2H*P<H1A6(6O<G6M=Q!31(!!#!!!1#I!!!23:8.Q!!"?!0%!!!!!!!!!!B*$5UUN3'6M='6S,GRW9WRB=X-A8W.T<7BF<("F=F^#97.L8V2V<GZF<(.@5G6G=SZD>'Q!)E"1!!5!#!!*!"-!$!!2$%*B9WMA6(6O<G6M=Q!!$%!B"U.I97ZH:71!)E"1!!1!"Q!3!"1!&2*$5UUN3'6M='6S,GRW9WRB=X-!!!%!&A!!!!!!!!!?4&:$<'&T=V"S;8:B>'6%982B2':M>%2B>'&4;8JF!!!!'2=!A!!!!!!"!!5!!Q!!!1!!!!!!6!!!!!!!!!!;4&:$<'&T=V"S;8:B>'6%982B2':M>%2B>'%!!!/<&Q#!!!!!!"=!%%"Q!!A!!!!#!!!#6EE!!"B!=!!)!!"!-Q!!#F>I;7RF)%RP<X!!!"R!=!!)!!"!'!!!$E.B=W5A5X2S>7.U>8*F!!!?1(!!#!!!1"%!!"&198*T:3"4>'&U:3"2>76V:1!=1(!!#!!!1%I!!!^&>G6O>#"4>(*V9X2V=G5!7A$R!!!!!!!!!!)91V..,5BF<("F=C"6>'FM;82Z,GRW<'FC%U.443".<W2V<'5A6(FQ:3ZD>'Q!*5!7!!-*4G^U)'%A1V.."5J,36..!U.441!%6(FQ:1!!$E!B#%FO4(:M;7*Q!!"=!0(E_#-#!!!!!BB$5UUN3'6M='6S)&6U;7RJ>(EO<(:M;7)31V..)%*B=WFD)&*F:H-O9X2M!#B!5!!(!!!!!1!#!!-!"!!&!!905'&S>#"3:7:F=G6O9W6T!"J!=!!)!!"!+A!!$&*F:WFT>(*B>'FP<A!!'E"Q!!A!!%!K!!!-37ZU:8*O97R%982B!!!71(!!#!!!1#I!!!B$5UUA4G&N:1!!&E"Q!!A!!%!K!!!*4'&T>#"3:8.Q!"R!=!!)!!"!+A!!$V*F<7&J<GFO:S"4>'&U:1!71(!!#!!!1#I!!!F"=G>V<76O>(-!(%"Q!!A!!%!K!!!05G6T='^O=W5A5W^V=G.F!"B!=!!)!!"!+A!!#F.P>8*D:3"$5UU!!":!=!!)!!"!+A!!#&.F<'6D>'^S!!!31(!!#!!!1#I!!!6&=H*P=A"J!0%!!!!!!!!!!B*$5UUN3'6M='6S,GRW9WRB=X-B8W.T<7BF<("F=F^'=G^O>&^5>7ZO:7RT8V*F:H-O9X2M!#R!5!!+!!A!#1!+!!M!$!!.!!Y!$Q!1!"%.2H*P<H1A6(6O<G6M=Q!31(!!#!!!1#I!!!23:8.Q!!"?!0%!!!!!!!!!!B*$5UUN3'6M='6S,GRW9WRB=X-A8W.T<7BF<("F=F^#97.L8V2V<GZF<(.@5G6G=SZD>'Q!)E"1!!5!#!!*!"-!$!!2$%*B9WMA6(6O<G6M=Q!!$%!B"U.I97ZH:71!)E"1!!1!"Q!3!"1!&2*$5UUN3'6M='6S,GRW9WRB=X-!!!%!&A!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!%!#!!)!!!!!1!!!,3!!!!+!!!!!)!!!1!!!!!.!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!-X!!!)0XC=N62L5^.!&$W1"FIIF*:81;AJ$U'%CK)C_)J5'%&A+K$/K#0'>&MSJEEHW4$ST2`,$Z"P@02O7N/7FQRINZH:P8@PP7@XH,M!6(3J:91"..0``3K1L+T6/;$NQZZB-G8>NMP!5.7?"$KTGMO5<?ZY/P=="K3KPDA1TWG/\^1Y5^Z[T'."Z"I17^ZH&K],`9AD6(\.S?TWRMRL:J;:I\TDBGHQAYSZ<RL@OMGB<.BZD\$M(*2:2O=GRN5_3*&.GSO;1HZZ\=XK^I:%-Y4%(A+JJM/LVLJ)1/A`Y_DQ?,4ZQDI*57>*=QV>W7)&VS]TK?<13F&.>$]31J$2UNGY$@`F$-O76Q)'KT=X"53X7.&QO;.RQ\9;0;M7:Y[FG;]ULA&^.5^9&.X53KT"'FH88%\1X8,!$&FD7[SE'::B&3P=.53]>)J?C9BT4U3Y:>M3:.O?I\.!/?2LKZD%K2I2<4/4[>RWA%4.+C]\$JG-WDUG;P>)^[?<GOOG>X7XN/?<>F==W_+\/ZZF->0>$=C;*L,;%+'P(6&UI"-R>#'/2)=@I&1$[EO(`(P!FQN,+X7FFT4^__H+)V2:^CPX5.V%6/Q+SPV,]=7IP12Z"?9Q3W=OIGK[.<OH7577&U)]0*\0H(/+TDK4S$Z,W50I1T>[U4_=.4W8:+49";6SZL*D\)M?TAN6S44I=(H#]AM$N*#K3]TB"C*K+[3#7529`3H:7\RC9(;"(J==<2V'#D=F,V]A6I,(ZM^=0$4"0&EXD^@.[?H!][OW711N2$437,]C$UE)(N)9Q3D'-)Z<G!C1E9<Q[<L#45%)^`9:)X>.9@:!#,/7,_'40IEJX-'%R(`EK7[/[&!QD@4@HN3R%XL-H+((S5PW9/L#DJHW9>\&,/Z>1JP%K#QYFAE:E@)6AOY6/J>#]HR!?B8D)1HVTRCIDN/7GO?20SIC<]*]&>,FWK5.OI_BC4\1]2O/CE'==U5_7S=;HJ#=RQJ?U/;Q$SB*39=QA`NYD!5M5MAC$>"8H[K<VB([?HXP%^KZA(Y]*6O#9011I&Y]]V>R!B1D9"U%M*XMX>2^,620JEQ3:;2\2N^PBE7WP1!!!!#$!!%!!A!$!!1!!!")!"%!!!!!!"%!]1$F!!!!7Q!2!!!!!!!2!0%!Z1!!!'Y!%1!!!!!!%1$R!/5!!!#"A!#!!)!!!"%!]1$F%EVJ9X*P=W^G>#":95BF;3"632*.;7.S<X.P:H1A77&):7EA65E347FD=G^T<W:U)&FB3'6J)&6*!4!!5F.31QU+!!.-6E.$4%*76Q!!,7Q!!!28!!!!)!!!,5Q!!!!!!!!!!!!!!#!!!!!U!!!%3!!!!"V-35*/!!!!!!!!!7R-6F.3!!!!!!!!!9"36&.(!!!!!!!!!:2$1V.5!!!!!!!!!;B-38:J!!!!!!!!!<R$4UZ1!!!!!!!!!>"544AQ!!!!!!!!!?2%2E24!!!!!!!!!@B-372T!!!!!!!!!AR735.%!!!!!!!!!C"W:8*T!!!!"!!!!D241V.3!!!!!!!!!JB(1V"3!!!!!!!!!KR*1U^/!!!!!!!!!M"J9WQU!!!!!!!!!N2J9WQY!!!!!!!!!OB$5%-S!!!!!!!!!PR-37:Q!!!!!!!!!R"'5%BC!!!!!!!!!S2'5&.&!!!!!!!!!TB75%21!!!!!!!!!UR-37*E!!!!!!!!!W"#2%BC!!!!!!!!!X2#2&.&!!!!!!!!!YB73624!!!!!!!!!ZR%6%B1!!!!!!!!!\".65F%!!!!!!!!!]2)36.5!!!!!!!!!^B71V21!!!!!!!!!_R'6%&#!!!!!!!!"!!!!!!!`````Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"Q!!!!!!!!!!0````]!!!!!!!!!Q!!!!!!!!!!!`````Q!!!!!!!!$5!!!!!!!!!!$`````!!!!!!!!!.Q!!!!!!!!!!0````]!!!!!!!!#^!!!!!!!!!!!`````Q!!!!!!!!,]!!!!!!!!!!$`````!!!!!!!!!T!!!!!!!!!!!0````]!!!!!!!!$A!!!!!!!!!!!`````Q!!!!!!!!/1!!!!!!!!!!4`````!!!!!!!!"NA!!!!!!!!!"`````]!!!!!!!!'[!!!!!!!!!!)`````Q!!!!!!!!<Y!!!!!!!!!!H`````!!!!!!!!"QA!!!!!!!!!#P````]!!!!!!!!('!!!!!!!!!!!`````Q!!!!!!!!=I!!!!!!!!!!$`````!!!!!!!!"U!!!!!!!!!!!0````]!!!!!!!!(6!!!!!!!!!!!`````Q!!!!!!!!@9!!!!!!!!!!$`````!!!!!!!!#>Q!!!!!!!!!!0````]!!!!!!!!.Y!!!!!!!!!!!`````Q!!!!!!!!XI!!!!!!!!!!$`````!!!!!!!!%(A!!!!!!!!!!0````]!!!!!!!!=E!!!!!!!!!!!`````Q!!!!!!!"S9!!!!!!!!!!$`````!!!!!!!!(+!!!!!!!!!!!0````]!!!!!!!!=M!!!!!!!!!!!`````Q!!!!!!!"U9!!!!!!!!!!$`````!!!!!!!!(3!!!!!!!!!!!0````]!!!!!!!!J4!!!!!!!!!!!`````Q!!!!!!!#F5!!!!!!!!!!$`````!!!!!!!!+6Q!!!!!!!!!!0````]!!!!!!!!JC!!!!!!!!!#!`````Q!!!!!!!#T%!!!!!!Z$5UUN3'6M='6S,G.U<!!!!!! + &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!$'@5F.31QU+!!.-6E.$4%*76Q!!,7A!!!1X!!!!)!!!,5A!!!!8!!!!!2*$5UUN3'6M='6S,GRW9WRB=X-!!!!!I"=!A!!!-!!!+!!%!!!!!!1!!Q!]!,Q!(U#!!A!!!!!"!!%!"P````]!!!!!!!!!!!!!!!!'^7+U-+?&1)@R;'T(/)H2!!!!$!!!!"!!!!!!E3,%G?H^0UCZ+WM?:5A$<.1>D.G0!,)%[9!*G/TY1HY!!"!!!!!!!%'X5"CR+\6'FP:+.@YSEW)"!!!!`````^1>D.G0!,)%[9!*G/TY1HY!!!!1*&:B*%<'G<#8QWIIY[YLYA!!!!1!!!!!!!!#%A!"4&:$1Q!!!!5!!F:*4%)!!!!!5&2)-!!!!!5!!1!"!!!!!!)!!F:*1U-!!!!!!BB$5UUN3'6M='6S)&6U;7RJ>(EO<(:M;7)31V..)%*B=WFD)&*F:H-O9X2M5&2)-!!!!#%!!1!%!!!(682J<'FU?2*$5UUA1G&T;7-A5G6G=SZD>'Q!!!!!!!&#!!!!!!!#6EF$1Q!!!!!!!BB$5UUN3'6M='6S)&6U;7RJ>(EO<(:M;7)41V..)%VP:(6M:3"5?8"F,G.U<!"16%AQ!!!!)A!"!!1!!!>6>'FM;82Z%U.443".<W2V<'5A6(FQ:3ZD>'Q!!!!!!!*#!!!)!!!#6EF$1Q!!!!!!!!%B8W.T<7BF<("F=F^'=G^O>&^5>7ZO:7RT8V*F:H-O9X2M5&2)-!!!!$!!!1!%!!!(6(FQ:72F:C&@9X.N;'6M='6S8U:S<WZU8V2V<GZF<(.@5G6G=SZD>'Q!!!!#!!0`!!!!!1!"!!!!!!!.!!!!!!!!!!!!!!!!!!!!!!!#6EF$1Q!!!!!")&^D=WVI:7RQ:8*@1G&D;V^5>7ZO:7RT8V*F:H-O9X2M!&"53$!!!!!P!!%!"!!!"V2Z='6E:79A8W.T<7BF<("F=F^#97.L8V2V<GZF<(.@5G6G=SZD>'Q!!!!#!!4`!!!!!1!"!!!!!!!.!!!!!!!!!!!!!!!!!!!!!!!$!!!!!!!#!!5!!!!!!$%!!!"3?*RDE'*A;W#YQ!$%D%$-V-$U!]D_Q#$!!2+&E!C7!!=S2";(K7.A!!![YB+?!!!!!!!!3A!!!2BYH'.AQ!4`A1")-4)Q-"=!;29U=4!.9V-4Y$)8FVV1=7;I'VEBIIR!-;9^1!943![K*A4M(1:G';$Q#82TW,#9$1!8.S>I!!!!!!!-!!&73524!!!!!!!$!!!$2!!!#;RYH+7747A452$(X[<<O*6)AM;GBY++Q1;L.=8[A;UUV21<#416M6$"#KWVAK#(&".179H',GN#F:KL"Q_?&%%MJ5D.2S7F^"!EBY*95$QUJ+$W)!JCH(H\NHG6WE.W97>_/`P_MW`H<>\%MYG1+Q?0(BY$8S51YC!S'<AW?'ETA7OC(?-VR0!290HW`B.P4G;'Y'CS\LB,LS0,&N8LN%6O/ON-)X<6\\1L@K?IC-[FX[63+4*DS;B>6\-><4B7F3#?^4IFP!!PIC`V$/-I06]!MEFS;$=*CMX*PER7<B'U"_MJ_^9_P`>=:&E#4<U;B%>(X]#=92)\F8A33)H/I)X09J3I.7OG^F/QDC?N^UZ$@J7/CX7*3BR"J9*9D[AEK.)DKDZR07WN!?VH5LHW2=8;E>NKAOJ/C&JRV'GK[R;V+AWJ:]3BVF\2/JY?/2],G"2N>)^*3SO(4=4[/#7(U+6(=_Z:^VSQV4K2D(Q4#LWQHI#&<O:0->`/`"(G$V#@,D3)_";Y9L'!1UH1J;0,&AM\F'G[@IFZN.-Z_E9/V?>9LRI*P"O>V[MR4`0E^'LE.KREPQ'NSY$WO[FS\:1"<=3!VG^!O^W!>F'I80N-+(^DLL8@G%P`RP,U'VOA?6SKT\6?HE';*[`0)5`T,/BT7.BQ$PM.;(_1SL6P$7B(52OH>?P1N^5IL6P!LC11Z*!>^I#E(%;8'JVTJ[U4\S-LADMVC4OWN4.>^-'PP?B&UY\G'*J$;.RI'N(M1<-,44U;"ZKN;,;AE>"5Y@9S)VXIBR\B)<D<_ZWWV#>2P?/#Z]1?II7124ELV77^ULZ;O":G&7APCE8P1N*K@[(N)OCU+3X9C53=+BWDGL-?&_V,(LPGBD58UNRV>*/UY]&=-KP^](FR=;I;P*HLE2YY:4CR2`.H%R%)0N!%^B9<WQ:M9D'^VS+`:!G8A,?RG##5\R`H/-TR;Y\PG]K=Y<D%=7N6G7^Q`)LDLRQXCG7_T0&4DIM=.V38?9$D*RR`9&TA[P//V=,&R@,G=HXR&@$/!R:$@M19;W^GM9]!9YS`!&^E8!37T2KPA,?R_#`A*)P`99RL2]D``=FO<S@B$PX`VV^6O+N_!!!!$"=!A!5!!!1R.SYQ!!!!!!Q8!)!!!!!%-4=O-!!!!!!-&Q#!"1!!"$%X,D!!!!!!$"=!A!!!!!1R.SYQ!!!!!!Q8!)!&!!!%-4=O-!!!!!!5!1!!!068.9*Z*K+-,H.34A:*/:U!!!!.!!!!!!!!!!!!!!!!!!!!!!!!!)$`````A!!!!9->&%'%I<<"B"F6193&&%'$/22"A!!!!@````_!!!!"A!!!!9!#Q!'!#$!"A#!-!9#!!Q'!!!-"A'!/!9"Y0A'!@PY"A(`_!9"``A'!@`Y"A(`_!9"``A'!```BA"`^_9!0^_'!!^`"A!"`!9!!0!'!!!!"`````Q!!!A$>X>X>X>X>X>X>X>X>X>X>UT-T-T-T-T-T-T-T-T-T0>-T-`]T0`]`-T]`-T]T-TX4-T]T]`-T0`0`0`0`-T-^UT-`-T-`]T]`0T]`0T-T0>-T0T0T-T]`-T]`-T]T-TX4-T0`-``T0T-`0T-`-T-^UT-T-T-T-T-T-T-T-T-T0>X>X>X>X>X>X>X>X>X>X>X1!!!!!!!!!!!!!!!!!!!.U!!!!!!!!!!!!!!!!!!!$>!!!!!!!!#KKA!!!!!!!!X1!!!!!!#K-T/K!!!!!!!.U!!!!!#K-T-T-[I!!!!!$>!!!!#K-T-T-T-TKA!!!!X1!!!!KD-T-T-T-`I!!!!.U!!!!+KK-T-T-``[!!!!$>!!!!#KKKIT-```_A!!!!X1!!!!KKKKKK````I!!!!.U!!!!+KKKKL````[!!!!$>!!!!#KKKKK````_A!!!!X1!!!!KKKKKP````I!!!!.U!!!!+KKKKL````[!!!!$>!!!!#KKKKK````_A!!!!X1!!!!KKKKKP```[L`]!!.U!!!!!KKKKL``[KP```Q$>!!!!!!#KKK`[KP```Q!!X1!!!!!!!+KKI`````!!!.U!!!!!!!!!I`````!!!!$>!!!!!!!!!!!0``!!!!!!X1!!!!!!!!!!!!!!!!!!!.X>X>X>X>X>X>X>X>X>X>X1!!"!"\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XM0$Q]0$Q]0$Q]0$Q]0$Q]0$Q]0$Q]0$Q]0$Q]0$Q^\?Q]0$Q]0``]0$Q````]0`Q]0$`]0`Q]0$`]0$Q]0$XN\$Q]0$`]0$`]0`Q]0$Q```Q```Q```Q```Q]0$Q]0?XM0$Q]0`Q]0$Q]0``]0$`]0`Q``$`]0`Q``$Q]0$Q^\?Q]0$Q``$Q``$Q]0$`]0`Q]0$`]0`Q]0$`]0$Q]0$XN\$Q]0$Q```Q]0````$Q``$Q]0`Q``$Q]0`Q]0$Q]0?XM0$Q]0$Q]0$Q]0$Q]0$Q]0$Q]0$Q]0$Q]0$Q]0$Q^\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!?XM!!!!!!!!!!!!!!!!!!!A)!!!!!!!!!!!!!!!!!!"\?Q!!!!!!!!!!!!!!!!BE/G2E#!!!!!!!!!!!!!!!!(N\!!!!!!!!!!!!!!BE/A]0$Q^E:!A!!!!!!!!!!!!!?XM!!!!!!!!!!!BE/A]0$Q]0$Q]0:'1)!!!!!!!!!!"\?Q!!!!!!!!"E/A]0$Q]0$Q]0$Q]0$W2E!!!!!!!!!(N\!!!!!!!!!$I[$Q]0$Q]0$Q]0$Q]0`G1!!!!!!!!!?XM!!!!!!!!!/G2E/A]0$Q]0$Q]0`P\_/A!!!!!!!!"\?Q!!!!!!!!![:'2E:$I0$Q]0`P\_`PY[!!!!!!!!!(N\!!!!!!!!!$JE:'2E:'1[:0\_`P\_`DI!!!!!!!!!?XM!!!!!!!!!/G2E:'2E:'4_`P\_`P\_/A!!!!!!!!"\?Q!!!!!!!!![:'2E:'2E:0\_`P\_`PY[!!!!!!!!!(N\!!!!!!!!!$JE:'2E:'2E`P\_`P\_`DI!!!!!!!!!?XM!!!!!!!!!/G2E:'2E:'4_`P\_`P\_/A!!!!!!!!"\?Q!!!!!!!!![:'2E:'2E:0\_`P\_`PY[!!!!!!!!!(N\!!!!!!!!!'2E:'2E:'2E`P\_`P\_:'3ML+Q!!!!!?XM!!!!!!!!!!$I[:'2E:'4_`P\_:'1[L+SML+SM!!"\?Q!!!!!!!!!!!!![:'2E:0\_:'1[L+SML+SM!!!!!(N\!!!!!!!!!!!!!!!!/G2E:'10L+SML+SML!!!!!!!?XM!!!!!!!!!!!!!!!!!!$I0L+SML+SML!!!!!!!!!"\?Q!!!!!!!!!!!!!!!!!!!!!!L+SML!!!!!!!!!!!!(N\!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\?XN\!!!#D!!"2F")5!!!!!1!!F2%1U-!!!!")6^D=WVI:7RQ:8*@2H*P<H2@6(6O<G6M=V^3:7:T,G.U<&"53$!!!!!Q!!%!"!!!"V2Z='6E:79B8W.T<7BF<("F=F^'=G^O>&^5>7ZO:7RT8V*F:H-O9X2M!!!!!A!!`Q!!!!%!!1!!!!!!$1!!!!!!!!!!!!!!!!!!!!!!!!!"!!!"K&"53$!!!!!!!!!!!!!#6%2$1Q!!!!!")&^D=WVI:7RQ:8*@1G&D;V^5>7ZO:7RT8V*F:H-O9X2M!&"53$!!!!!P!!%!"!!!"V2Z='6E:79A8W.T<7BF<("F=F^#97.L8V2V<GZF<(.@5G6G=SZD>'Q!!!!#!!$`!!!!!1!"!!!!!!!.!!!!!!!!!!!!!!!!!!!!!!!!!!%!!!&O5&2)-!!!!!!!!!!!!!*52%.$!!!!!!!#'%.443V):7RQ:8)A682J<'FU?3ZM>GRJ9B*$5UUA1G&T;7-A5G6G=SZD>'R16%AQ!!!!)1!"!!1!!!>6>'FM;82Z%E.443"#98.J9S"3:7:T,G.U<!!!!!!!!%)!!!!!!!!!!1!!!1J16%AQ!!!!*Q!"!!1!!!>6>'FM;82Z'%.443V):7RQ:8)A682J<'FU?3ZM>GRJ9A!#6%2$1Q!!!!!!!!)91V..,5BF<("F=C"6>'FM;82Z,GRW<'FC%U.443".<W2V<'5A6(FQ:3ZD>'Q!5&2)-!!!!#)!!1!%!!!(682J<'FU?2.$5UUA47^E>7RF)&2Z='5O9X2M!!!!!!!!1A!!#!!!!!!"!!!#+V"53$!!!!!H!!%!"!!!"V6U;7RJ>(E91V..,5BF<("F=C"6>'FM;82Z,GRW<'FC!!-!!!Q2!!!Y-8C=P6M.=&0(%>Y\S3!:AS6MA]W@:#.MYJ3@1!K%E-3V"3W9@`/@$F3W"1BM#73:B(1;EF3BJ2.;:NJ13!>+[=!EH7F-3I!58.J3$Z/-I+4/F+<1)G"IUAGEJ36-S14Z>>]^P3?>XJ/?B'3<]9YRN\>XX\?XO\=[!+;.MZ43(HA_!M2S&X_9'Y(]ZB!"["JHAOB8Z8;Q,#6@!#EO)R'I-3WV8+9^:%1%#JJ$F;;*TBVQ'U=,&Y1NBE*SUH).B`;TF/&E_2%I$)<AR^9ZDL$&U4(#M3.0HL9)<*;>J)?O=.D_:^I:^+&&#)Y6J85=[1(C,$=;AR5,86ZXU#(_VDT/6-<G.%@!YAQ.^$P#64ADWD\$JK34$2/I5ZY3=-KR=04IU:C366+K:-O9BDK'#1#''DIZB=ZAV'FTB,`%>0+:$NKJE?UY<4U`&.=O+C7K&DF#K)FKTU:X,+L+;J%;JH<^_H651RF67R_"9E?YVF2GON:]+7`AIO!*)%##\]-IJ'/.3;A4@G4II!?M]U5OG-:AJ--2)G/G%UM$`L5B!N8"%0E'-*A(A:X?I-7-$[0-RQS2$T+,]7&W\L"!D*"$/I1YD6U6)_N;WNM#<L`>N^<?V/*K;\.P]HOWO!*O?\-LY&*4^91T:*YKYC!;9WY#1]&)O]HN?.B^=0DQ991#:5TV361>[AAL?E6)]E8SG1*^=QR[U7I-Q[=11_?^*?N%(->-J\,X'E8P*@F-PM[EF`HT'T&`HI4_<,5E,J4TZS`XAD^0=9:'0J`AT_17055C+8RTKK15]W>[#A%[2W[FU*G'/NPC`2FNX%+>C,Y`0_9-78C(&H54((LX\NW=(J)R88&I)S'S1QPXB@OC1X^.]"D7U(LGU*+(,E!_U+(&=")GO[#)H/0B@[MZ.*2]F;&@%P0?0)2`2GLY\@V!]O$_>?N>XH8OZA1;#C,Q+X3Y39\Q-D:V):P;"K/B'C<BVE<6YXSCN.KER:)?A\X,*J%`!-/=H1UJ&[7F)ILG"F/&/,V[;,-A$E7J0T4\7=WWW"[0YBY(/])FMI]01_QGQ&4=9'>H*WY1J>9'3R!$/RN3,EJF@I^[+>*1U20+2;E`.0N:YT@YNB2Q6M;2+/\R51R]=8[NN=>B#)/>$3E8J7,#K6[.ZF$RR+5X-P.*YX>Y4.LBCLA>FK#[VAY*<]''1\17MZYTA9@W/"\;-3NBT#JQXFNMFO+I!?0I^N5C%>&RT2B!(;&S[;B7EHKSCRV61`3IEEV+JH&WW/<QK7;"<KTMKCCI>46NN#^J^XL>,7U*J\5B1J9(1R14H4.MGR/&A,4!"C\:E:5M7-`HEJVQ%U$!E*:7O("5A#J=EV8KH'9%)WG!N8IZD4S>E.0QCST(6?PF.0,V/%<ET';5-VM?SW<8G>T!Z$N-HG7S7]FP:!W8X_2&RQ>9YMJ^@C/.'PE.'ME#;%O?KUB49H\$]9#F47-+H?<%`)9[D;D4JJP@C&O6XU2>X@R'VCL%*-VS?XI/EJX#IST,Z4'^J=C7-W2H;?\DHO.1D3'<9_%'JDH2<R>T22J"&HT+EFZ.H??M#VX_.L?^)3!7:YP;X?W*R+#:@YBG6,7A;';/HBE;.6/QW,X/UR<QOQ)?HV>.`5@/5/EDDH!$'B!HNQ/&'KB)2O'!#0H9'3K<SF>^5!=/67CD9GBDF.[3!KHYMW#*CW.I`:]YW?0]33X&:0#E\-OI9>6U#)S""_*/X%#P>/,S]-2&2S#&X6%+Y5\0=4+FZR+D-%`'^C`M)'G#7Z%OO(ET`8[@8YXKBZGC_N>=IHLJQ6%FFT61\=?B?F:'^1A?D$N#+9^K++H(.K9,;O&C>[P,Y`6YVUG(1QXPO5TB0:^,?0_9B>0?V)#X0Q@P/T+]L1DPE;D4+H(H:.`%H6.*73R0TUSQ9L'\<:/;O=Z-G@N.,JH\@2<-P;P"H)FD<I0-8$5SVSI1HLF@^AVT<S:FLD\ND$(<'X$\P;Y7JV<(A(2E3O'28&,Y6B95HN;AU-QI.-_07\`J]NFWEX#`Z\DY(>0?&+^>,WHHI`:(0YD6W[`,^49=I[_23L\?`E7+?HN2'P8WQ&F_HT?1P/$?K#KY[3H9T"@=L1^?=.0E"<>0M_#G"[&6N_$?L#[Y[7&=N7\"X;:2=!_1#W\72+)VL,T?S_1**D^A]B0WL[QIJW6-DG:S0*.49_8Y.R0,=<9F\FB`OR@+];"7/?[B__'Z&+8V>F7\;4^#W1'?&$KPK.J._^&/BWQH64G_5^VOWC`<3F7/@V_`((=+6M.%Y5V7DO>(ASON5=JRI1L,]=U=#\3W4Y)LL?PN=JQ[-QSO>'9/ASO>F56Q0;E28!PC]S/>'K71VAJ6^'7BHCM=[7/^6Y\4[:GC_HAO5:XRY+D3*T21(=CB/D[++B%1V6JB&9`KR/3I4N:"F3&K;H#XO*M#7K!_ECGIEX)*[O1M\DA0;9![C!.VN!RKJV#&Q0JZ5#OTL\(S'XTN`C;XP;ZBHBL:KES2@3C8S&:H%13O;S"<S#&<*C/\&:(N&(<R=8RYX]4R%5E*^+2,9+&YP`&Z25O-347,)T.F=61O7<2F%83[.6CU=#TGS3R/12;X#BNY&PPX$9PGJ#T7J=OC_3P_>?WN<G]AM:R'"!>FSF^B,PGT:-(@=RL]7<GL[C>+:QTZGS,MY'P;``4.6@7`@>%K_CT4W_K^8.Z7P]C#R<%;,!\G70R![=2B48R(;/*:P.AX,0YN+9MTUD6DHONK#^CV'U:`TZ3`+\HE\WI76=<<'PQ6=@S>5&J^S.]2)?&G_>O_Y?^X3@G<F6;"C"7-@<[L6?0IH=G5OH>T3>V\76#X7Y/[9I[[P5KP$[FLD2;)#H5`[RPK$P:[L_`HG6*Y+*=5PJ%&B<5;&*9E\@5*6?*XL)[^I^(L'Z,1[]O8?XX#64A*R`B?8V'+8N`K."`#&+),C'&RL>PP^D;Z.4J_HO91X`#$S`"HPO%8[*60W.MV'XZQ"P[EW`$<IG\YQ6F=N7\$\RG.BN^1O?(8HT8W^D"ZF-EQEZ_TFJ[6S9?:8"*L\XULM<X(.M#>Z'W^U.Z\1;O^>RZ/QZ55L<I8%^N\/"\A!JR0I@/>R09?[JR(H3P[\<XPKNJ\IKZ_?_^\_OW^4O%]@%C!N@@[-\U&S)LUJASWQ#9Y!!=Y([<,R$CH?F-GED!RT;.EGOW>O[8&UZB99"2%[(,UR_+Y"V>$-=;.B3+^&W67M'K_`7J2PRO3BKL@@C5>GPWM==_2]*@ML#Z0?)Z5$35+^<"7=Y]F/%2_DI2$&".OL?>@=5/&^)@O@@#B=?_B[-LY^V$&5GQIF>Z$)5Z+T+903T%<HB(OQS(9S-6M/CZ&T.9Z\=KHHEOW<EI]]=MD^+HGE"&(2?/UG"0(9S6Q44E!;,Q_,N!I=@J4:FUH4G/E5=@IKR%[&W=-FO'-_8(FA1EWQX"Y-3&`>H>XIR?AF+:%N&]QUK"$`)VZ8$!Q:PT%N>&Z"U<I0/E6:E&#\"_+=/L0;J2H\2J@<*\P#^B>9AMM<U\^\):Z"PQJZL<T-@F0>Y1J-T/2Q3%)>W%!4J4Y&J,S8F-!":KP&JP5$C9.6<^;<%I]2!OEV2BCKY&#8-XQ"V^.9`KL;?279Y\1B2IZ>(CMNITG5)9`FU0JIPA=[J</36HF>FJJB]JSI<)#L$>R"W#_'6-JU#C&BM781EMRP]L6](DQII/^R\>,3Z,XI*^/_[)`=YP<']"SW.`?&'DX;\4<BG4;LCH.:<P'HE84^&7.5H5Y>^PY8-%8Y^<G;.R3])8E_/J?.WC[VQX=)]E595-O%4:GA@!L'AC0Y"!/+R]PIA>8QVH_5>/HS2&?E3\#A_J=$/"E$ET_F?F>[^_ZP'P>TA,?FT4A(=H"?T1'<Q8#OZ[(^^@*Y>8L1=1_5&G_XN0CNM`V_43;3+=TB@90O93W+QNIH^7!>B1(\:\9"_0X%6I\$_V0EL9),/FV)JQ6SW;L!>W8+;$\=QHI4\-!V"M0['I*5&PSPA$\%^.?K:%-\;D^=P'.?[/JG",6MU$US^4A=!KJ"FBGIJ&N%3BRVAW_9*G.;"39:JNG7P<B<:6%9)BJH_FOVU8FP`&VT65UA_]<.M-2RWMW5_H`!?6IS(A!!!!!!!!%!!!"*Q!!!!1!!!!!!!!!$!!"1E2)5!!!!!!!!Q!!!')!!!"S?*RD9'$)%Z"A_M>1^Z?"3?!LE#(^FY&:U)`R.Q-$JZ`!93$.+#!*&*<^S]!OK!U7VD[CS]%!";JMD"S3()=&/=!S(#U;$0```_@Y?O1;8-52(TB4::9]BQ1!&'):!!!!!!!!"!!!!!=!!!QF!!!!"Q!!!#&@<GF@4'&T>%NO<X>O4X>O;7ZH4&:$<'&T=U.M>8.U:8)!!!..&Q#!!!!!!!%!#!!Q`````Q!"!!!!!!-R!!!!&A!11(!!#!!!!!)!!!*731!!'%"Q!!A!!%!T!!!+6WBJ<'5A4'^P=!!!(%"Q!!A!!%!9!!!/1W&T:3"4>(*V9X2V=G5!!"Z!=!!)!!"!%1!!%6"B=H.F)&.U982F)&&V:86F!"R!=!!)!!"!3A!!$U6W:7ZU)&.U=H6D>(6S:1";!0%!!!!!!!!!!BB$5UUN3'6M='6S)&6U;7RJ>(EO<(:M;7)41V..)%VP:(6M:3"5?8"F,G.U<!!F1"9!!QF/<X1A93"$5UU&3EN*5UU$1V..!!25?8"F!!!/1#%)37Z->GRJ9H!!!&Q!]?4Y)Q)!!!!#'%.443V):7RQ:8)A682J<'FU?3ZM>GRJ9B*$5UUA1G&T;7-A5G6G=SZD>'Q!+%"1!!=!!!!"!!)!!Q!%!!5!"A^198*U)&*F:G6S:7ZD:8-!'E"Q!!A!!%!K!!!-5G6H;8.U=G&U;7^O!!!;1(!!#!!!1#I!!!R*<H2F=GZB<%2B>'%!!":!=!!)!!"!+A!!#%.443"/97VF!!!71(!!#!!!1#I!!!F-98.U)&*F=X!!(%"Q!!A!!%!K!!!05G6N97FO;7ZH)&.U982F!":!=!!)!!"!+A!!#5&S:X6N:7ZU=Q!=1(!!#!!!1#I!!!^3:8.Q<WZT:3"4<X6S9W5!'%"Q!!A!!%!K!!!+5W^V=G.F)%.441!!&E"Q!!A!!%!K!!!)5W6M:7.U<X)!!"*!=!!)!!"!+A!!"56S=G^S!'E!]1!!!!!!!!!#%E.443V):7RQ:8)O<(:D<'&T=S&@9X.N;'6M='6S8U:S<WZU8V2V<GZF<(.@5G6G=SZD>'Q!,%"1!!I!#!!*!!I!#Q!-!!U!$A!0!"!!%1V'=G^O>#"5>7ZO:7RT!"*!=!!)!!"!+A!!"&*F=X!!!&Y!]1!!!!!!!!!#%E.443V):7RQ:8)O<(:D<'&T=S"@9X.N;'6M='6S8U*B9WN@6(6O<G6M=V^3:7:T,G.U<!!C1&!!"1!)!!E!%Q!-!"%-1G&D;S"5>7ZO:7RT!!!A1&!!!Q!(!")!&"*$5UUN3'6M='6S,GRW9WRB=X-!!!%!&1!!!!!!!!!;4&:$<'&T=V"S;8:B>'6%982B6'&C4X*E:8)!!!#.&Q#!!!!!!!)!"1!(!!!-!%!!!@````]!!!!"!!%!!!!;!!!!!!!!!!%!!!!#!!!!!Q!!!!1!!!!&!!!!"A!!!!=!!!!)!!!!#1!!!!I!!!!,!!!!$!!!!!U!!!!/!!!!$Q!!!"!!!!!2!!!!%A!!!"-!!!!5!!!!&1!!!"9!!!!8!!!!'!!!!"E!!!!!!!!!'UR71WRB=X.1=GFW982F2'&U962J<76T>'&N=!!!!"E8!)!!!!!!!1!&!!=!!!%!!/4Y.SY!!!!!!!!!*ER71WRB=X.1=GFW982F2'&U95RB=X2"=("M;76E6'FN:8.U97VQ!!!!'2=!A!!!!!!"!!5!"Q!!!1!!Z0AX,A!!!!!!!!!;4&:$<'&T=V"S;8:B>'6%982B6(FQ:52F=W-!!!.<&Q#!!!!!!!%!#!!Q`````Q!"!!!!!!-`!!!!&Q!11(!!#!!!!!)!!!*731!!'%"Q!!A!!%!T!!!+6WBJ<'5A4'^P=!!!(%"Q!!A!!%!9!!!/1W&T:3"4>(*V9X2V=G5!!"Z!=!!)!!"!%1!!%6"B=H.F)&.U982F)&&V:86F!"R!=!!)!!"!3A!!$U6W:7ZU)&.U=H6D>(6S:1";!0%!!!!!!!!!!BB$5UUN3'6M='6S)&6U;7RJ>(EO<(:M;7)41V..)%VP:(6M:3"5?8"F,G.U<!!F1"9!!QF/<X1A93"$5UU&3EN*5UU$1V..!!25?8"F!!!/1#%)37Z->GRJ9H!!!&Q!]?4Y)Q)!!!!#'%.443V):7RQ:8)A682J<'FU?3ZM>GRJ9B*$5UUA1G&T;7-A5G6G=SZD>'Q!+%"1!!=!!!!"!!)!!Q!%!!5!"A^198*U)&*F:G6S:7ZD:8-!'E"Q!!A!!%!K!!!-5G6H;8.U=G&U;7^O!!!;1(!!#!!!1#I!!!R*<H2F=GZB<%2B>'%!!":!=!!)!!"!+A!!#%.443"/97VF!!!71(!!#!!!1#I!!!F-98.U)&*F=X!!(%"Q!!A!!%!K!!!05G6N97FO;7ZH)&.U982F!":!=!!)!!"!+A!!#5&S:X6N:7ZU=Q!=1(!!#!!!1#I!!!^3:8.Q<WZT:3"4<X6S9W5!'%"Q!!A!!%!K!!!+5W^V=G.F)%.441!!&E"Q!!A!!%!K!!!)5W6M:7.U<X)!!"*!=!!)!!"!+A!!"56S=G^S!'E!]1!!!!!!!!!#%E.443V):7RQ:8)O<(:D<'&T=S&@9X.N;'6M='6S8U:S<WZU8V2V<GZF<(.@5G6G=SZD>'Q!,%"1!!I!#!!*!!I!#Q!-!!U!$A!0!"!!%1V'=G^O>#"5>7ZO:7RT!"*!=!!)!!"!+A!!"&*F=X!!!&Y!]1!!!!!!!!!#%E.443V):7RQ:8)O<(:D<'&T=S"@9X.N;'6M='6S8U*B9WN@6(6O<G6M=V^3:7:T,G.U<!!C1&!!"1!)!!E!%Q!-!"%-1G&D;S"5>7ZO:7RT!!!-1#%(1WBB<G>F:!!C1&!!"!!(!")!&!!6%E.443V):7RQ:8)O<(:D<'&T=Q!!!1!7!!!!!!!!!"Z-6E.M98.T5(*J>G&U:52B>'&%:GRU2'&U96.J?G5!!!!:&Q#!!!!!!!%!"1!$!!!"!!!!!!"5!!!!!!!!!"J-6E.M98.T5(*J>G&U:52B>'&%:GRU2'&U91!!!ZM8!)!!!!!!&Q!11(!!#!!!!!)!!!*731!!'%"Q!!A!!%!T!!!+6WBJ<'5A4'^P=!!!(%"Q!!A!!%!9!!!/1W&T:3"4>(*V9X2V=G5!!"Z!=!!)!!"!%1!!%6"B=H.F)&.U982F)&&V:86F!"R!=!!)!!"!3A!!$U6W:7ZU)&.U=H6D>(6S:1";!0%!!!!!!!!!!BB$5UUN3'6M='6S)&6U;7RJ>(EO<(:M;7)41V..)%VP:(6M:3"5?8"F,G.U<!!F1"9!!QF/<X1A93"$5UU&3EN*5UU$1V..!!25?8"F!!!/1#%)37Z->GRJ9H!!!&Q!]?4Y)Q)!!!!#'%.443V):7RQ:8)A682J<'FU?3ZM>GRJ9B*$5UUA1G&T;7-A5G6G=SZD>'Q!+%"1!!=!!!!"!!)!!Q!%!!5!"A^198*U)&*F:G6S:7ZD:8-!'E"Q!!A!!%!K!!!-5G6H;8.U=G&U;7^O!!!;1(!!#!!!1#I!!!R*<H2F=GZB<%2B>'%!!":!=!!)!!"!+A!!#%.443"/97VF!!!71(!!#!!!1#I!!!F-98.U)&*F=X!!(%"Q!!A!!%!K!!!05G6N97FO;7ZH)&.U982F!":!=!!)!!"!+A!!#5&S:X6N:7ZU=Q!=1(!!#!!!1#I!!!^3:8.Q<WZT:3"4<X6S9W5!'%"Q!!A!!%!K!!!+5W^V=G.F)%.441!!&E"Q!!A!!%!K!!!)5W6M:7.U<X)!!"*!=!!)!!"!+A!!"56S=G^S!'E!]1!!!!!!!!!#%E.443V):7RQ:8)O<(:D<'&T=S&@9X.N;'6M='6S8U:S<WZU8V2V<GZF<(.@5G6G=SZD>'Q!,%"1!!I!#!!*!!I!#Q!-!!U!$A!0!"!!%1V'=G^O>#"5>7ZO:7RT!"*!=!!)!!"!+A!!"&*F=X!!!&Y!]1!!!!!!!!!#%E.443V):7RQ:8)O<(:D<'&T=S"@9X.N;'6M='6S8U*B9WN@6(6O<G6M=V^3:7:T,G.U<!!C1&!!"1!)!!E!%Q!-!"%-1G&D;S"5>7ZO:7RT!!!-1#%(1WBB<G>F:!!C1&!!"!!(!")!&!!6%E.443V):7RQ:8)O<(:D<'&T=Q!!!1!7!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1!)!!A!!!!"!!!!N)!!!!I!!!!!A!!"!!!!!!U!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!T=!!!A`?*SV6'N4UU!50:!'7CC5FF>"K#E0193+IC,YCF1917!KI-[I)]:U7T+G33@:-0,.(]M0E'^]^'Z;UZ;8$'CXG>G^>__^:`?=OQ"5>+FFB!%UU``^+J#ML.5ZI/X$HG%S:>WWS]"1V:Y%/L/;SZ2N\HA[^RQ'J+K_/"$0;9\PV$B4XHL-9U(E'B"<XG=7LQP^C#.5@MX*\0<'T'NGFJGDP//';@#$D,FP'N_[S;&MW(G0M/Q=F&F'ZS<'V4Z)E5W<+ZJ#@HHNT?LWBE1TB-1?!KGGQ[P7OEB![$`D[0"YN0H#/AF2:UFT$6X:9A88,T/JZN"+55VU0R*#E.(3W<A.`_5-SZ:8!A;L.T=&2,>9U8#ZIX($NBI^KR:HDK7:LT3O!8UV4VA5X>2+L-%;7>>=4N$>=M!-77.<L+1:FG%6+^QV2,RUCF[*C(.02,BFWR*EWZ[DMU!ZZ'OLG-3J'B&N-Z0JX(;!2-UK,TM/G9T;03:K^UDXJZO;[[:X><?UZZNW6RT<YLM\HG5RU^U.S*IGMNI1I;]>583A%T&U)9Z%BR_A6!0K3Y@]?]#8#UML>;78.0X\[=ID6&HW+`>1X525\!L+`5PRR;C^"(E&ZD",:S[C;LIVO[>:2:981DQ]HM_==YL//J0)0EP:1_B$.XL20ZQV0:>EJ.A&J8,GMG0MCR\/#V8*./BQ?=,S#Q/UE+J,T/%')GILJ)*:2&D^+>F<P'*A>I%?FRRN(59+.S5P8S"7AM@GTVQ].-%]74?0V]XJ[=$TK\::"#V%..*9PS)031A?UBD"+-9QDFO9#*#2BP$JOM*.11DX^BED>UVB^E!)MZ9PY:-_C3H=Q94%@_3J<I\I5$#.^._?V,%4?MS=I=@*3`:A[M+/G@:BXM5M\FV#G]3I,$C7#2G2]B7#\B5[FU,S@%"[&?-B#@80'+C/UZ;;ZZ%`+C*PQHQ6UO8;J1W[D['*0N$R'Y[+1:RT24Z<*RK?E*T(#F\1ZL!0+%F*BT#$_XC-"3R3S#).U&?@KJP7%@J[@?]4WLG!@DQF7Y*A^"#A8DTT6X%#&#.A(13QH?T>V(UN6%_G4"*FJ(N'XW_'2<;^!!!!!)-!!1!#!!-!"!!!!%A!%1!!!!!!%1$R!/5!!!"<!"%!!!!!!"%!]1$F!!!!<A!2!!!!!!!2!0%!Z1!!!)'!!)!!A!!!%1$R!/5347FD=G^T<W:U)&FB3'6J)&6*%EVJ9X*P=W^G>#":95BF;3"632*.;7.S<X.P:H1A77&):7EA65E"-!"35V*$$1I!!UR71U.-1F:8!!!N;!!!"$=!!!!A!!!N3!!!!!!!!!!!!!!!)!!!!$1!!!1I!!!!(%R*1EY!!!!!!!!"9%R75V)!!!!!!!!">&*55U=!!!!!!!!"C%.$5V1!!!!!!!!"H%R*>GE!!!!!!!!"M%.04F!!!!!!!!!"R&2./$!!!!!!!!!"W%2'2&-!!!!!!!!"\%R*:(-!!!!!!!!#!&:*1U1!!!!!!!!#&(:F=H-!!!!%!!!#+&.$5V)!!!!!!!!#D%>$5&)!!!!!!!!#I%F$4UY!!!!!!!!#N'FD<$1!!!!!!!!#S'FD<$A!!!!!!!!#X%R*:H!!!!!!!!!#]%:13')!!!!!!!!$"%:15U5!!!!!!!!$'&:12&!!!!!!!!!$,%R*9G1!!!!!!!!$1%*%3')!!!!!!!!$6%*%5U5!!!!!!!!$;&:*6&-!!!!!!!!$@%253&!!!!!!!!!$E%V6351!!!!!!!!$J%B*5V1!!!!!!!!$O&:$6&!!!!!!!!!$T%:515)!!!!!!!!$Y!!!!!$`````!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!(!!!!!!!!!!!`````Q!!!!!!!!$!!!!!!!!!!!$`````!!!!!!!!!.1!!!!!!!!!!0````]!!!!!!!!!X!!!!!!!!!!!`````Q!!!!!!!!,U!!!!!!!!!!$`````!!!!!!!!!PQ!!!!!!!!!!0````]!!!!!!!!$.!!!!!!!!!!!`````Q!!!!!!!!/%!!!!!!!!!!$`````!!!!!!!!!Z1!!!!!!!!!"0````]!!!!!!!!'X!!!!!!!!!!(`````Q!!!!!!!!<M!!!!!!!!!!D`````!!!!!!!!"PQ!!!!!!!!!#@````]!!!!!!!!($!!!!!!!!!!+`````Q!!!!!!!!==!!!!!!!!!!$`````!!!!!!!!"SQ!!!!!!!!!!0````]!!!!!!!!(2!!!!!!!!!!!`````Q!!!!!!!!>9!!!!!!!!!!$`````!!!!!!!!"^Q!!!!!!!!!!0````]!!!!!!!!*Y!!!!!!!!!!!`````Q!!!!!!!!XE!!!!!!!!!!$`````!!!!!!!!%(1!!!!!!!!!!0````]!!!!!!!!=D!!!!!!!!!!!`````Q!!!!!!!"S5!!!!!!!!!!$`````!!!!!!!!(*Q!!!!!!!!!!0````]!!!!!!!!=L!!!!!!!!!!!`````Q!!!!!!!"U5!!!!!!!!!!$`````!!!!!!!!(2Q!!!!!!!!!!0````]!!!!!!!!J3!!!!!!!!!!!`````Q!!!!!!!#F1!!!!!!!!!!$`````!!!!!!!!+6A!!!!!!!!!!0````]!!!!!!!!JB!!!!!!!!!#!`````Q!!!!!!!#T!!!!!!!Z$5UUN3'6M='6S,G.U<!!!!!! -!!!!!2*$5UUN3'6M='6S,GRW9WRB=X-!5&2)-!!!!!!!!!!!!!!!$A!"!!!!!!!!!!!!!!%!%E"1!!!+1V..,5BF<("F=A!!!1!!!!!!!!!!!!!"$ERB9F:*26=A4W*K:7.U!&"53$!!!!!!!!!!!!!A!)!!!!!!!!!!!!!!!!!!!1!!!!!!!1!!!!!(!"B!=!!)!!"!-Q!!#F>I;7RF)%RP<X!!!"R!=!!)!!"!'!!!$E.B=W5A5X2S>7.U>8*F!!!=1(!!#!!!1%I!!!^&>G6O>#"4>(*V9X2V=G5!(E"Q!!A!!%!2!!!25'&S=W5A5X2B>'5A586F>75!%%"Q!!A!!!!#!!!#6EE!!#"!5!!&!!!!!1!#!!-!"!^198*U)&*F:G6S:7ZD:8-!6!$RYGEK3A!!!!)31V..,5BF<("F=CZM>G.M98.T$E.443V):7RQ:8)O9X2M!#J!5!!"!!5>1WRV=X2F=C"P:C"D<'&T=S"Q=GFW982F)'2B>'%!!1!'!!!!!@````]!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"$ERB9F:*26=A4W*K:7.U!&"53$!!!!!!!!!!!!!A!)!!!!!!!!!!!!!!!!!!!1!!!!!!!A!!!!!0!"B!=!!)!!"!-Q!!#F>I;7RF)%RP<X!!!"R!=!!)!!"!'!!!$E.B=W5A5X2S>7.U>8*F!!!=1(!!#!!!1%I!!!^&>G6O>#"4>(*V9X2V=G5!(E"Q!!A!!%!2!!!25'&S=W5A5X2B>'5A586F>75!%%"Q!!A!!!!#!!!#6EE!!#"!5!!&!!!!!1!#!!-!"!^198*U)&*F:G6S:7ZD:8-!'E"Q!!A!!%!K!!!-37ZU:8*O97R%982B!!!71(!!#!!!1#I!!!B$5UUA4G&N:1!!&E"Q!!A!!%!K!!!*4'&T>#"3:8.Q!"R!=!!)!!"!+A!!$V*F<7&J<GFO:S"4>'&U:1!71(!!#!!!1#I!!!F"=G>V<76O>(-!(%"Q!!A!!%!K!!!05G6T='^O=W5A5W^V=G.F!"B!=!!)!!"!+A!!#F.P>8*D:3"$5UU!!"R!5!!(!!9!"Q!)!!E!#A!,!!Q'6(6O<G6M!!"7!0(C;G=4!!!!!B*$5UUN3'6M='6S,GRW9WRB=X-/1V..,5BF<("F=CZD>'Q!,%"1!!)!"1!.(5.M>8.U:8)A<W9A9WRB=X-A=(*J>G&U:3"E982B!!%!$A!!!!=!!!!!!!!!!1!!!!)!!!!$!!!!"!!!!!8`````!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1Z-97*73568)%^C;G6D>!"16%AQ!!!!!!!!!!!!)!#!!!!!!!!!!!!!!!!!!!%!!!!!!!-!!!!!%1!91(!!#!!!1$-!!!J8;'FM:3"-<W^Q!!!=1(!!#!!!1"A!!!Z$98.F)&.U=H6D>(6S:1!!(%"Q!!A!!%"+!!!028:F<H1A5X2S>7.U>8*F!"Z!=!!)!!"!%1!!%6"B=H.F)&.U982F)&&V:86F!""!=!!)!!!!!A!!!F:*!!!A1&!!"1!!!!%!!A!$!!105'&S>#"3:7:F=G6O9W6T!"J!=!!)!!"!+A!!$%FO>'6S<G&M2'&U91!!&E"Q!!A!!%!K!!!)1V..)%ZB<75!!":!=!!)!!"!+A!!#5RB=X1A5G6T=!!=1(!!#!!!1#I!!!^3:7VB;7ZJ<G=A5X2B>'5!&E"Q!!A!!%!K!!!*18*H>7VF<H2T!"R!=!!)!!"!+A!!$V*F=X"P<H.F)&.P>8*D:1!91(!!#!!!1#I!!!J4<X6S9W5A1V..!!!C1&!!"Q!'!!=!#!!*!!I!#Q!-$5:S<WZU)&2V<GZF<(-!%E"Q!!A!!%!K!!!%5G6T=!!!'E"1!!-!"A!/!!E-1G&D;S"5>7ZO:7RT!!"9!0(C;GE%!!!!!B*$5UUN3'6M='6S,GRW9WRB=X-/1V..,5BF<("F=CZD>'Q!,E"1!!-!"1!.!!]>1WRV=X2F=C"P:C"D<'&T=S"Q=GFW982F)'2B>'%!!1!1!!!!$Q!!!!!!!!!"!!!!!A!!!!-!!!!%!!!!"1!!!!9!!!!(!!!!#!!!!!E!!!!+!!!!#Q!!!!Q!!!!.`````Q!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!%/4'&C6EF&6S"09GJF9X1!5&2)-!!!!!!!!!!!!#!!A!!!!!!!!!!!!!!!!!!"!!!!!!!%!!!!!")!'%"Q!!A!!%!T!!!+6WBJ<'5A4'^P=!!!(%"Q!!A!!%!9!!!/1W&T:3"4>(*V9X2V=G5!!"R!=!!)!!"!3A!!$U6W:7ZU)&.U=H6D>(6S:1!?1(!!#!!!1"%!!"&198*T:3"4>'&U:3"2>76V:1!11(!!#!!!!!)!!!*731!!)%"1!!5!!!!"!!)!!Q!%$V"B=H1A5G6G:8*F<G.F=Q!;1(!!#!!!1#I!!!R*<H2F=GZB<%2B>'%!!":!=!!)!!"!+A!!#%.443"/97VF!!!71(!!#!!!1#I!!!F-98.U)&*F=X!!(%"Q!!A!!%!K!!!05G6N97FO;7ZH)&.U982F!":!=!!)!!"!+A!!#5&S:X6N:7ZU=Q!=1(!!#!!!1#I!!!^3:8.Q<WZT:3"4<X6S9W5!'%"Q!!A!!%!K!!!+5W^V=G.F)%.441!!&E"Q!!A!!%#.!!!)5W6M:7.U<X)!!#2!5!!)!!9!"Q!)!!E!#A!,!!Q!$1V'=G^O>#"5>7ZO:7RT!"*!=!!)!!"!+A!!"&*F=X!!!"J!5!!$!!9!$Q!*$%*B9WMA6(6O<G6M=Q!!7!$RYGP@#!!!!!)31V..,5BF<("F=CZM>G.M98.T$E.443V):7RQ:8)O9X2M!#Z!5!!$!!5!$A!1(5.M>8.U:8)A<W9A9WRB=X-A=(*J>G&U:3"E982B!!%!%1!!!"-!!!!!!!!!!1!!!!)!!!!$!!!!"!!!!!5!!!!'!!!!"Q!!!!A!!!!*!!!!#A!!!!M!!!!-!!!!$@````]!!!!/!!!!$Q!!!"!!!!!2!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!%/4'&C6EF&6S"09GJF9X1!5&2)-!!!!!!!!!!!!#!!A!!!!!!!!!!!!!!!!!!"!!!!!!!&!!!!!")!'%"Q!!A!!%!T!!!+6WBJ<'5A4'^P=!!!(%"Q!!A!!%!9!!!/1W&T:3"4>(*V9X2V=G5!!"R!=!!)!!"!3A!!$U6W:7ZU)&.U=H6D>(6S:1!?1(!!#!!!1"%!!"&198*T:3"4>'&U:3"2>76V:1!11(!!#!!!!!)!!!*731!!)%"1!!5!!!!"!!)!!Q!%$V"B=H1A5G6G:8*F<G.F=Q!;1(!!#!!!1#I!!!R*<H2F=GZB<%2B>'%!!":!=!!)!!"!+A!!#%.443"/97VF!!!71(!!#!!!1#I!!!F-98.U)&*F=X!!(%"Q!!A!!%!K!!!05G6N97FO;7ZH)&.U982F!":!=!!)!!"!+A!!#5&S:X6N:7ZU=Q!=1(!!#!!!1#I!!!^3:8.Q<WZT:3"4<X6S9W5!'%"Q!!A!!%!K!!!+5W^V=G.F)%.441!!&E"Q!!A!!%"G!!!)5W6M:7.U<X)!!#2!5!!)!!9!"Q!)!!E!#A!,!!Q!$1V'=G^O>#"5>7ZO:7RT!"*!=!!)!!"!+A!!"&*F=X!!!"J!5!!$!!9!$Q!*$%*B9WMA6(6O<G6M=Q!!7!$RYGP@(A!!!!)31V..,5BF<("F=CZM>G.M98.T$E.443V):7RQ:8)O9X2M!#Z!5!!$!!5!$A!1(5.M>8.U:8)A<W9A9WRB=X-A=(*J>G&U:3"E982B!!%!%1!!!"-!!!!!!!!!!1!!!!)!!!!$!!!!"!!!!!5!!!!'!!!!"Q!!!!A!!!!*!!!!#A!!!!M!!!!-!!!!$@````]!!!!0!!!!%!!!!"%!!!!3!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!%/4'&C6EF&6S"09GJF9X1!5&2)-!!!!!!!!!!!!#!!A!!!!!!!!!!!!!!!!!!"!!!!!!!'!!!!!")!'%"Q!!A!!%!T!!!+6WBJ<'5A4'^P=!!!(%"Q!!A!!%!9!!!/1W&T:3"4>(*V9X2V=G5!!"R!=!!)!!"!3A!!$U6W:7ZU)&.U=H6D>(6S:1!?1(!!#!!!1"%!!"&198*T:3"4>'&U:3"2>76V:1!11(!!#!!!!!)!!!*731!!)%"1!!5!!!!"!!)!!Q!%$V"B=H1A5G6G:8*F<G.F=Q!;1(!!#!!!1#I!!!R*<H2F=GZB<%2B>'%!!":!=!!)!!"!+A!!#%.443"/97VF!!!71(!!#!!!1#I!!!F-98.U)&*F=X!!(%"Q!!A!!%!K!!!05G6N97FO;7ZH)&.U982F!":!=!!)!!"!+A!!#5&S:X6N:7ZU=Q!=1(!!#!!!1#I!!!^3:8.Q<WZT:3"4<X6S9W5!'%"Q!!A!!%!K!!!+5W^V=G.F)%.441!!&E"Q!!A!!%!K!!!)5W6M:7.U<X)!!#2!5!!)!!9!"Q!)!!E!#A!,!!Q!$1V'=G^O>#"5>7ZO:7RT!"*!=!!)!!"!+A!!"&*F=X!!!"J!5!!$!!9!$Q!*$%*B9WMA6(6O<G6M=Q!!7!$RYGP@<1!!!!)31V..,5BF<("F=CZM>G.M98.T$E.443V):7RQ:8)O9X2M!#Z!5!!$!!5!$A!1(5.M>8.U:8)A<W9A9WRB=X-A=(*J>G&U:3"E982B!!%!%1!!!"-!!!!!!!!!!1!!!!)!!!!$!!!!"!!!!!5!!!!'!!!!"Q!!!!A!!!!*!!!!#A!!!!M!!!!-!!!!$1!!!!Y!!!!0!!!!%!!!!"%!!!!3!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!%/4'&C6EF&6S"09GJF9X1!5&2)-!!!!!!!!!!!!#!!A!!!!!!!!!!!!!!!!!!"!!!!!!!(!!!!!"-!'%"Q!!A!!%!T!!!+6WBJ<'5A4'^P=!!!(%"Q!!A!!%!9!!!/1W&T:3"4>(*V9X2V=G5!!"R!=!!)!!"!3A!!$U6W:7ZU)&.U=H6D>(6S:1!?1(!!#!!!1"%!!"&198*T:3"4>'&U:3"2>76V:1!11(!!#!!!!!)!!!*731!!)%"1!!5!!!!"!!)!!Q!%$V"B=H1A5G6G:8*F<G.F=Q!;1(!!#!!!1#I!!!R*<H2F=GZB<%2B>'%!!":!=!!)!!"!+A!!#%.443"/97VF!!!71(!!#!!!1#I!!!F-98.U)&*F=X!!(%"Q!!A!!%!K!!!05G6N97FO;7ZH)&.U982F!":!=!!)!!"!+A!!#5&S:X6N:7ZU=Q!=1(!!#!!!1#I!!!^3:8.Q<WZT:3"4<X6S9W5!'%"Q!!A!!%!K!!!+5W^V=G.F)%.441!!&E"Q!!A!!%!K!!!)5W6M:7.U<X)!!"*!=!!)!!"!+A!!"56S=G^S!'=!]1!!!!!!!!!#%E.443V):7RQ:8)O<(:D<'&T=S&@9X.N;'6M='6S8U:S<WZU8V2V<GZF<(.@5G6G=SZD>'Q!+E"1!!E!"A!(!!A!#1!+!!M!$!!.!!Y.2H*P<H1A6(6O<G6M=Q!31(!!#!!!1#I!!!23:8.Q!!"=!0%!!!!!!!!!!B*$5UUN3'6M='6S,GRW9WRB=X-A8W.T<7BF<("F=F^#97.L8V2V<GZF<(.@5G6G=SZD>'Q!)%"1!!1!"A!1!!E!$AR#97.L)&2V<GZF<(-!!&A!]?,Y@PQ!!!!#%E.443V):7RQ:8)O<(:D<'&T=QZ$5UUN3'6M='6S,G.U<!!O1&!!!Q!&!!]!%2V$<(6T>'6S)'^G)'.M98.T)("S;8:B>'5A:'&U91!"!")!!!!6!!!!!!!!!!%!!!!#!!!!!Q!!!!1!!!!&!!!!"A!!!!=!!!!)!!!!#1!!!!I!!!!,!!!!$!!!!!U!!!!/`````Q!!!!]!!!!1!!!!%1!!!",`````!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1Z-97*73568)%^C;G6D>!"16%AQ!!!!!!!!!!!!)!#!!!!!!!!!!!!!!!!!!!%!!!!!!!A!!!!!&!!91(!!#!!!1$-!!!J8;'FM:3"-<W^Q!!!=1(!!#!!!1"A!!!Z$98.F)&.U=H6D>(6S:1!!(%"Q!!A!!%"+!!!028:F<H1A5X2S>7.U>8*F!"Z!=!!)!!"!%1!!%6"B=H.F)&.U982F)&&V:86F!""!=!!)!!!!!A!!!F:*!!!A1&!!"1!!!!%!!A!$!!105'&S>#"3:7:F=G6O9W6T!"J!=!!)!!"!+A!!$&*F:WFT>(*B>'FP<A!!'E"Q!!A!!%!K!!!-37ZU:8*O97R%982B!!!71(!!#!!!1#I!!!B$5UUA4G&N:1!!&E"Q!!A!!%!K!!!*4'&T>#"3:8.Q!"R!=!!)!!"!+A!!$V*F<7&J<GFO:S"4>'&U:1!71(!!#!!!1#I!!!F"=G>V<76O>(-!(%"Q!!A!!%!K!!!05G6T='^O=W5A5W^V=G.F!"B!=!!)!!"!+A!!#F.P>8*D:3"$5UU!!":!=!!)!!"!+A!!#&.F<'6D>'^S!!!31(!!#!!!1#I!!!6&=H*P=A"J!0%!!!!!!!!!!B*$5UUN3'6M='6S,GRW9WRB=X-B8W.T<7BF<("F=F^'=G^O>&^5>7ZO:7RT8V*F:H-O9X2M!#R!5!!+!!9!"Q!)!!E!#A!,!!Q!$1!/!!].2H*P<H1A6(6O<G6M=Q!31(!!#!!!1#I!!!23:8.Q!!"=!0%!!!!!!!!!!B*$5UUN3'6M='6S,GRW9WRB=X-A8W.T<7BF<("F=F^#97.L8V2V<GZF<(.@5G6G=SZD>'Q!)%"1!!1!"Q!2!!I!$QR#97.L)&2V<GZF<(-!!&A!]?,\@`Y!!!!#%E.443V):7RQ:8)O<(:D<'&T=QZ$5UUN3'6M='6S,G.U<!!O1&!!!Q!&!"!!%BV$<(6T>'6S)'^G)'.M98.T)("S;8:B>'5A:'&U91!"!"-!!!!7!!!!!!!!!!%!!!!#!!!!!Q!!!!1!!!!&!!!!"A!!!!=!!!!)!!!!#1!!!!I!!!!,!!!!$!!!!!U!!!!/!!!!$`````]!!!!1!!!!%1!!!")!!!!4!!!!&!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"$ERB9F:*26=A4W*K:7.U!&"53$!!!!!!!!!!!!!8!)!!!!!!!!!!!!!!!!!!!1!!!!!!#1!!!!!5!"B!=!!)!!"!-Q!!#F>I;7RF)%RP<X!!!"R!=!!)!!"!'!!!$E.B=W5A5X2S>7.U>8*F!!!=1(!!#!!!1%I!!!^&>G6O>#"4>(*V9X2V=G5!(E"Q!!A!!%!2!!!25'&S=W5A5X2B>'5A586F>75!%%"Q!!A!!!!#!!!#6EE!!#"!5!!&!!!!!1!#!!-!"!^198*U)&*F:G6S:7ZD:8-!'E"Q!!A!!%!K!!!-5G6H;8.U=G&U;7^O!!!;1(!!#!!!1#I!!!R*<H2F=GZB<%2B>'%!!":!=!!)!!"!+A!!#%.443"/97VF!!!71(!!#!!!1#I!!!F-98.U)&*F=X!!(%"Q!!A!!%!K!!!05G6N97FO;7ZH)&.U982F!":!=!!)!!"!+A!!#5&S:X6N:7ZU=Q!=1(!!#!!!1#I!!!^3:8.Q<WZT:3"4<X6S9W5!'%"Q!!A!!%!K!!!+5W^V=G.F)%.441!!&E"Q!!A!!%!K!!!)5W6M:7.U<X)!!"*!=!!)!!"!+A!!"56S=G^S!'E!]1!!!!!!!!!#%E.443V):7RQ:8)O<(:D<'&T=S&@9X.N;'6M='6S8U:S<WZU8V2V<GZF<(.@5G6G=SZD>'Q!,%"1!!I!"A!(!!A!#1!+!!M!$!!.!!Y!$QV'=G^O>#"5>7ZO:7RT!"*!=!!)!!"!+A!!"&*F=X!!!&Y!]1!!!!!!!!!#%E.443V):7RQ:8)O<(:D<'&T=S"@9X.N;'6M='6S8U*B9WN@6(6O<G6M=V^3:7:T,G.U<!!C1&!!"1!'!!=!%1!+!!]-1G&D;S"5>7ZO:7RT!!"9!0(C_Y"$!!!!!B*$5UUN3'6M='6S,GRW9WRB=X-/1V..,5BF<("F=CZD>'Q!,E"1!!-!"1!1!")>1WRV=X2F=C"P:C"D<'&T=S"Q=GFW982F)'2B>'%!!1!4!!!!&Q!!!!!!!!!"!!!!!A!!!!-!!!!%!!!!"1!!!!9!!!!(!!!!#!!!!!E!!!!+!!!!#Q!!!!Q!!!!.!!!!$A!!!!]!!!!1!!!!%1!!!")!!!!4!!!!&!!!!"8`````!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!%/4'&C6EF&6S"09GJF9X1!5&2)-!!!!!!!!!!!!"=!A!!!!!!!!!!!!!!!!!!"!!!!!!!+!!!!!"1!%%"Q!!A!!!!#!!!#6EE!!"B!=!!)!!"!-Q!!#F>I;7RF)%RP<X!!!"R!=!!)!!"!'!!!$E.B=W5A5X2S>7.U>8*F!!!?1(!!#!!!1"%!!"&198*T:3"4>'&U:3"2>76V:1!=1(!!#!!!1%I!!!^&>G6O>#"4>(*V9X2V=G5!0Q$R!!!!!!!!!!%31V..)%*B=WFD)&*F:H-O9X2M!#2!5!!&!!!!!1!#!!-!"!^198*U)&*F:G6S:7ZD:8-!'E"Q!!A!!%!K!!!-5G6H;8.U=G&U;7^O!!!;1(!!#!!!1#I!!!R*<H2F=GZB<%2B>'%!!":!=!!)!!"!+A!!#%.443"/97VF!!!71(!!#!!!1#I!!!F-98.U)&*F=X!!(%"Q!!A!!%!K!!!05G6N97FO;7ZH)&.U982F!":!=!!)!!"!+A!!#5&S:X6N:7ZU=Q!=1(!!#!!!1#I!!!^3:8.Q<WZT:3"4<X6S9W5!'%"Q!!A!!%!K!!!+5W^V=G.F)%.441!!&E"Q!!A!!%!K!!!)5W6M:7.U<X)!!"*!=!!)!!"!+A!!"56S=G^S!'E!]1!!!!!!!!!#%E.443V):7RQ:8)O<(:D<'&T=S&@9X.N;'6M='6S8U:S<WZU8V2V<GZF<(.@5G6G=SZD>'Q!,%"1!!I!"A!(!!A!#1!+!!M!$!!.!!Y!$QV'=G^O>#"5>7ZO:7RT!"*!=!!)!!"!+A!!"&*F=X!!!&Y!]1!!!!!!!!!#%E.443V):7RQ:8)O<(:D<'&T=S"@9X.N;'6M='6S8U*B9WN@6(6O<G6M=V^3:7:T,G.U<!!C1&!!"1!'!!=!%1!+!!]-1G&D;S"5>7ZO:7RT!!"9!0(D%J'W!!!!!B*$5UUN3'6M='6S,GRW9WRB=X-/1V..,5BF<("F=CZD>'Q!,E"1!!-!"1!1!")>1WRV=X2F=C"P:C"D<'&T=S"Q=GFW982F)'2B>'%!!1!4!!!!&Q!!!!$```````````````]!!!!%`````Q!!!!9!!!!(!!!!#!!!!!E!!!!+!!!!#Q!!!!Q!!!!.!!!!$A!!!!]!!!!1!!!!%1!!!")!!!!4!!!!&!!!!"5!!!!7!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"$ERB9F:*26=A4W*K:7.U!&"53$!!!!!!!!!!!!!8!)!!!!!!!!!!!!!!!!!!!1!!!!!!#Q!!!!!6!""!=!!)!!!!!A!!!F:*!!!91(!!#!!!1$-!!!J8;'FM:3"-<W^Q!!!=1(!!#!!!1"A!!!Z$98.F)&.U=H6D>(6S:1!!(E"Q!!A!!%!2!!!25'&S=W5A5X2B>'5A586F>75!(%"Q!!A!!%"+!!!028:F<H1A5X2S>7.U>8*F!&I!]1!!!!!!!!!#'%.443V):7RQ:8)A682J<'FU?3ZM>GRJ9B.$5UUA47^E>7RF)&2Z='5O9X2M!#6!&A!$#5ZP>#"B)%.4416+3UF441.$5UU!"&2Z='5!!&I!]?.FSU]!!!!#'%.443V):7RQ:8)A682J<'FU?3ZM>GRJ9B*$5UUA1G&T;7-A5G6G=SZD>'Q!*E"1!!9!!!!"!!)!!Q!%!!505'&S>#"3:7:F=G6O9W6T!"J!=!!)!!"!+A!!$&*F:WFT>(*B>'FP<A!!'E"Q!!A!!%!K!!!-37ZU:8*O97R%982B!!!71(!!#!!!1#I!!!B$5UUA4G&N:1!!&E"Q!!A!!%!K!!!*4'&T>#"3:8.Q!"R!=!!)!!"!+A!!$V*F<7&J<GFO:S"4>'&U:1!71(!!#!!!1#I!!!F"=G>V<76O>(-!(%"Q!!A!!%!K!!!05G6T='^O=W5A5W^V=G.F!"B!=!!)!!"!+A!!#F.P>8*D:3"$5UU!!":!=!!)!!"!+A!!#&.F<'6D>'^S!!!31(!!#!!!1#I!!!6&=H*P=A"J!0%!!!!!!!!!!B*$5UUN3'6M='6S,GRW9WRB=X-B8W.T<7BF<("F=F^'=G^O>&^5>7ZO:7RT8V*F:H-O9X2M!#R!5!!+!!=!#!!*!!I!#Q!-!!U!$A!0!"!.2H*P<H1A6(6O<G6M=Q!31(!!#!!!1#I!!!23:8.Q!!"?!0%!!!!!!!!!!B*$5UUN3'6M='6S,GRW9WRB=X-A8W.T<7BF<("F=F^#97.L8V2V<GZF<(.@5G6G=SZD>'Q!)E"1!!5!"Q!)!")!#Q!1$%*B9WMA6(6O<G6M=Q!!7!$RYW8,BQ!!!!)31V..,5BF<("F=CZM>G.M98.T$E.443V):7RQ:8)O9X2M!#Z!5!!$!!9!%1!4(5.M>8.U:8)A<W9A9WRB=X-A=(*J>G&U:3"E982B!!%!&!!!!"A!!!!!!!!!!1!!!!)!!!!$!!!!"!!!!!8`````!!!!"A!!!!=!!!!)!!!!#1!!!!I!!!!,!!!!$!!!!!U!!!!/!!!!$Q!!!"!!!!!2!!!!%A!!!"-!!!!5!!!!&1!!!"9!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1Z-97*73568)%^C;G6D>!"16%AQ!!!!!!!!!!!!&Q#!!!!!!!!!!!!!!!!!!!%!!!!!!!Q!!!!!&A!11(!!#!!!!!)!!!*731!!'%"Q!!A!!%!T!!!+6WBJ<'5A4'^P=!!!(%"Q!!A!!%!9!!!/1W&T:3"4>(*V9X2V=G5!!"Z!=!!)!!"!%1!!%6"B=H.F)&.U982F)&&V:86F!"R!=!!)!!"!3A!!$U6W:7ZU)&.U=H6D>(6S:1";!0%!!!!!!!!!!BB$5UUN3'6M='6S)&6U;7RJ>(EO<(:M;7)41V..)%VP:(6M:3"5?8"F,G.U<!!F1"9!!QF/<X1A93"$5UU&3EN*5UU$1V..!!25?8"F!!!/1#%)37Z->GRJ9H!!!&Q!]?4Y)Q)!!!!#'%.443V):7RQ:8)A682J<'FU?3ZM>GRJ9B*$5UUA1G&T;7-A5G6G=SZD>'Q!+%"1!!=!!!!"!!)!!Q!%!!5!"A^198*U)&*F:G6S:7ZD:8-!'E"Q!!A!!%!K!!!-5G6H;8.U=G&U;7^O!!!;1(!!#!!!1#I!!!R*<H2F=GZB<%2B>'%!!":!=!!)!!"!+A!!#%.443"/97VF!!!71(!!#!!!1#I!!!F-98.U)&*F=X!!(%"Q!!A!!%!K!!!05G6N97FO;7ZH)&.U982F!":!=!!)!!"!+A!!#5&S:X6N:7ZU=Q!=1(!!#!!!1#I!!!^3:8.Q<WZT:3"4<X6S9W5!'%"Q!!A!!%!K!!!+5W^V=G.F)%.441!!&E"Q!!A!!%!K!!!)5W6M:7.U<X)!!"*!=!!)!!"!+A!!"56S=G^S!'E!]1!!!!!!!!!#%E.443V):7RQ:8)O<(:D<'&T=S&@9X.N;'6M='6S8U:S<WZU8V2V<GZF<(.@5G6G=SZD>'Q!,%"1!!I!#!!*!!I!#Q!-!!U!$A!0!"!!%1V'=G^O>#"5>7ZO:7RT!"*!=!!)!!"!+A!!"&*F=X!!!&Y!]1!!!!!!!!!#%E.443V):7RQ:8)O<(:D<'&T=S"@9X.N;'6M='6S8U*B9WN@6(6O<G6M=V^3:7:T,G.U<!!C1&!!"1!)!!E!%Q!-!"%-1G&D;S"5>7ZO:7RT!!"9!0(E_#."!!!!!B*$5UUN3'6M='6S,GRW9WRB=X-/1V..,5BF<("F=CZD>'Q!,E"1!!-!"Q!3!"1>1WRV=X2F=C"P:C"D<'&T=S"Q=GFW982F)'2B>'%!!1!6!!!!'1!!!!!!!!!"!!!!!A!!!!-!!!!%!!!!"1!!!!<`````!!!!"Q!!!!A!!!!*!!!!#A!!!!M!!!!-!!!!$1!!!!Y!!!!0!!!!%!!!!"%!!!!3!!!!%Q!!!"1!!!!6!!!!&A!!!"=!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!%/4'&C6EF&6S"09GJF9X1!5&2)-!!!!!!!!!!!!"=!A!!!!!!!!!!!!!!!!!!"!!!!!!!.!!!!!"=!%%"Q!!A!!!!#!!!#6EE!!"B!=!!)!!"!-Q!!#F>I;7RF)%RP<X!!!"R!=!!)!!"!'!!!$E.B=W5A5X2S>7.U>8*F!!!?1(!!#!!!1"%!!"&198*T:3"4>'&U:3"2>76V:1!=1(!!#!!!1%I!!!^&>G6O>#"4>(*V9X2V=G5!7A$R!!!!!!!!!!)91V..,5BF<("F=C"6>'FM;82Z,GRW<'FC%U.443".<W2V<'5A6(FQ:3ZD>'Q!*5!7!!-*4G^U)'%A1V.."5J,36..!U.441!%6(FQ:1!!$E!B#%FO4(:M;7*Q!!"=!0(E_#-#!!!!!BB$5UUN3'6M='6S)&6U;7RJ>(EO<(:M;7)31V..)%*B=WFD)&*F:H-O9X2M!#B!5!!(!!!!!1!#!!-!"!!&!!905'&S>#"3:7:F=G6O9W6T!"J!=!!)!!"!+A!!$&*F:WFT>(*B>'FP<A!!'E"Q!!A!!%!K!!!-37ZU:8*O97R%982B!!!71(!!#!!!1#I!!!B$5UUA4G&N:1!!&E"Q!!A!!%!K!!!*4'&T>#"3:8.Q!"R!=!!)!!"!+A!!$V*F<7&J<GFO:S"4>'&U:1!71(!!#!!!1#I!!!F"=G>V<76O>(-!(%"Q!!A!!%!K!!!05G6T='^O=W5A5W^V=G.F!"B!=!!)!!"!+A!!#F.P>8*D:3"$5UU!!":!=!!)!!"!+A!!#&.F<'6D>'^S!!!31(!!#!!!1#I!!!6&=H*P=A"J!0%!!!!!!!!!!B*$5UUN3'6M='6S,GRW9WRB=X-B8W.T<7BF<("F=F^'=G^O>&^5>7ZO:7RT8V*F:H-O9X2M!#R!5!!+!!A!#1!+!!M!$!!.!!Y!$Q!1!"%.2H*P<H1A6(6O<G6M=Q!31(!!#!!!1#I!!!23:8.Q!!"?!0%!!!!!!!!!!B*$5UUN3'6M='6S,GRW9WRB=X-A8W.T<7BF<("F=F^#97.L8V2V<GZF<(.@5G6G=SZD>'Q!)E"1!!5!#!!*!"-!$!!2$%*B9WMA6(6O<G6M=Q!!$%!B"U.I97ZH:71!7A$RZ0AX,A!!!!)31V..,5BF<("F=CZM>G.M98.T$E.443V):7RQ:8)O9X2M!$"!5!!%!!=!%A!5!"5>1WRV=X2F=C"P:C"D<'&T=S"Q=GFW982F)'2B>'%!!1!7!!!!'A!!!!!!!!!"!!!!!A!!!!-!!!!%!!!!"1!!!!9!!!!(!!!!#!!!!!E!!!!+!!!!#Q!!!!Q!!!!.!!!!$A!!!!]!!!!1!!!!%1!!!")!!!!4!!!!&!!!!"5!!!!7!!!!&Q!!!"D`````!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1Z-97*73568)%^C;G6D>!"16%AQ!!!!!!!!!!!!&Q#!!!!!!!!!!!!!!!! +!!!!!2*$5UUN3'6M='6S,GRW9WRB=X-!5&2)-!!!!!!!!!!!!!!!!1!"!!!!!!!.!!!!!"=!%%"Q!!A!!!!#!!!#6EE!!"B!=!!)!!"!-Q!!#F>I;7RF)%RP<X!!!"R!=!!)!!"!'!!!$E.B=W5A5X2S>7.U>8*F!!!?1(!!#!!!1"%!!"&198*T:3"4>'&U:3"2>76V:1!=1(!!#!!!1%I!!!^&>G6O>#"4>(*V9X2V=G5!7A$R!!!!!!!!!!)91V..,5BF<("F=C"6>'FM;82Z,GRW<'FC%U.443".<W2V<'5A6(FQ:3ZD>'Q!*5!7!!-*4G^U)'%A1V.."5J,36..!U.441!%6(FQ:1!!$E!B#%FO4(:M;7*Q!!"=!0(E_#-#!!!!!BB$5UUN3'6M='6S)&6U;7RJ>(EO<(:M;7)31V..)%*B=WFD)&*F:H-O9X2M!#B!5!!(!!!!!1!#!!-!"!!&!!905'&S>#"3:7:F=G6O9W6T!"J!=!!)!!"!+A!!$&*F:WFT>(*B>'FP<A!!'E"Q!!A!!%!K!!!-37ZU:8*O97R%982B!!!71(!!#!!!1#I!!!B$5UUA4G&N:1!!&E"Q!!A!!%!K!!!*4'&T>#"3:8.Q!"R!=!!)!!"!+A!!$V*F<7&J<GFO:S"4>'&U:1!71(!!#!!!1#I!!!F"=G>V<76O>(-!(%"Q!!A!!%!K!!!05G6T='^O=W5A5W^V=G.F!"B!=!!)!!"!+A!!#F.P>8*D:3"$5UU!!":!=!!)!!"!+A!!#&.F<'6D>'^S!!!31(!!#!!!1#I!!!6&=H*P=A"J!0%!!!!!!!!!!B*$5UUN3'6M='6S,GRW9WRB=X-B8W.T<7BF<("F=F^'=G^O>&^5>7ZO:7RT8V*F:H-O9X2M!#R!5!!+!!A!#1!+!!M!$!!.!!Y!$Q!1!"%.2H*P<H1A6(6O<G6M=Q!31(!!#!!!1#I!!!23:8.Q!!"?!0%!!!!!!!!!!B*$5UUN3'6M='6S,GRW9WRB=X-A8W.T<7BF<("F=F^#97.L8V2V<GZF<(.@5G6G=SZD>'Q!)E"1!!5!#!!*!"-!$!!2$%*B9WMA6(6O<G6M=Q!!$%!B"U.I97ZH:71!7A$RZ0AX,A!!!!)31V..,5BF<("F=CZM>G.M98.T$E.443V):7RQ:8)O9X2M!$"!5!!%!!=!%A!5!"5>1WRV=X2F=C"P:C"D<'&T=S"Q=GFW982F)'2B>'%!!1!7!!!!'A!!!!!!!!!"!!!!!A!!!!-!!!!%!!!!"1!!!!9!!!!(!!!!#!!!!!E!!!!+!!!!#Q!!!!Q!!!!.!!!!$A!!!!]!!!!1!!!!%1!!!")!!!!4!!!!&!!!!"5!!!!7!!!!&Q!!!"D`````!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1Z-97*73568)%^C;G6D>!"16%AQ!!!!!!!!!!!!&Q#!!!!!!!!!!!!!!!! false @@ -235,13 +235,13 @@ 1342972435 - &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&C!!!!$1!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!""!-0````]'5X2B>(6T!!!11$$`````"UFO5X2B>'5!#A"1!!)!"1!'!"2!1!!"`````Q!("U&S=G&Z)$-!,E"Q!"Y!!"131V..,5BF<("F=CZM>G.M98.T!!!/1V..,5BF<("F=C"P>81!!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!,%"Q!"Y!!"131V..,5BF<("F=CZM>G.M98.T!!!.1V..,5BF<("F=C"J<A"B!0!!$!!$!!1!#!!*!!1!"!!%!!1!#A!%!!1!#Q-!!(A!!!U)!!!!!!!!#1!!!!U,!!!!!!!!!!!!!!!!!!!!!!!!#!!!!!!!!!!!!!!!%!!!$1!!!!Q!!!!!!!!!!!!!!1!-!!!!!! + &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&C!!!!$1!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!""!-0````]'5X2B>(6T!!!11$$`````"UFO5X2B>'5!#A"1!!)!"1!'!"2!1!!"`````Q!("U&S=G&Z)$-!,E"Q!"Y!!"131V..,5BF<("F=CZM>G.M98.T!!!/1V..,5BF<("F=C"P>81!!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!,%"Q!"Y!!"131V..,5BF<("F=CZM>G.M98.T!!!.1V..,5BF<("F=C"J<A"B!0!!$!!$!!1!#!!*!!1!"!!%!!1!#A!%!!1!#Q-!!(A!!!U)!!!!!!!!#1!!!!U,!!!!!!!!!!!!!!!!!!!!!!!!#A!!!!!!!!!!!!!!%!!!$1!!!!Q!!!!!!!!!!!!!!1!-!!!!!! -1 0 true 1 1 - 1107821075 + 1082130960 &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!%]!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!'%"Q!!A!!%!T!!!+6WBJ<'5A4'^P=!!!"!!!!#Z!=!!?!!!5%E.443V):7RQ:8)O<(:D<'&T=Q!!$E.443V):7RQ:8)A<X6U!!!A1&!!!Q!!!!%!!B.F=H*P=C"J<C!I<G]A:8*S<X)J!#R!=!!?!!!5%E.443V):7RQ:8)O<(:D<'&T=Q!!$5.443V):7RQ:8)A;7Y!91$Q!!Q!!Q!%!!5!"A!&!!5!"1!&!!=!"1!&!!A#!!"Y!!!.#!!!#1!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!A!!!!!!!!!!!!!!"!!!!U!!!!-!!!!!!!!!!!!!!%!#1!!!!! @@ -378,7 +378,7 @@ true 1 1 - 277094416 + 1082130960 &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&J!!!!$!!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!&E"Q!!A!!%!!!!!*172E)%:S97VF!!1!!!!O1(!!(A!!&"*$5UUN3'6M='6S,GRW9WRB=X-!!!Z$5UUN3'6M='6S)'^V>!!!)%"1!!-!!!!"!!)4:8*S<X)A;7YA+'ZP)'6S=G^S+1!@1!-!'7FO:'6Y+#UR,#"V=W5A=W&N:3"H=G^V=#E!%%!Q`````Q>F<'6N:7ZU!#R!=!!?!!!5%E.443V):7RQ:8)O<(:D<'&T=Q!!$5.443V):7RQ:8)A;7Y!91$Q!!Q!!Q!%!!5!"A!&!!5!"1!&!!=!#!!*!!I$!!"Y!!!.#!!!#1!!!!!!!!!*!!!!!!!!!!!!!!!!!!!!!!!!!!I!!!!+!!!"%A!!!"!!!!U!!!!-!!!!!!!!!!!!!!%!#Q!!!!! @@ -462,13 +462,13 @@ 8400912 - &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!%E!!!!#1!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!#Z!=!!?!!!5%E.443V):7RQ:8)O<(:D<'&T=Q!!$E.443V):7RQ:8)A<X6U!!!A1&!!!Q!!!!%!!B.F=H*P=C"J<C!I<G]A:8*S<X)J!#R!=!!?!!!5%E.443V):7RQ:8)O<(:D<'&T=Q!!$5.443V):7RQ:8)A;7Y!91$Q!!Q!!Q!%!!1!"1!%!!1!"!!%!!9!"!!%!!=$!!"Y!!!.#!!!!!!!!!!!!!!.#Q!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!!!!!!"!!!!U!!!!-!!!!!!!!!!!!!!%!#!!!!!! + &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!%E!!!!#1!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!#Z!=!!?!!!5%E.443V):7RQ:8)O<(:D<'&T=Q!!$E.443V):7RQ:8)A<X6U!!!A1&!!!Q!!!!%!!B.F=H*P=C"J<C!I<G]A:8*S<X)J!#R!=!!?!!!5%E.443V):7RQ:8)O<(:D<'&T=Q!!$5.443V):7RQ:8)A;7Y!91$Q!!Q!!Q!%!!1!"1!%!!1!"!!%!!9!"!!%!!=$!!"Y!!!.#!!!!!!!!!!!!!!*!!!!!!!!!!!!!!!!!!!!!!!!!!I!!!!!!!!!!!!!!"!!!!U!!!!-!!!!!!!!!!!!!!%!#!!!!!! -1 0 true 1 1 - 269230096 + 1082130960 @@ -498,7 +498,7 @@ true 1 1 - 268967952 + 1082130960 &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!%*!!!!#1!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!$*!=!!?!!!5%E.443V):7RQ:8)O<(:D<'&T=Q!!%E.443V):7RQ:8)O<(:D<'&T=Q!!)%"1!!-!!!!"!!)4:8*S<X)A;7YA+'ZP)'6S=G^S+1!;1(!!#!!!1%I!!!V$98.F5X2S>7.U>8*F!&1!]!!-!!-!"!!%!!5!"!!%!!1!"!!'!!1!"!!(!Q!!?!!!$1A!!!!!!!!!!!!!#1!!!!!!!!!!!!!!!!!!!!!!!!!)!!!!!!!!!!!!!!!1!!!!!!%!#!!!!!! @@ -528,13 +528,13 @@ 268967952 - &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!%_!!!!#A!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!#Z!=!!?!!!5%E.443V):7RQ:8)O<(:D<'&T=Q!!$E.443V):7RQ:8)A<X6U!!!;1#%55W&W:3"*<H.U=H6N:7ZU=T]I2CE!!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!,%"Q!"Y!!"131V..,5BF<("F=CZM>G.M98.T!!!.1V..,5BF<("F=C"J<A"B!0!!$!!$!!1!"!!&!!1!"!!'!!1!"Q!%!!1!#!-!!(A!!!U)!!!!!!!!!!!!!!U,!!!!!!!!!!!!!!A!!!!!!!!!#A!!!!!!!!!!!!!!%!!!$1!!!!Q!!!!!!!!!!!!!!1!*!!!!!! + &Q#!!!!!!!)!"1!&!!!-!%!!!@````]!!!!"!!%!!!&1!!!!#Q!-1#%'=X2B>(6T!!!,1!-!"'.P:'5!!""!-0````]'=W^V=G.F!!!71&!!!Q!!!!%!!AFF=H*P=C"P>81!"!!!!#Z!=!!?!!!5%E.443V):7RQ:8)O<(:D<'&T=Q!!$E.443V):7RQ:8)A<X6U!!!;1#%55W&W:3"*<H.U=H6N:7ZU=T]I2CE!!#"!5!!$!!!!!1!#%W6S=G^S)'FO)#BO<S"F=H*P=CE!%E!B$%&V>']A5W&W:3B5+1!!,%"Q!"Y!!"131V..,5BF<("F=CZM>G.M98.T!!!.1V..,5BF<("F=C"J<A"B!0!!$!!$!!1!"!!&!!1!"!!'!!1!"Q!)!!1!#1-!!(A!!!U)!!!!!!!!!!!!!!U,!!!!!!!!!!!!!!I!!!!!!!!!#A!!!!I!!!!!!!!!%!!!$1!!!!Q!!!!!!!!!!!!!!1!+!!!!!! -1 0 true 1 1 - 269230096 + 8388624 diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read Back Tunnel Internal TermRefs.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read Back Tunnel Internal TermRefs.vi index a0c3f6349..6fcd35408 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read Back Tunnel Internal TermRefs.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read Back Tunnel Internal TermRefs.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read Block Diagram Ref.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read Block Diagram Ref.vi index 9bdcdf72a..6a542476f 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read Block Diagram Ref.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read Block Diagram Ref.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read Front Tunnel Internal TermRefs.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read Front Tunnel Internal TermRefs.vi index 7fc757b6c..5dc430fa8 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read Front Tunnel Internal TermRefs.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read Front Tunnel Internal TermRefs.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read New State Notifier Event State Ref.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read New State Notifier Event State Ref.vi index 0dc6a061c..39877abb7 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read New State Notifier Event State Ref.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read New State Notifier Event State Ref.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read Paired Tunnels of Case Structure.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read Paired Tunnels of Case Structure.vi index 1e7067ef6..60468405a 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read Paired Tunnels of Case Structure.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read Paired Tunnels of Case Structure.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read States.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read States.vi index 9a4958259..7f5cbbcdf 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read States.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read States.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read Status.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read Status.vi index 876890624..f74bbe575 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read Status.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read Status.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read Timeout Event State Ref.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read Timeout Event State Ref.vi index 946c169e4..51d3f886b 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read Timeout Event State Ref.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read Timeout Event State Ref.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read User-Defined States.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read User-Defined States.vi index 1f2f082db..3dc710e46 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read User-Defined States.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Properties/Read User-Defined States.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/CSM Module Type.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/CSM Module Type.vi index 1f35cb1be..f1e169c5c 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/CSM Module Type.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/CSM Module Type.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/Is CSM Module - VIRef.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/Is CSM Module - VIRef.vi index ca1499a54..c1e7ec4b3 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/Is CSM Module - VIRef.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/Is CSM Module - VIRef.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/CaseStructure.llb b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/CaseStructure.llb index ebd0eb017..474ca1bca 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/CaseStructure.llb and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/CaseStructure.llb differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/Diagram.llb b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/Diagram.llb index 99f0bbfec..1d77bb355 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/Diagram.llb and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/Diagram.llb differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/GObject.llb b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/GObject.llb index c06370979..c94870645 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/GObject.llb and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/GObject.llb differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/PairedTunnels.llb b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/PairedTunnels.llb index 8fa261dde..fdc658af2 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/PairedTunnels.llb and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/PairedTunnels.llb differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/Relationship.llb b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/Relationship.llb index 35d789423..ef1cad4cc 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/Relationship.llb and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/Relationship.llb differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/String.llb b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/String.llb index 395b8f307..3bea234c6 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/String.llb and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/String.llb differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/SubVI.llb b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/SubVI.llb index 10a0642e4..93aba794d 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/SubVI.llb and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/SubVI.llb differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/Terminals.llb b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/Terminals.llb index 61d9551d1..fd4bcb161 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/Terminals.llb and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/Terminals.llb differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/Wire.llb b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/Wire.llb index fa6f6eda4..368f84715 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/Wire.llb and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/Utility/_Support/Wire.llb differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Bulid Status List.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Bulid Status List.vi index e97173202..5273f68b0 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Bulid Status List.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Bulid Status List.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/CaseNames To CSM States.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/CaseNames To CSM States.vi index 485021b75..f83dfc635 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/CaseNames To CSM States.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/CaseNames To CSM States.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Creation/Refresh References.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Creation/Refresh References.vi index 30d79aba0..171cc900a 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Creation/Refresh References.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Creation/Refresh References.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/FrameNames to StateNames.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/FrameNames to StateNames.vi index 689ce532a..bd367de03 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/FrameNames to StateNames.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/FrameNames to StateNames.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Get Argument Info From Front Term.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Get Argument Info From Front Term.vi index cc0f2ba1b..70cadc9b5 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Get Argument Info From Front Term.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Get Argument Info From Front Term.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Get Argument Info From back Term.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Get Argument Info From back Term.vi index d4922704c..57c66ab6e 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Get Argument Info From back Term.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Get Argument Info From back Term.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Get Status List From Term.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Get Status List From Term.vi index 5f25a1530..a91b88d36 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Get Status List From Term.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Get Status List From Term.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Relative Pos to InterData Tunnel of CaseContent.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Relative Pos to InterData Tunnel of CaseContent.vi index cd4689b54..ee19df60c 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Relative Pos to InterData Tunnel of CaseContent.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Relative Pos to InterData Tunnel of CaseContent.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Resize CaseStructure By Making Space.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Resize CaseStructure By Making Space.vi index 655152d80..c988a7eb9 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Resize CaseStructure By Making Space.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/Resize CaseStructure By Making Space.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/_Add VI Reference Case.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/_Add VI Reference Case.vi index 72edca21b..fa8c1918f 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/_Add VI Reference Case.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/_support/_Add VI Reference Case.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/Change File Extension.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/Change File Extension.vi index 4b8923a57..dd175a29e 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/Change File Extension.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/Change File Extension.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/Path to lvcsm String.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/Path to lvcsm String.vi index 8fe285d86..b6413cc1f 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/Path to lvcsm String.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/Path to lvcsm String.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/_Array of VData to VCluster.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/_Array of VData to VCluster.vi index 8341aac04..b1007f526 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/_Array of VData to VCluster.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/_Array of VData to VCluster.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/_Common Path to Specific Path.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/_Common Path to Specific Path.vi index 1d7f28fdc..162864927 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/_Common Path to Specific Path.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/_Common Path to Specific Path.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/_Specific Path to Common Path.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/_Specific Path to Common Path.vi index c59b43aa6..6ce0e829b 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/_Specific Path to Common Path.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/_Specific Path to Common Path.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/_System Locations.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/_System Locations.vi index be7487064..7d810a311 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/_System Locations.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/_System Locations.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/lvcsm Delete Section.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/lvcsm Delete Section.vi index 8d2211a00..b72bf0dad 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/lvcsm Delete Section.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/lvcsm Delete Section.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/lvcsm File Path.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/lvcsm File Path.vi index 969d9f795..af00f8032 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/lvcsm File Path.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/lvcsm File Path.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/lvcsm List Sesctions.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/lvcsm List Sesctions.vi index 5144d2c38..484b3b97e 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/lvcsm List Sesctions.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/lvcsm List Sesctions.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/lvcsm Read Cluster.vim b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/lvcsm Read Cluster.vim index c865895c6..8242c2c2c 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/lvcsm Read Cluster.vim and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/lvcsm Read Cluster.vim differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/lvcsm String to Path.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/lvcsm String to Path.vi index 75f5de6dd..ab4718753 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/lvcsm String to Path.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/lvcsm String to Path.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/lvcsm Write Cluster.vim b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/lvcsm Write Cluster.vim index 9f5c5df4d..2707c0c4a 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/lvcsm Write Cluster.vim and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/lvcsmFile/lvcsm Write Cluster.vim differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/usecase/Add VI Reference Case.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/usecase/Add VI Reference Case.vi index 394d4d06e..6e83699e6 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/usecase/Add VI Reference Case.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/usecase/Add VI Reference Case.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/usecase/Remove All CSM Bookmarks.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/usecase/Remove All CSM Bookmarks.vi index dc150a87e..ca084ec73 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/usecase/Remove All CSM Bookmarks.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/usecase/Remove All CSM Bookmarks.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/usecase/Rename Copyright Year.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/usecase/Rename Copyright Year.vi index 5a56027e2..623551585 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/usecase/Rename Copyright Year.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/usecase/Rename Copyright Year.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/usecase/Replace Debug Log History Method.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/usecase/Replace Debug Log History Method.vi index 91294d1cf..bd508e187 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/usecase/Replace Debug Log History Method.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/usecase/Replace Debug Log History Method.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/usecase/standardize CSM Module.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/usecase/standardize CSM Module.vi index 179d556ab..c424854c9 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/usecase/standardize CSM Module.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_csmHelper/usecase/standardize CSM Module.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/CSM Execute - Edit Script.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/CSM Execute - Edit Script.vi index e5536e812..5bd68deb5 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/CSM Execute - Edit Script.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/CSM Execute - Edit Script.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/CSM Execute - Fix VI Reference State.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/CSM Execute - Fix VI Reference State.vi index e81449137..46d830257 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/CSM Execute - Fix VI Reference State.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/CSM Execute - Fix VI Reference State.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/CSM Execute - Place holder.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/CSM Execute - Place holder.vi index 375e35dbd..33c438e6f 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/CSM Execute - Place holder.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/CSM Execute - Place holder.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/CSM Execute - Remove all CSM Bookmarks.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/CSM Execute - Remove all CSM Bookmarks.vi index 152444107..dcc875714 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/CSM Execute - Remove all CSM Bookmarks.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/CSM Execute - Remove all CSM Bookmarks.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/CSM Execute - Upgrade Debug Log History Method.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/CSM Execute - Upgrade Debug Log History Method.vi index dacd9c155..dc97dc7b7 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/CSM Execute - Upgrade Debug Log History Method.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/CSM Execute - Upgrade Debug Log History Method.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/_support/_CSM Scripts Colors.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/_support/_CSM Scripts Colors.vi index 2c97a91c6..86a23e264 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/_support/_CSM Scripts Colors.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/_support/_CSM Scripts Colors.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/_support/_Highlight CSM Scripts(StringConstant).vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/_support/_Highlight CSM Scripts(StringConstant).vi index 6dab13038..25972b8cc 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/_support/_Highlight CSM Scripts(StringConstant).vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/_support/_Highlight CSM Scripts(StringConstant).vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/_support/_Highlight CSM Scripts(TextDecor).vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/_support/_Highlight CSM Scripts(TextDecor).vi index 70405fbeb..1c3df8d04 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/_support/_Highlight CSM Scripts(TextDecor).vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/_support/_Highlight CSM Scripts(TextDecor).vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/_support/_Make String Safe as Arguments.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/_support/_Make String Safe as Arguments.vi index 8f63d3a61..7229f6529 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/_support/_Make String Safe as Arguments.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/_support/_Make String Safe as Arguments.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/_support/_Revert CSM Safe String.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/_support/_Revert CSM Safe String.vi index 17d063b3e..4568c6979 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/_support/_Revert CSM Safe String.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/_support/_Revert CSM Safe String.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/_support/_UpdatePictureControl.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/_support/_UpdatePictureControl.vi index 92b70dd2d..c37aa0a7d 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/_support/_UpdatePictureControl.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_popupMenuPlugin/_support/_UpdatePictureControl.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/FixJKIHelper.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/FixJKIHelper.vi index 34b505e4f..36eebb0ad 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/FixJKIHelper.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/FixJKIHelper.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_csm_System_Language.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_csm_System_Language.vi index 5cff2c24a..0f3d2fdd2 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_csm_System_Language.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_csm_System_Language.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_fix_linux_palette_path_issue.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_fix_linux_palette_path_issue.vi new file mode 100644 index 000000000..4f57c9bca Binary files /dev/null and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_fix_linux_palette_path_issue.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_script_enable_run_when_opened.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_script_enable_run_when_opened.vi index 3af9c71a7..5d949afe6 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_script_enable_run_when_opened.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_script_enable_run_when_opened.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_script_fix_jkism_helper.llb b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_script_fix_jkism_helper.llb index 0541c521a..26a36bcf4 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_script_fix_jkism_helper.llb and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_script_fix_jkism_helper.llb differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_script_set_csm_doc_case_as_default.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_script_set_csm_doc_case_as_default.vi index 6a9ea57c1..d99ba6842 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_script_set_csm_doc_case_as_default.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_script_set_csm_doc_case_as_default.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_support/Constant String/Error Case Strings.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_support/Constant String/Error Case Strings.vi index 52fcb9fb3..d863867f5 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_support/Constant String/Error Case Strings.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_support/Constant String/Error Case Strings.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_support/Constant String/Not a Num Primitive String.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_support/Constant String/Not a Num Primitive String.vi index 0ba7ad63e..1ca7b3f94 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_support/Constant String/Not a Num Primitive String.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_support/Constant String/Not a Num Primitive String.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_support/String to Path(Relative Path).vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_support/String to Path(Relative Path).vi new file mode 100644 index 000000000..650056f03 Binary files /dev/null and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_scripts/_support/String to Path(Relative Path).vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/CSM - Create CSM Palette at Root.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/CSM - Create CSM Palette at Root.vi index 6c20fd7b4..dd0976f50 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/CSM - Create CSM Palette at Root.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/CSM - Create CSM Palette at Root.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/CSM - Debug Console - previous.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/CSM - Debug Console - previous.vi index ba4027b80..c2ae235de 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/CSM - Debug Console - previous.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/CSM - Debug Console - previous.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/CSM - Running Log - DebugTool.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/CSM - Running Log - DebugTool.vi index ff3eae05a..3ae47449e 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/CSM - Running Log - DebugTool.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/CSM - Running Log - DebugTool.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/CSM - Switch Language Tool.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/CSM - Switch Language Tool.vi index 55344e135..bb03db6d8 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/CSM - Switch Language Tool.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/CSM - Switch Language Tool.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_SubModules/CSM - Switch Language Dialog.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_SubModules/CSM - Switch Language Dialog.vi index 591f26b68..806721809 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_SubModules/CSM - Switch Language Dialog.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_SubModules/CSM - Switch Language Dialog.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_SubModules/CSM Batch Format Tool.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_SubModules/CSM Batch Format Tool.vi index fcfa7e53e..b3a7dbc49 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_SubModules/CSM Batch Format Tool.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_SubModules/CSM Batch Format Tool.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_SubModules/Command Editor Dialog.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_SubModules/Command Editor Dialog.vi index dcb42203b..0d02bd9ad 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_SubModules/Command Editor Dialog.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_SubModules/Command Editor Dialog.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_SubModules/Interface Browser.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_SubModules/Interface Browser.vi index 9347eaf59..7704ee295 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_SubModules/Interface Browser.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_SubModules/Interface Browser.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_SubModules/Scan CSM-VI.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_SubModules/Scan CSM-VI.vi index 54256a728..29a007c6f 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_SubModules/Scan CSM-VI.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_SubModules/Scan CSM-VI.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_SubModules/Script Editor Dialog.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_SubModules/Script Editor Dialog.vi index b1e07e55a..cd6463fe9 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_SubModules/Script Editor Dialog.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_SubModules/Script Editor Dialog.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_Support/Filter StrArray By Input.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_Support/Filter StrArray By Input.vi index 4c4f051bc..d001552a3 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_Support/Filter StrArray By Input.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_Support/Filter StrArray By Input.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_Support/Single-Line To CSM Parts.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_Support/Single-Line To CSM Parts.vi index e96f47a1b..aab794b61 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_Support/Single-Line To CSM Parts.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_Support/Single-Line To CSM Parts.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_Support/Update Connect Panel Doc.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_Support/Update Connect Panel Doc.vi index 25602e7ed..376b4fc33 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_Support/Update Connect Panel Doc.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_Support/Update Connect Panel Doc.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_Support/_parse Log Line.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_Support/_parse Log Line.vi index 5074508cb..d6278de5c 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_Support/_parse Log Line.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_Support/_parse Log Line.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_Support/_scriptEditor.Input Candidates.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_Support/_scriptEditor.Input Candidates.vi index 2e061b199..cbcc3cfd9 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_Support/_scriptEditor.Input Candidates.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_Support/_scriptEditor.Input Candidates.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_batchEditorDialog/Batch Editor Dialog.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_batchEditorDialog/Batch Editor Dialog.vi index dd6abe9a1..d2f9dc29a 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_batchEditorDialog/Batch Editor Dialog.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_batchEditorDialog/Batch Editor Dialog.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_csmlite/Broadcast Message.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_csmlite/Broadcast Message.vi index d5e9c9713..7dfc3b816 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_csmlite/Broadcast Message.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_csmlite/Broadcast Message.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_csmlite/Parse State Queue_csmlite.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_csmlite/Parse State Queue_csmlite.vi index fd788665e..1053e8e21 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_csmlite/Parse State Queue_csmlite.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_csmlite/Parse State Queue_csmlite.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_csmlite/Post Message.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_csmlite/Post Message.vi index b2553fd3c..f145bce5c 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_csmlite/Post Message.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_csmlite/Post Message.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_csmlite/_Engine.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_csmlite/_Engine.vi index 8d885065a..98d253c6c 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_csmlite/_Engine.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_csmlite/_Engine.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_csmlite/_PassAllowedMessage - Mapping.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_csmlite/_PassAllowedMessage - Mapping.vi index 04a65ea4b..9754169fe 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_csmlite/_PassAllowedMessage - Mapping.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_csmlite/_PassAllowedMessage - Mapping.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_csmlite/_PassAllowedMessage - MsgList.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_csmlite/_PassAllowedMessage - MsgList.vi index 0558a92e9..0007b23e4 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_csmlite/_PassAllowedMessage - MsgList.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_csmlite/_PassAllowedMessage - MsgList.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/Broadcast Console.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/Broadcast Console.vi index 24422736e..4d3fcd517 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/Broadcast Console.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/Broadcast Console.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/CSM - Debug Console 2.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/CSM - Debug Console 2.vi index af63a0a7e..e7d5eb90e 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/CSM - Debug Console 2.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/CSM - Debug Console 2.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/HistoryList.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/HistoryList.vi index 2714a43b4..60adabbc6 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/HistoryList.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/HistoryList.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/LogViewer.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/LogViewer.vi index eb64885aa..c461ee1bb 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/LogViewer.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/LogViewer.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/Message Console.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/Message Console.vi index ad939ca98..8d62b2c7c 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/Message Console.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/Message Console.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/Module Information.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/Module Information.vi index 0ba6718c8..f5618912e 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/Module Information.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/Module Information.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/Registration Console.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/Registration Console.vi index e165e7bcd..8ad8f261d 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/Registration Console.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/Registration Console.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/Script-Window.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/Script-Window.vi index 7cbdc932d..447d24be9 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/Script-Window.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/Script-Window.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/_Broadcast Message.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/_Broadcast Message.vi index 6005080a2..cd4e16452 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/_Broadcast Message.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_debugConsole/_Broadcast Message.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_examplebrowser/CSM_ExampleBrowser.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_examplebrowser/CSM_ExampleBrowser.vi index 9f76c1ee6..4f873194b 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_examplebrowser/CSM_ExampleBrowser.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_examplebrowser/CSM_ExampleBrowser.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_examplebrowser/support/_BMarkInfo to MCTable.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_examplebrowser/support/_BMarkInfo to MCTable.vi index 3730439c2..3ae80f1cf 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_examplebrowser/support/_BMarkInfo to MCTable.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_examplebrowser/support/_BMarkInfo to MCTable.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_examplebrowser/support/_Get VIs in Project.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_examplebrowser/support/_Get VIs in Project.vi index 2cdd298b1..1e966dcf2 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_examplebrowser/support/_Get VIs in Project.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_examplebrowser/support/_Get VIs in Project.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_examplebrowser/support/_UpdatePictureControl.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_examplebrowser/support/_UpdatePictureControl.vi index e5f8693f6..b757312cb 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_examplebrowser/support/_UpdatePictureControl.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_examplebrowser/support/_UpdatePictureControl.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_file/Split String Array By Patterns_CSM.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_file/Split String Array By Patterns_CSM.vi index acba9e766..3e90c140d 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_file/Split String Array By Patterns_CSM.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_file/Split String Array By Patterns_CSM.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_file/Text To Lines_CSM.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_file/Text To Lines_CSM.vi index b9d362ae3..e523b9c8d 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_file/Text To Lines_CSM.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_file/Text To Lines_CSM.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_interfacebrowser/_VI Missing or Broken.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_interfacebrowser/_VI Missing or Broken.vi index 5b17c5f2d..f78475d5d 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_interfacebrowser/_VI Missing or Broken.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_interfacebrowser/_VI Missing or Broken.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_interfacebrowser/build tree table in CSM-VI mode.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_interfacebrowser/build tree table in CSM-VI mode.vi index d53227641..f8b815a25 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_interfacebrowser/build tree table in CSM-VI mode.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_interfacebrowser/build tree table in CSM-VI mode.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_trial-lic/CSM-TrialLicWatermark.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_trial-lic/CSM-TrialLicWatermark.vi index 8c398a659..fd1562126 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_trial-lic/CSM-TrialLicWatermark.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_trial-lic/CSM-TrialLicWatermark.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Auto Resize All Table Columns (Uniform Text).vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Auto Resize All Table Columns (Uniform Text).vi index 931841e6c..f84696027 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Auto Resize All Table Columns (Uniform Text).vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Auto Resize All Table Columns (Uniform Text).vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Auto Resize All Tree Columns (Uniform Text).vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Auto Resize All Tree Columns (Uniform Text).vi index 23435d132..42a425de8 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Auto Resize All Tree Columns (Uniform Text).vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Auto Resize All Tree Columns (Uniform Text).vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Dashboard Cell Resize.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Dashboard Cell Resize.vi index a701df98c..2d46b440e 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Dashboard Cell Resize.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Dashboard Cell Resize.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Dashboard Cell2 Array Resize.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Dashboard Cell2 Array Resize.vi index b4ebdd1a4..f26bfe42c 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Dashboard Cell2 Array Resize.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Dashboard Cell2 Array Resize.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Distribute Controls Evenly.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Distribute Controls Evenly.vi new file mode 100644 index 000000000..13243408b Binary files /dev/null and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Distribute Controls Evenly.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Explore to Path.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Explore to Path.vi new file mode 100644 index 000000000..0709770dd Binary files /dev/null and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Explore to Path.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Caller Center.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Caller Center.vi index 3f0a803e9..08a70fb3e 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Caller Center.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Caller Center.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Content.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Content.vi index 7f0754062..9092d5838 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Content.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Content.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Largest Dec.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Largest Dec.vi index 758840678..4c1d30539 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Largest Dec.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Largest Dec.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Pane Center.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Pane Center.vi index 7d2f91c64..592145fec 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Pane Center.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Pane Center.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Panel Center.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Panel Center.vi index af6e65b97..36a4d8ba7 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Panel Center.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Panel Center.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Rect.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Rect.vi index b84b65230..d5db89afd 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Rect.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Rect.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Visible Content.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Visible Content.vi index 4cfdeff9a..994d7740e 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Visible Content.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/Fit VI window to Visible Content.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/cmbBox Change List and Set Value.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/cmbBox Change List and Set Value.vi index fd432b2ca..7b9331942 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/cmbBox Change List and Set Value.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/cmbBox Change List and Set Value.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/csm-ui-support.lvlib b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/csm-ui-support.lvlib index 095ff1b98..65b5e779c 100644 --- a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/csm-ui-support.lvlib +++ b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_tool/_ui/csm-ui-support.lvlib @@ -11,6 +11,7 @@ 385908736 1.0.0.0 true + 3 @@ -36,4 +37,6 @@ + + diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/browse_nevstoplab/CSM - Explorer to Example.xnode b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/browse_nevstoplab/CSM - Explorer to Example.xnode index 3a268cdc7..7a0dcb5d8 100644 --- a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/browse_nevstoplab/CSM - Explorer to Example.xnode +++ b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/browse_nevstoplab/CSM - Explorer to Example.xnode @@ -20,7 +20,6 @@ Help - State diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/browse_nevstoplab/_Copy.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/browse_nevstoplab/_Copy.vi index 84c8796da..ff3a4bfbc 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/browse_nevstoplab/_Copy.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/browse_nevstoplab/_Copy.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/browse_nevstoplab/_Open Explorer Window.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/browse_nevstoplab/_Open Explorer Window.vi deleted file mode 100644 index 46081b5d4..000000000 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/browse_nevstoplab/_Open Explorer Window.vi and /dev/null differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/csm_tool/_xnode_csm_tool_support/CSM DebugTool Dialog Ref(FGV).vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/csm_tool/_xnode_csm_tool_support/CSM DebugTool Dialog Ref(FGV).vi index d1cf58091..702bb02d9 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/csm_tool/_xnode_csm_tool_support/CSM DebugTool Dialog Ref(FGV).vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/csm_tool/_xnode_csm_tool_support/CSM DebugTool Dialog Ref(FGV).vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/csm_tool/_xnode_csm_tool_support/CSM DebugTool Dialog.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/csm_tool/_xnode_csm_tool_support/CSM DebugTool Dialog.vi index 3670bd337..30f8d0e9f 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/csm_tool/_xnode_csm_tool_support/CSM DebugTool Dialog.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/csm_tool/_xnode_csm_tool_support/CSM DebugTool Dialog.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/csm_tool/_xnode_csm_tool_support/CSM Tool Name from VI.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/csm_tool/_xnode_csm_tool_support/CSM Tool Name from VI.vi index d42300419..aa671ee96 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/csm_tool/_xnode_csm_tool_support/CSM Tool Name from VI.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/csm_tool/_xnode_csm_tool_support/CSM Tool Name from VI.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/csm_tool/_xnode_csm_tool_support/Start CSM DebugTool Dialog.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/csm_tool/_xnode_csm_tool_support/Start CSM DebugTool Dialog.vi index f768156fe..ff3733ce7 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/csm_tool/_xnode_csm_tool_support/Start CSM DebugTool Dialog.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/csm_tool/_xnode_csm_tool_support/Start CSM DebugTool Dialog.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/csm_tool/_xnode_csm_tool_support/_reorder tool entries.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/csm_tool/_xnode_csm_tool_support/_reorder tool entries.vi index 70bfc5422..cf07daa6f 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/csm_tool/_xnode_csm_tool_support/_reorder tool entries.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/_xnode/csm_tool/_xnode_csm_tool_support/_reorder tool entries.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/addons/Logger/CSM - Start File Logger.vi b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/addons/Logger/CSM - Start File Logger.vi index c30b02289..8f4ab2570 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/addons/Logger/CSM - Start File Logger.vi and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/addons/Logger/CSM - Start File Logger.vi differ diff --git a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/dir.mnu b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/dir.mnu index 75c810dee..7d5b10ad6 100644 Binary files a/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/dir.mnu and b/src/user.lib/_NEVSTOP/Communicable State Machine(CSM)/dir.mnu differ diff --git a/testcases/CSM/Build CSM to PPL.vi b/testcases/CSM/Build CSM to PPL.vi index 24ae29908..88e2dced9 100644 Binary files a/testcases/CSM/Build CSM to PPL.vi and b/testcases/CSM/Build CSM to PPL.vi differ diff --git a/testcases/CSM/GetPathByPrototypeName.vi b/testcases/CSM/GetPathByPrototypeName.vi index 83b14993b..bb16e1c02 100644 Binary files a/testcases/CSM/GetPathByPrototypeName.vi and b/testcases/CSM/GetPathByPrototypeName.vi differ diff --git a/testcases/CSM/Prototypes.vi b/testcases/CSM/Prototypes.vi index 81aac7f9e..99fb23c2d 100644 Binary files a/testcases/CSM/Prototypes.vi and b/testcases/CSM/Prototypes.vi differ diff --git a/testcases/CSMTestSuite/setUp.vi b/testcases/CSMTestSuite/setUp.vi index c1e62664a..be55697d3 100644 Binary files a/testcases/CSMTestSuite/setUp.vi and b/testcases/CSMTestSuite/setUp.vi differ