@@ -692,14 +858,13 @@ layout("/layouts/platform_h5.html"){
-
+
{{ item.optionName || '未知选项' }}
× {{ item.selectNum || 0 }}
- {{ formatDate(item.selectTime) }}
@@ -771,6 +936,7 @@ layout("/layouts/platform_h5.html"){
selections: []
}))
this.tableData = this.tableData.concat(list)
+ list.forEach((row) => this.loadRowSelections(row))
this.pageForm.totalCount = res.data.totalCount || 0
if (this.tableData.length >= this.pageForm.totalCount) {
this.finished = true
@@ -790,6 +956,14 @@ layout("/layouts/platform_h5.html"){
return this.$axios.post("/platform/welfare/userSelect/getUserSelection", {projectId: projectId})
},
+ /**
+ * 根据列表接口返回的福利选择摘要计算卡片展示项数,不额外请求接口。
+ */
+ getSelectionCount(row) {
+ const gist = row.gist_list || row.gistList || ""
+ return gist ? gist.split(",").filter(Boolean).length : 1
+ },
+
/**
* 判断福利封面地址是否有效。cover 应为非空图片 URL 字符串;返回 Boolean,true 时渲染图片组件,false 时展示“暂无图片”占位。
*/
@@ -798,12 +972,11 @@ layout("/layouts/platform_h5.html"){
},
/**
- * 展开或收起福利详情;首次展开时加载项目及用户选择数据,后续直接复用已加载内容。
+ * 加载福利项目及用户选择数据,供卡片直接展示已选择的福利明细。
* @param row 当前福利项目
*/
- async toggleRow(row) {
- row.expanded = !row.expanded
- if (!row.expanded || row.detailLoaded || row.detailLoading) return
+ async loadRowSelections(row) {
+ if (row.detailLoaded || row.detailLoading) return
this.$set(row, "detailLoading", true)
try {
const [projectRes, selectionRes] = await Promise.all([
@@ -829,6 +1002,18 @@ layout("/layouts/platform_h5.html"){
}
},
+ /**
+ * 展开或收起当前福利卡片的内容详情。
+ * @param row 当前福利项目
+ */
+ toggleRow(row) {
+ row.expanded = !row.expanded
+ },
+
+ previewSelectionImage(imageUrl) {
+ if (imageUrl) vant.ImagePreview([imageUrl])
+ },
+
/**
* 获取当前福利的首条选择记录,用于展示联系电话和收货地址。
* @param row 当前福利项目
@@ -855,7 +1040,7 @@ layout("/layouts/platform_h5.html"){
* @return {string} 选择时间文本
*/
formatDate(dateTime) {
- return dateTime ? this.$moment(dateTime).format("MM-DD HH:mm") : "时间未知"
+ return dateTime ? this.$moment(dateTime).format("YYYY-MM-DD HH:mm") : "时间未知"
},
/**
diff --git a/target/classes/application-dev.yaml b/target/classes/application-dev.yaml
index 56c1872..f26fd3d 100644
--- a/target/classes/application-dev.yaml
+++ b/target/classes/application-dev.yaml
@@ -5,7 +5,7 @@ nutz:
ignore: ^(.+[.])(jsp|png|gif|jpg|js|css|jspx|jpeg|html|mp3|mp4|ico|svg|vue)$
exclusions: /favicon/*,/assets/*,/druid/*,/upload/*,/components/*
server:
- port: 8080
+ port: 80
host: 0.0.0.0
jetty:
@@ -71,9 +71,9 @@ redis:
#nodes=192.168.6.31:6377,192.168.6.31:6378,192.168.6.28:6377,192.168.6.28:6378,192.168.6.34:6377,192.168.6.34:6378
jdbc:
- url: jdbc:mysql://192.168.21.215:3306/zhgh_cug_v4?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true
+ url: jdbc:mysql://192.168.21.212:3306/zhgh_zjvtit_v4?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true&nullCatalogMeansCurrent=true
username: root
- password: root
+ password: 123456
validationQuery: select 1
maxActive: 1000
testWhileIdle: true
diff --git a/target/classes/com/budwk/app/sys/controller/SysSignatureController.class b/target/classes/com/budwk/app/sys/controller/SysSignatureController.class
index d094679..bf36f96 100644
Binary files a/target/classes/com/budwk/app/sys/controller/SysSignatureController.class and b/target/classes/com/budwk/app/sys/controller/SysSignatureController.class differ
diff --git a/target/classes/com/budwk/app/sys/controller/v4/SysV4MsgController.class b/target/classes/com/budwk/app/sys/controller/v4/SysV4MsgController.class
index ee1b086..3b7d4c3 100644
Binary files a/target/classes/com/budwk/app/sys/controller/v4/SysV4MsgController.class and b/target/classes/com/budwk/app/sys/controller/v4/SysV4MsgController.class differ
diff --git a/target/classes/com/budwk/app/zhgh/activity/family/controller/manage/FamilyActivityApplyController.class b/target/classes/com/budwk/app/zhgh/activity/family/controller/manage/FamilyActivityApplyController.class
index 6e12f8b..8cc2ef2 100644
Binary files a/target/classes/com/budwk/app/zhgh/activity/family/controller/manage/FamilyActivityApplyController.class and b/target/classes/com/budwk/app/zhgh/activity/family/controller/manage/FamilyActivityApplyController.class differ
diff --git a/target/classes/com/budwk/app/zhgh/activity/sports/h5Controller/H5ActivitySportsApplyUserController.class b/target/classes/com/budwk/app/zhgh/activity/sports/h5Controller/H5ActivitySportsApplyUserController.class
index 3812b31..49b7a81 100644
Binary files a/target/classes/com/budwk/app/zhgh/activity/sports/h5Controller/H5ActivitySportsApplyUserController.class and b/target/classes/com/budwk/app/zhgh/activity/sports/h5Controller/H5ActivitySportsApplyUserController.class differ
diff --git a/target/classes/com/budwk/app/zhgh/activity/sports/param/ActivitySportsApplyUserPageParam.class b/target/classes/com/budwk/app/zhgh/activity/sports/param/ActivitySportsApplyUserPageParam.class
index 1ef64a4..0278f36 100644
Binary files a/target/classes/com/budwk/app/zhgh/activity/sports/param/ActivitySportsApplyUserPageParam.class and b/target/classes/com/budwk/app/zhgh/activity/sports/param/ActivitySportsApplyUserPageParam.class differ
diff --git a/target/classes/com/budwk/app/zhgh/activity/sports/service/ActivitySportsApplyUserService.class b/target/classes/com/budwk/app/zhgh/activity/sports/service/ActivitySportsApplyUserService.class
index c5c8620..e9b80b3 100644
Binary files a/target/classes/com/budwk/app/zhgh/activity/sports/service/ActivitySportsApplyUserService.class and b/target/classes/com/budwk/app/zhgh/activity/sports/service/ActivitySportsApplyUserService.class differ
diff --git a/target/classes/com/budwk/app/zhgh/activity/sports/service/impl/ActivitySportsApplyUserServiceImpl.class b/target/classes/com/budwk/app/zhgh/activity/sports/service/impl/ActivitySportsApplyUserServiceImpl.class
index af3caab..4ce7204 100644
Binary files a/target/classes/com/budwk/app/zhgh/activity/sports/service/impl/ActivitySportsApplyUserServiceImpl.class and b/target/classes/com/budwk/app/zhgh/activity/sports/service/impl/ActivitySportsApplyUserServiceImpl.class differ
diff --git a/target/classes/com/budwk/app/zhgh/activity/trainSignUp/controller/manage/TrainSignUpApplyController.class b/target/classes/com/budwk/app/zhgh/activity/trainSignUp/controller/manage/TrainSignUpApplyController.class
index d8f932e..c155750 100644
Binary files a/target/classes/com/budwk/app/zhgh/activity/trainSignUp/controller/manage/TrainSignUpApplyController.class and b/target/classes/com/budwk/app/zhgh/activity/trainSignUp/controller/manage/TrainSignUpApplyController.class differ
diff --git a/target/classes/com/budwk/app/zhgh/dayofficework/birthdayWishes/task/BirthdayWishesTask.class b/target/classes/com/budwk/app/zhgh/dayofficework/birthdayWishes/task/BirthdayWishesTask.class
index 6623a1d..395f3e2 100644
Binary files a/target/classes/com/budwk/app/zhgh/dayofficework/birthdayWishes/task/BirthdayWishesTask.class and b/target/classes/com/budwk/app/zhgh/dayofficework/birthdayWishes/task/BirthdayWishesTask.class differ
diff --git a/target/classes/com/budwk/app/zhgh/democratic/proposal/controller/transact/ProposalCaseCheckController.class b/target/classes/com/budwk/app/zhgh/democratic/proposal/controller/transact/ProposalCaseCheckController.class
index 55f8886..0dfc8b7 100644
Binary files a/target/classes/com/budwk/app/zhgh/democratic/proposal/controller/transact/ProposalCaseCheckController.class and b/target/classes/com/budwk/app/zhgh/democratic/proposal/controller/transact/ProposalCaseCheckController.class differ
diff --git a/target/classes/com/budwk/app/zhgh/democratic/proposal/controller/transact/ProposalCommissionerController.class b/target/classes/com/budwk/app/zhgh/democratic/proposal/controller/transact/ProposalCommissionerController.class
index b05d94a..40c5706 100644
Binary files a/target/classes/com/budwk/app/zhgh/democratic/proposal/controller/transact/ProposalCommissionerController.class and b/target/classes/com/budwk/app/zhgh/democratic/proposal/controller/transact/ProposalCommissionerController.class differ
diff --git a/target/classes/com/budwk/app/zhgh/democratic/proposal/controller/transact/ProposalDelegationController.class b/target/classes/com/budwk/app/zhgh/democratic/proposal/controller/transact/ProposalDelegationController.class
index d480fe2..fee647b 100644
Binary files a/target/classes/com/budwk/app/zhgh/democratic/proposal/controller/transact/ProposalDelegationController.class and b/target/classes/com/budwk/app/zhgh/democratic/proposal/controller/transact/ProposalDelegationController.class differ
diff --git a/target/classes/com/budwk/app/zhgh/democratic/proposal/controller/transact/ProposalFeedbackEvaluationController.class b/target/classes/com/budwk/app/zhgh/democratic/proposal/controller/transact/ProposalFeedbackEvaluationController.class
index a97b0ce..3357f16 100644
Binary files a/target/classes/com/budwk/app/zhgh/democratic/proposal/controller/transact/ProposalFeedbackEvaluationController.class and b/target/classes/com/budwk/app/zhgh/democratic/proposal/controller/transact/ProposalFeedbackEvaluationController.class differ
diff --git a/target/classes/com/budwk/app/zhgh/democratic/proposal/controller/transact/ProposalPreAuditController.class b/target/classes/com/budwk/app/zhgh/democratic/proposal/controller/transact/ProposalPreAuditController.class
index b26ef63..8ea6ee3 100644
Binary files a/target/classes/com/budwk/app/zhgh/democratic/proposal/controller/transact/ProposalPreAuditController.class and b/target/classes/com/budwk/app/zhgh/democratic/proposal/controller/transact/ProposalPreAuditController.class differ
diff --git a/target/classes/com/budwk/app/zhgh/democratic/proposal/controller/transact/ProposalSchoolLeaderApprovalController.class b/target/classes/com/budwk/app/zhgh/democratic/proposal/controller/transact/ProposalSchoolLeaderApprovalController.class
index 5eb7645..647245a 100644
Binary files a/target/classes/com/budwk/app/zhgh/democratic/proposal/controller/transact/ProposalSchoolLeaderApprovalController.class and b/target/classes/com/budwk/app/zhgh/democratic/proposal/controller/transact/ProposalSchoolLeaderApprovalController.class differ
diff --git a/target/classes/com/budwk/app/zhgh/learning/controller/LearningCourseDisplayController.class b/target/classes/com/budwk/app/zhgh/learning/controller/LearningCourseDisplayController.class
index c7bac07..9878b14 100644
Binary files a/target/classes/com/budwk/app/zhgh/learning/controller/LearningCourseDisplayController.class and b/target/classes/com/budwk/app/zhgh/learning/controller/LearningCourseDisplayController.class differ
diff --git a/target/classes/com/budwk/app/zhgh/spread/controller/SpreadCategoryController.class b/target/classes/com/budwk/app/zhgh/spread/controller/SpreadCategoryController.class
new file mode 100644
index 0000000..0a1563e
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/spread/controller/SpreadCategoryController.class differ
diff --git a/target/classes/com/budwk/app/zhgh/spread/controller/SpreadCreationController.class b/target/classes/com/budwk/app/zhgh/spread/controller/SpreadCreationController.class
new file mode 100644
index 0000000..73c6f2e
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/spread/controller/SpreadCreationController.class differ
diff --git a/target/classes/com/budwk/app/zhgh/spread/controller/SpreadDisplayController.class b/target/classes/com/budwk/app/zhgh/spread/controller/SpreadDisplayController.class
new file mode 100644
index 0000000..1e44786
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/spread/controller/SpreadDisplayController.class differ
diff --git a/target/classes/com/budwk/app/zhgh/spread/controller/SpreadManageController.class b/target/classes/com/budwk/app/zhgh/spread/controller/SpreadManageController.class
new file mode 100644
index 0000000..2ff0698
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/spread/controller/SpreadManageController.class differ
diff --git a/target/classes/com/budwk/app/zhgh/spread/controller/SpreadStatisticsController.class b/target/classes/com/budwk/app/zhgh/spread/controller/SpreadStatisticsController.class
new file mode 100644
index 0000000..51d77cd
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/spread/controller/SpreadStatisticsController.class differ
diff --git a/target/classes/com/budwk/app/zhgh/spread/h5controller/H5SpreadDisplayController.class b/target/classes/com/budwk/app/zhgh/spread/h5controller/H5SpreadDisplayController.class
new file mode 100644
index 0000000..f587ec2
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/spread/h5controller/H5SpreadDisplayController.class differ
diff --git a/target/classes/com/budwk/app/zhgh/spread/models/SpreadCategory.class b/target/classes/com/budwk/app/zhgh/spread/models/SpreadCategory.class
new file mode 100644
index 0000000..e2ec1f3
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/spread/models/SpreadCategory.class differ
diff --git a/target/classes/com/budwk/app/zhgh/spread/models/SpreadContent.class b/target/classes/com/budwk/app/zhgh/spread/models/SpreadContent.class
new file mode 100644
index 0000000..085b1b4
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/spread/models/SpreadContent.class differ
diff --git a/target/classes/com/budwk/app/zhgh/spread/param/SpreadContentQuery.class b/target/classes/com/budwk/app/zhgh/spread/param/SpreadContentQuery.class
new file mode 100644
index 0000000..f8e8b6e
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/spread/param/SpreadContentQuery.class differ
diff --git a/target/classes/com/budwk/app/zhgh/spread/param/SpreadStatisticsQuery.class b/target/classes/com/budwk/app/zhgh/spread/param/SpreadStatisticsQuery.class
new file mode 100644
index 0000000..8749462
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/spread/param/SpreadStatisticsQuery.class differ
diff --git a/target/classes/com/budwk/app/zhgh/spread/service/SpreadCategoryService.class b/target/classes/com/budwk/app/zhgh/spread/service/SpreadCategoryService.class
new file mode 100644
index 0000000..f337434
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/spread/service/SpreadCategoryService.class differ
diff --git a/target/classes/com/budwk/app/zhgh/spread/service/SpreadContentService.class b/target/classes/com/budwk/app/zhgh/spread/service/SpreadContentService.class
new file mode 100644
index 0000000..416473c
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/spread/service/SpreadContentService.class differ
diff --git a/target/classes/com/budwk/app/zhgh/spread/service/SpreadStatisticsService.class b/target/classes/com/budwk/app/zhgh/spread/service/SpreadStatisticsService.class
new file mode 100644
index 0000000..ba4ba78
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/spread/service/SpreadStatisticsService.class differ
diff --git a/target/classes/com/budwk/app/zhgh/spread/service/impl/SpreadCategoryServiceImpl.class b/target/classes/com/budwk/app/zhgh/spread/service/impl/SpreadCategoryServiceImpl.class
new file mode 100644
index 0000000..adad041
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/spread/service/impl/SpreadCategoryServiceImpl.class differ
diff --git a/target/classes/com/budwk/app/zhgh/spread/service/impl/SpreadContentServiceImpl.class b/target/classes/com/budwk/app/zhgh/spread/service/impl/SpreadContentServiceImpl.class
new file mode 100644
index 0000000..96184d8
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/spread/service/impl/SpreadContentServiceImpl.class differ
diff --git a/target/classes/com/budwk/app/zhgh/spread/service/impl/SpreadStatisticsServiceImpl.class b/target/classes/com/budwk/app/zhgh/spread/service/impl/SpreadStatisticsServiceImpl.class
new file mode 100644
index 0000000..5a1089c
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/spread/service/impl/SpreadStatisticsServiceImpl.class differ
diff --git a/target/classes/com/budwk/app/zhgh/staffmanage/birthday/controller/UserBirthdayManageController.class b/target/classes/com/budwk/app/zhgh/staffmanage/birthday/controller/UserBirthdayManageController.class
new file mode 100644
index 0000000..707d94e
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/staffmanage/birthday/controller/UserBirthdayManageController.class differ
diff --git a/target/classes/com/budwk/app/zhgh/staffmanage/birthday/controller/UserBirthdayMsgLogController.class b/target/classes/com/budwk/app/zhgh/staffmanage/birthday/controller/UserBirthdayMsgLogController.class
new file mode 100644
index 0000000..a9af858
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/staffmanage/birthday/controller/UserBirthdayMsgLogController.class differ
diff --git a/target/classes/com/budwk/app/zhgh/staffmanage/birthday/models/UserBirthdayConfig.class b/target/classes/com/budwk/app/zhgh/staffmanage/birthday/models/UserBirthdayConfig.class
new file mode 100644
index 0000000..5150552
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/staffmanage/birthday/models/UserBirthdayConfig.class differ
diff --git a/target/classes/com/budwk/app/zhgh/staffmanage/birthday/models/UserBirthdayMsgLog.class b/target/classes/com/budwk/app/zhgh/staffmanage/birthday/models/UserBirthdayMsgLog.class
new file mode 100644
index 0000000..8ea3f29
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/staffmanage/birthday/models/UserBirthdayMsgLog.class differ
diff --git a/target/classes/com/budwk/app/zhgh/staffmanage/birthday/param/UserBirthdayMsgLogPageForm.class b/target/classes/com/budwk/app/zhgh/staffmanage/birthday/param/UserBirthdayMsgLogPageForm.class
new file mode 100644
index 0000000..80abfbb
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/staffmanage/birthday/param/UserBirthdayMsgLogPageForm.class differ
diff --git a/target/classes/com/budwk/app/zhgh/staffmanage/birthday/param/UserBirthdayPageForm.class b/target/classes/com/budwk/app/zhgh/staffmanage/birthday/param/UserBirthdayPageForm.class
new file mode 100644
index 0000000..3096123
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/staffmanage/birthday/param/UserBirthdayPageForm.class differ
diff --git a/target/classes/com/budwk/app/zhgh/staffmanage/birthday/param/UserBirthdaySendMsgForm.class b/target/classes/com/budwk/app/zhgh/staffmanage/birthday/param/UserBirthdaySendMsgForm.class
new file mode 100644
index 0000000..4ac2729
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/staffmanage/birthday/param/UserBirthdaySendMsgForm.class differ
diff --git a/target/classes/com/budwk/app/zhgh/staffmanage/birthday/service/UserBirthdayMsgLogService.class b/target/classes/com/budwk/app/zhgh/staffmanage/birthday/service/UserBirthdayMsgLogService.class
new file mode 100644
index 0000000..3f5d490
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/staffmanage/birthday/service/UserBirthdayMsgLogService.class differ
diff --git a/target/classes/com/budwk/app/zhgh/staffmanage/birthday/service/UserBirthdayService.class b/target/classes/com/budwk/app/zhgh/staffmanage/birthday/service/UserBirthdayService.class
new file mode 100644
index 0000000..de74f90
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/staffmanage/birthday/service/UserBirthdayService.class differ
diff --git a/target/classes/com/budwk/app/zhgh/staffmanage/birthday/service/impl/UserBirthdayMsgLogServiceImpl.class b/target/classes/com/budwk/app/zhgh/staffmanage/birthday/service/impl/UserBirthdayMsgLogServiceImpl.class
new file mode 100644
index 0000000..4581771
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/staffmanage/birthday/service/impl/UserBirthdayMsgLogServiceImpl.class differ
diff --git a/target/classes/com/budwk/app/zhgh/staffmanage/birthday/service/impl/UserBirthdayServiceImpl.class b/target/classes/com/budwk/app/zhgh/staffmanage/birthday/service/impl/UserBirthdayServiceImpl.class
new file mode 100644
index 0000000..64ad8e4
Binary files /dev/null and b/target/classes/com/budwk/app/zhgh/staffmanage/birthday/service/impl/UserBirthdayServiceImpl.class differ
diff --git a/target/classes/com/budwk/app/zhgh/welfare/controller/WelfareMineController.class b/target/classes/com/budwk/app/zhgh/welfare/controller/WelfareMineController.class
index 00d33ff..d2c4667 100644
Binary files a/target/classes/com/budwk/app/zhgh/welfare/controller/WelfareMineController.class and b/target/classes/com/budwk/app/zhgh/welfare/controller/WelfareMineController.class differ
diff --git a/target/classes/com/budwk/app/zhgh/welfare/controller/WelfareUserSelectController.class b/target/classes/com/budwk/app/zhgh/welfare/controller/WelfareUserSelectController.class
index e671c0e..849f7c6 100644
Binary files a/target/classes/com/budwk/app/zhgh/welfare/controller/WelfareUserSelectController.class and b/target/classes/com/budwk/app/zhgh/welfare/controller/WelfareUserSelectController.class differ
diff --git a/target/classes/db/menu/init_spread_menu.sql b/target/classes/db/menu/init_spread_menu.sql
new file mode 100644
index 0000000..26b5259
--- /dev/null
+++ b/target/classes/db/menu/init_spread_menu.sql
@@ -0,0 +1,79 @@
+-- 风采墙电脑端菜单。使用 permission 做幂等判断,脚本可重复执行。
+INSERT INTO sys_menu (id, parentId, path, name, aliasName, type, href, target, icon, showit, disabled, permission, note, location, hasChildren, createdBy, createdAt, updatedBy, updatedAt, delFlag, platform, moduleId, picIcon, initialPinyinName, isRecommendApp, isRecommendService)
+SELECT
+ '9f5c0200000000000000000000000001',
+ '',
+ LPAD(IFNULL(MAX(CAST(path AS UNSIGNED)), 0) + 1, 4, '0'),
+ '风采墙',
+ 'Style Wall',
+ 'menu',
+ '',
+ '',
+ 'ti-medall',
+ 1,
+ 0,
+ 'spread',
+ NULL,
+ 992,
+ 1,
+ '',
+ UNIX_TIMESTAMP(NOW()) * 1000,
+ '',
+ UNIX_TIMESTAMP(NOW()) * 1000,
+ 0,
+ 'PC',
+ NULL,
+ NULL,
+ 'f',
+ 0,
+ 0
+FROM sys_menu
+WHERE (parentId = '' OR parentId IS NULL)
+ AND CHAR_LENGTH(path) = 4
+HAVING NOT EXISTS (SELECT 1 FROM (SELECT id FROM sys_menu WHERE permission = 'spread') t);
+
+INSERT INTO sys_menu (id, parentId, path, name, aliasName, type, href, target, icon, showit, disabled, permission, note, location, hasChildren, createdBy, createdAt, updatedBy, updatedAt, delFlag, platform, moduleId, picIcon, initialPinyinName, isRecommendApp, isRecommendService)
+SELECT '9f5c0200000000000000000000000002', p.id, CONCAT(p.path, '0001'), '风采展示', 'Style Display', 'menu', '/platform/spread/display', 'data-pjax', '', 1, 0, 'spread.display', NULL, 1, 0, '', UNIX_TIMESTAMP(NOW()) * 1000, '', UNIX_TIMESTAMP(NOW()) * 1000, 0, 'PC', NULL, NULL, 'f', 0, 0
+FROM sys_menu p
+WHERE p.permission = 'spread'
+ AND NOT EXISTS (SELECT 1 FROM (SELECT id FROM sys_menu WHERE permission = 'spread.display') t);
+
+INSERT INTO sys_menu (id, parentId, path, name, aliasName, type, href, target, icon, showit, disabled, permission, note, location, hasChildren, createdBy, createdAt, updatedBy, updatedAt, delFlag, platform, moduleId, picIcon, initialPinyinName, isRecommendApp, isRecommendService)
+SELECT '9f5c0200000000000000000000000003', p.id, CONCAT(p.path, '0002'), '内容发布', 'Content Creation', 'menu', '/platform/spread/creation', 'data-pjax', '', 1, 0, 'spread.creation', NULL, 2, 0, '', UNIX_TIMESTAMP(NOW()) * 1000, '', UNIX_TIMESTAMP(NOW()) * 1000, 0, 'PC', NULL, NULL, 'n', 0, 0
+FROM sys_menu p
+WHERE p.permission = 'spread'
+ AND NOT EXISTS (SELECT 1 FROM (SELECT id FROM sys_menu WHERE permission = 'spread.creation') t);
+
+INSERT INTO sys_menu (id, parentId, path, name, aliasName, type, href, target, icon, showit, disabled, permission, note, location, hasChildren, createdBy, createdAt, updatedBy, updatedAt, delFlag, platform, moduleId, picIcon, initialPinyinName, isRecommendApp, isRecommendService)
+SELECT '9f5c0200000000000000000000000004', p.id, CONCAT(p.path, '0003'), '内容管理', 'Content Manage', 'menu', '/platform/spread/manage', 'data-pjax', '', 1, 0, 'spread.manage', NULL, 3, 0, '', UNIX_TIMESTAMP(NOW()) * 1000, '', UNIX_TIMESTAMP(NOW()) * 1000, 0, 'PC', NULL, NULL, 'n', 0, 0
+FROM sys_menu p
+WHERE p.permission = 'spread'
+ AND NOT EXISTS (SELECT 1 FROM (SELECT id FROM sys_menu WHERE permission = 'spread.manage') t);
+
+INSERT INTO sys_menu (id, parentId, path, name, aliasName, type, href, target, icon, showit, disabled, permission, note, location, hasChildren, createdBy, createdAt, updatedBy, updatedAt, delFlag, platform, moduleId, picIcon, initialPinyinName, isRecommendApp, isRecommendService)
+SELECT '9f5c0200000000000000000000000005', p.id, CONCAT(p.path, '0004'), '栏目管理', 'Category Manage', 'menu', '/platform/spread/category', 'data-pjax', '', 1, 0, 'spread.category', NULL, 4, 0, '', UNIX_TIMESTAMP(NOW()) * 1000, '', UNIX_TIMESTAMP(NOW()) * 1000, 0, 'PC', NULL, NULL, 'l', 0, 0
+FROM sys_menu p
+WHERE p.permission = 'spread'
+ AND NOT EXISTS (SELECT 1 FROM (SELECT id FROM sys_menu WHERE permission = 'spread.category') t);
+
+INSERT INTO sys_menu (id, parentId, path, name, aliasName, type, href, target, icon, showit, disabled, permission, note, location, hasChildren, createdBy, createdAt, updatedBy, updatedAt, delFlag, platform, moduleId, picIcon, initialPinyinName, isRecommendApp, isRecommendService)
+SELECT '9f5c0200000000000000000000000006', p.id, CONCAT(p.path, '0005'), '统计分析', 'Statistics', 'menu', '/platform/spread/statistics', 'data-pjax', '', 1, 0, 'spread.statistics', NULL, 5, 0, '', UNIX_TIMESTAMP(NOW()) * 1000, '', UNIX_TIMESTAMP(NOW()) * 1000, 0, 'PC', NULL, NULL, 't', 0, 0
+FROM sys_menu p
+WHERE p.permission = 'spread'
+ AND NOT EXISTS (SELECT 1 FROM (SELECT id FROM sys_menu WHERE permission = 'spread.statistics') t);
+
+-- 系统管理员默认拥有风采墙全部权限,其他角色可在角色管理中按需分配。
+INSERT INTO sys_role_menu (roleId, menuId)
+SELECT r.id, m.id
+FROM sys_role r
+JOIN sys_menu m ON m.permission IN (
+ 'spread',
+ 'spread.display',
+ 'spread.creation',
+ 'spread.manage',
+ 'spread.category',
+ 'spread.statistics'
+)
+LEFT JOIN sys_role_menu rm ON rm.roleId = r.id AND rm.menuId = m.id
+WHERE r.code = 'SYSADMIN'
+ AND rm.roleId IS NULL;
diff --git a/target/classes/db/menu/update_sys_menu_pic_icons_flat_skeuomorphic_blue_minio.sql b/target/classes/db/menu/update_sys_menu_pic_icons_flat_skeuomorphic_blue_minio.sql
new file mode 100644
index 0000000..5912140
--- /dev/null
+++ b/target/classes/db/menu/update_sys_menu_pic_icons_flat_skeuomorphic_blue_minio.sql
@@ -0,0 +1,479 @@
+-- 工会系统H5全新扁平拟物化菜单图标MinIO文件记录及菜单图标更新脚本
+-- 图标对象目录: menu-icons/v5-flat-skeuomorphic-blue/
+SET NAMES utf8mb4;
+START TRANSACTION;
+
+INSERT INTO `sys_file` (`id`, `engine`, `bucket`, `name`, `suffix`, `sizeKb`, `sizeInfo`, `objName`, `storagePath`, `downloadPath`, `thumbnail`, `extJson`, `createdBy`, `createdAt`, `updatedBy`, `updatedAt`, `delFlag`) VALUES
+('d4239ab512e02e319bde38b07d4776a0', 'MINIO', 'cug', '001_教代会管理_2e6f3930.png', 'png', '37', '36.8 kB', 'd4239ab512e02e319bde38b07d4776a0.png', '/menu-icons/v5-flat-skeuomorphic-blue/d4239ab512e02e319bde38b07d4776a0.png', '/platform/sys/file/download?id=d4239ab512e02e319bde38b07d4776a0', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('50988a1ded823d35c0d854afb2692b57', 'MINIO', 'cug', '002_子女信息管理_64ace209.png', 'png', '41', '40.8 kB', '50988a1ded823d35c0d854afb2692b57.png', '/menu-icons/v5-flat-skeuomorphic-blue/50988a1ded823d35c0d854afb2692b57.png', '/platform/sys/file/download?id=50988a1ded823d35c0d854afb2692b57', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('8a67dd727502fecf8855e4e913cf8e1e', 'MINIO', 'cug', '003_信息填写_eb18aa57.png', 'png', '39', '39.1 kB', '8a67dd727502fecf8855e4e913cf8e1e.png', '/menu-icons/v5-flat-skeuomorphic-blue/8a67dd727502fecf8855e4e913cf8e1e.png', '/platform/sys/file/download?id=8a67dd727502fecf8855e4e913cf8e1e', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('59955c44f86d8d0f45fd8f3e0d614612', 'MINIO', 'cug', '004_我的子女_835cb68e.png', 'png', '39', '38.8 kB', '59955c44f86d8d0f45fd8f3e0d614612.png', '/menu-icons/v5-flat-skeuomorphic-blue/59955c44f86d8d0f45fd8f3e0d614612.png', '/platform/sys/file/download?id=59955c44f86d8d0f45fd8f3e0d614612', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('d2f23637ecfd8f39cb46c25876223eeb', 'MINIO', 'cug', '005_信息管理_10ebaa5b.png', 'png', '39', '38.6 kB', 'd2f23637ecfd8f39cb46c25876223eeb.png', '/menu-icons/v5-flat-skeuomorphic-blue/d2f23637ecfd8f39cb46c25876223eeb.png', '/platform/sys/file/download?id=d2f23637ecfd8f39cb46c25876223eeb', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('9a7df21c6bd1f87d9eda769f00b40d89', 'MINIO', 'cug', '006_子女入学_e7cf2f56.png', 'png', '48', '48.2 kB', '9a7df21c6bd1f87d9eda769f00b40d89.png', '/menu-icons/v5-flat-skeuomorphic-blue/9a7df21c6bd1f87d9eda769f00b40d89.png', '/platform/sys/file/download?id=9a7df21c6bd1f87d9eda769f00b40d89', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('b41ca4fa2c2462254bb6d7efffc285a4', 'MINIO', 'cug', '007_入学申报_40a293cc.png', 'png', '39', '39.5 kB', 'b41ca4fa2c2462254bb6d7efffc285a4.png', '/menu-icons/v5-flat-skeuomorphic-blue/b41ca4fa2c2462254bb6d7efffc285a4.png', '/platform/sys/file/download?id=b41ca4fa2c2462254bb6d7efffc285a4', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('3b0245e70916a36073e0fef16f2e1f32', 'MINIO', 'cug', '008_我的申报_2666d0ae.png', 'png', '34', '33.5 kB', '3b0245e70916a36073e0fef16f2e1f32.png', '/menu-icons/v5-flat-skeuomorphic-blue/3b0245e70916a36073e0fef16f2e1f32.png', '/platform/sys/file/download?id=3b0245e70916a36073e0fef16f2e1f32', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('202d0ae8211611a6947ff7caecbe7e2b', 'MINIO', 'cug', '009_分工会审核_ea574347.png', 'png', '40', '39.5 kB', '202d0ae8211611a6947ff7caecbe7e2b.png', '/menu-icons/v5-flat-skeuomorphic-blue/202d0ae8211611a6947ff7caecbe7e2b.png', '/platform/sys/file/download?id=202d0ae8211611a6947ff7caecbe7e2b', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('4e2070b1c0908d460dbf67f01818d29c', 'MINIO', 'cug', '010_校工会审核_9441d18c.png', 'png', '40', '39.7 kB', '4e2070b1c0908d460dbf67f01818d29c.png', '/menu-icons/v5-flat-skeuomorphic-blue/4e2070b1c0908d460dbf67f01818d29c.png', '/platform/sys/file/download?id=4e2070b1c0908d460dbf67f01818d29c', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('7b10699834f961eda7a12df20a6e1ce7', 'MINIO', 'cug', '011_教代会_44a59a2b.png', 'png', '39', '39.3 kB', '7b10699834f961eda7a12df20a6e1ce7.png', '/menu-icons/v5-flat-skeuomorphic-blue/7b10699834f961eda7a12df20a6e1ce7.png', '/platform/sys/file/download?id=7b10699834f961eda7a12df20a6e1ce7', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('662b152a6a5d2b7b694a4076cdd218e3', 'MINIO', 'cug', '012_代表阅览_1c2aee7d.png', 'png', '45', '45.0 kB', '662b152a6a5d2b7b694a4076cdd218e3.png', '/menu-icons/v5-flat-skeuomorphic-blue/662b152a6a5d2b7b694a4076cdd218e3.png', '/platform/sys/file/download?id=662b152a6a5d2b7b694a4076cdd218e3', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('39325d6ef536fa6413c6a9e2edb98425', 'MINIO', 'cug', '013_提案管理_11db6856.png', 'png', '41', '41.1 kB', '39325d6ef536fa6413c6a9e2edb98425.png', '/menu-icons/v5-flat-skeuomorphic-blue/39325d6ef536fa6413c6a9e2edb98425.png', '/platform/sys/file/download?id=39325d6ef536fa6413c6a9e2edb98425', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('4084d4436cbfa13f84a9dca9177ce6ab', 'MINIO', 'cug', '014_撰写提案_d5d7964e.png', 'png', '41', '40.8 kB', '4084d4436cbfa13f84a9dca9177ce6ab.png', '/menu-icons/v5-flat-skeuomorphic-blue/4084d4436cbfa13f84a9dca9177ce6ab.png', '/platform/sys/file/download?id=4084d4436cbfa13f84a9dca9177ce6ab', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('7339d3c16569a5c925794378a300fa9e', 'MINIO', 'cug', '015_我的提案_c4411525.png', 'png', '41', '41.2 kB', '7339d3c16569a5c925794378a300fa9e.png', '/menu-icons/v5-flat-skeuomorphic-blue/7339d3c16569a5c925794378a300fa9e.png', '/platform/sys/file/download?id=7339d3c16569a5c925794378a300fa9e', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('99eca55c6eea6eb0451aeb4fdcdd0942', 'MINIO', 'cug', '016_提案附议_eb4ed857.png', 'png', '47', '46.7 kB', '99eca55c6eea6eb0451aeb4fdcdd0942.png', '/menu-icons/v5-flat-skeuomorphic-blue/99eca55c6eea6eb0451aeb4fdcdd0942.png', '/platform/sys/file/download?id=99eca55c6eea6eb0451aeb4fdcdd0942', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('0532afa3620e20113505b03755959ee0', 'MINIO', 'cug', '017_团长审核_c4b99724.png', 'png', '40', '39.7 kB', '0532afa3620e20113505b03755959ee0.png', '/menu-icons/v5-flat-skeuomorphic-blue/0532afa3620e20113505b03755959ee0.png', '/platform/sys/file/download?id=0532afa3620e20113505b03755959ee0', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('3d7c1a8b6778409f063cfd5197649d99', 'MINIO', 'cug', '018_承办单位答复_56835d07.png', 'png', '40', '40.3 kB', '3d7c1a8b6778409f063cfd5197649d99.png', '/menu-icons/v5-flat-skeuomorphic-blue/3d7c1a8b6778409f063cfd5197649d99.png', '/platform/sys/file/download?id=3d7c1a8b6778409f063cfd5197649d99', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('7cd72e99031df0c21431ad64d0ac72a8', 'MINIO', 'cug', '019_分管校领导审批_304278a0.png', 'png', '40', '40.2 kB', '7cd72e99031df0c21431ad64d0ac72a8.png', '/menu-icons/v5-flat-skeuomorphic-blue/7cd72e99031df0c21431ad64d0ac72a8.png', '/platform/sys/file/download?id=7cd72e99031df0c21431ad64d0ac72a8', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('d2a477739ecf817c425e3113d66b0a01', 'MINIO', 'cug', '020_反馈评价_2b9b7227.png', 'png', '40', '40.2 kB', 'd2a477739ecf817c425e3113d66b0a01.png', '/menu-icons/v5-flat-skeuomorphic-blue/d2a477739ecf817c425e3113d66b0a01.png', '/platform/sys/file/download?id=d2a477739ecf817c425e3113d66b0a01', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('d608ed7f50b2fda7c9228372ba8012b0', 'MINIO', 'cug', '021_提案管理_ff182281.png', 'png', '41', '41.1 kB', 'd608ed7f50b2fda7c9228372ba8012b0.png', '/menu-icons/v5-flat-skeuomorphic-blue/d608ed7f50b2fda7c9228372ba8012b0.png', '/platform/sys/file/download?id=d608ed7f50b2fda7c9228372ba8012b0', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('2b16431101b09760db12387a3714d3c6', 'MINIO', 'cug', '022_承办单位意见_7c79171d.png', 'png', '40', '40.3 kB', '2b16431101b09760db12387a3714d3c6.png', '/menu-icons/v5-flat-skeuomorphic-blue/2b16431101b09760db12387a3714d3c6.png', '/platform/sys/file/download?id=2b16431101b09760db12387a3714d3c6', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('e0d5aa775264eae8d49114a8f3bf82e9', 'MINIO', 'cug', '023_费用报销管理_32a51579.png', 'png', '39', '39.0 kB', 'e0d5aa775264eae8d49114a8f3bf82e9.png', '/menu-icons/v5-flat-skeuomorphic-blue/e0d5aa775264eae8d49114a8f3bf82e9.png', '/platform/sys/file/download?id=e0d5aa775264eae8d49114a8f3bf82e9', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('1fda43541284c86b8d5f406ee5ebf1e0', 'MINIO', 'cug', '024_报销申请_6bdef282.png', 'png', '45', '44.8 kB', '1fda43541284c86b8d5f406ee5ebf1e0.png', '/menu-icons/v5-flat-skeuomorphic-blue/1fda43541284c86b8d5f406ee5ebf1e0.png', '/platform/sys/file/download?id=1fda43541284c86b8d5f406ee5ebf1e0', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('f9b7a26ef993a9808b09c67f73d2d296', 'MINIO', 'cug', '025_撰写提案_eeaf3366.png', 'png', '41', '40.8 kB', 'f9b7a26ef993a9808b09c67f73d2d296.png', '/menu-icons/v5-flat-skeuomorphic-blue/f9b7a26ef993a9808b09c67f73d2d296.png', '/platform/sys/file/download?id=f9b7a26ef993a9808b09c67f73d2d296', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('b83956a3a3162f17513333e8dfe91f49', 'MINIO', 'cug', '026_我的申请_b27178ff.png', 'png', '42', '41.8 kB', 'b83956a3a3162f17513333e8dfe91f49.png', '/menu-icons/v5-flat-skeuomorphic-blue/b83956a3a3162f17513333e8dfe91f49.png', '/platform/sys/file/download?id=b83956a3a3162f17513333e8dfe91f49', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('969f3bc275bbd917b3e3444752d9de38', 'MINIO', 'cug', '027_社团审核_87611b6d.png', 'png', '39', '39.5 kB', '969f3bc275bbd917b3e3444752d9de38.png', '/menu-icons/v5-flat-skeuomorphic-blue/969f3bc275bbd917b3e3444752d9de38.png', '/platform/sys/file/download?id=969f3bc275bbd917b3e3444752d9de38', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('d54945a79bce326c126a17ffa7dedd86', 'MINIO', 'cug', '028_社团分管主席审核_d0ee5ab9.png', 'png', '39', '38.7 kB', 'd54945a79bce326c126a17ffa7dedd86.png', '/menu-icons/v5-flat-skeuomorphic-blue/d54945a79bce326c126a17ffa7dedd86.png', '/platform/sys/file/download?id=d54945a79bce326c126a17ffa7dedd86', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('012f4e24cb99feeae830b9e5956f730a', 'MINIO', 'cug', '029_分工会审核_af963d19.png', 'png', '40', '39.5 kB', '012f4e24cb99feeae830b9e5956f730a.png', '/menu-icons/v5-flat-skeuomorphic-blue/012f4e24cb99feeae830b9e5956f730a.png', '/platform/sys/file/download?id=012f4e24cb99feeae830b9e5956f730a', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('71f1a5bdd53422a302d50565ed6d8ca7', 'MINIO', 'cug', '030_校工会出纳审核_f7a890c7.png', 'png', '40', '39.9 kB', '71f1a5bdd53422a302d50565ed6d8ca7.png', '/menu-icons/v5-flat-skeuomorphic-blue/71f1a5bdd53422a302d50565ed6d8ca7.png', '/platform/sys/file/download?id=71f1a5bdd53422a302d50565ed6d8ca7', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('01ac13ee1b86635f406704686b2826cb', 'MINIO', 'cug', '031_校工会会计审核_41410dbe.png', 'png', '40', '40.0 kB', '01ac13ee1b86635f406704686b2826cb.png', '/menu-icons/v5-flat-skeuomorphic-blue/01ac13ee1b86635f406704686b2826cb.png', '/platform/sys/file/download?id=01ac13ee1b86635f406704686b2826cb', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('ff390faffeed11c872ff43c268fc42c8', 'MINIO', 'cug', '032_校工会主席终审_5e0c5335.png', 'png', '40', '39.6 kB', 'ff390faffeed11c872ff43c268fc42c8.png', '/menu-icons/v5-flat-skeuomorphic-blue/ff390faffeed11c872ff43c268fc42c8.png', '/platform/sys/file/download?id=ff390faffeed11c872ff43c268fc42c8', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('b077d67b5add801672329f19deedef51', 'MINIO', 'cug', '033_社团组织管理_b8bcaa94.png', 'png', '54', '54.2 kB', 'b077d67b5add801672329f19deedef51.png', '/menu-icons/v5-flat-skeuomorphic-blue/b077d67b5add801672329f19deedef51.png', '/platform/sys/file/download?id=b077d67b5add801672329f19deedef51', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('0784cad3fc2147bafafc22cdb00b32b8', 'MINIO', 'cug', '034_社团入会_7af124e1.png', 'png', '44', '43.6 kB', '0784cad3fc2147bafafc22cdb00b32b8.png', '/menu-icons/v5-flat-skeuomorphic-blue/0784cad3fc2147bafafc22cdb00b32b8.png', '/platform/sys/file/download?id=0784cad3fc2147bafafc22cdb00b32b8', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('ca4ddf8871ab60754812c61781e3820a', 'MINIO', 'cug', '035_我的申请_2de433e4.png', 'png', '42', '41.8 kB', 'ca4ddf8871ab60754812c61781e3820a.png', '/menu-icons/v5-flat-skeuomorphic-blue/ca4ddf8871ab60754812c61781e3820a.png', '/platform/sys/file/download?id=ca4ddf8871ab60754812c61781e3820a', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('92251f17382d770a99d6399a9245fed2', 'MINIO', 'cug', '036_社团审核_84064805.png', 'png', '39', '39.5 kB', '92251f17382d770a99d6399a9245fed2.png', '/menu-icons/v5-flat-skeuomorphic-blue/92251f17382d770a99d6399a9245fed2.png', '/platform/sys/file/download?id=92251f17382d770a99d6399a9245fed2', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('9b5bf30597169d4b597ec15c64746589', 'MINIO', 'cug', '037_校工会审核_dbd21f6b.png', 'png', '40', '39.7 kB', '9b5bf30597169d4b597ec15c64746589.png', '/menu-icons/v5-flat-skeuomorphic-blue/9b5bf30597169d4b597ec15c64746589.png', '/platform/sys/file/download?id=9b5bf30597169d4b597ec15c64746589', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('bff0da0374934156eaf7008420281877', 'MINIO', 'cug', '038_我的社团_e585d2ca.png', 'png', '55', '54.9 kB', 'bff0da0374934156eaf7008420281877.png', '/menu-icons/v5-flat-skeuomorphic-blue/bff0da0374934156eaf7008420281877.png', '/platform/sys/file/download?id=bff0da0374934156eaf7008420281877', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('9ff5f7ccbf1584cc09c8b0b0b547907b', 'MINIO', 'cug', '039_会员管理_7e2b850c.png', 'png', '37', '37.2 kB', '9ff5f7ccbf1584cc09c8b0b0b547907b.png', '/menu-icons/v5-flat-skeuomorphic-blue/9ff5f7ccbf1584cc09c8b0b0b547907b.png', '/platform/sys/file/download?id=9ff5f7ccbf1584cc09c8b0b0b547907b', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('fe79030ce09863147010927ef79d4804', 'MINIO', 'cug', '040_会员入会_8f27ac9f.png', 'png', '45', '44.7 kB', 'fe79030ce09863147010927ef79d4804.png', '/menu-icons/v5-flat-skeuomorphic-blue/fe79030ce09863147010927ef79d4804.png', '/platform/sys/file/download?id=fe79030ce09863147010927ef79d4804', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('46ca54df1bb66aaec8d89be47ed888d9', 'MINIO', 'cug', '041_我的入会_313842fc.png', 'png', '49', '49.4 kB', '46ca54df1bb66aaec8d89be47ed888d9.png', '/menu-icons/v5-flat-skeuomorphic-blue/46ca54df1bb66aaec8d89be47ed888d9.png', '/platform/sys/file/download?id=46ca54df1bb66aaec8d89be47ed888d9', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('7650a2a028223ae8380c946d96551b56', 'MINIO', 'cug', '042_分工会审核_dcf6c190.png', 'png', '40', '39.5 kB', '7650a2a028223ae8380c946d96551b56.png', '/menu-icons/v5-flat-skeuomorphic-blue/7650a2a028223ae8380c946d96551b56.png', '/platform/sys/file/download?id=7650a2a028223ae8380c946d96551b56', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('128a3ca23138c341b259ef88521818c8', 'MINIO', 'cug', '043_校工会审核_13d50644.png', 'png', '40', '39.7 kB', '128a3ca23138c341b259ef88521818c8.png', '/menu-icons/v5-flat-skeuomorphic-blue/128a3ca23138c341b259ef88521818c8.png', '/platform/sys/file/download?id=128a3ca23138c341b259ef88521818c8', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('111f52a632d37ba3029d768a70e59426', 'MINIO', 'cug', '044_会员档案_c547be26.png', 'png', '35', '34.5 kB', '111f52a632d37ba3029d768a70e59426.png', '/menu-icons/v5-flat-skeuomorphic-blue/111f52a632d37ba3029d768a70e59426.png', '/platform/sys/file/download?id=111f52a632d37ba3029d768a70e59426', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('a5b94ab758eb078c51a68bd8b74d0b63', 'MINIO', 'cug', '045_数据看板_f3ae0a07.png', 'png', '42', '42.1 kB', 'a5b94ab758eb078c51a68bd8b74d0b63.png', '/menu-icons/v5-flat-skeuomorphic-blue/a5b94ab758eb078c51a68bd8b74d0b63.png', '/platform/sys/file/download?id=a5b94ab758eb078c51a68bd8b74d0b63', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('f56d0ebb12e367095873a4a2bafa362e', 'MINIO', 'cug', '046_工会小组审核_00448f69.png', 'png', '39', '39.1 kB', 'f56d0ebb12e367095873a4a2bafa362e.png', '/menu-icons/v5-flat-skeuomorphic-blue/f56d0ebb12e367095873a4a2bafa362e.png', '/platform/sys/file/download?id=f56d0ebb12e367095873a4a2bafa362e', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('e85273b4715e551e7a0be1e4c237e9db', 'MINIO', 'cug', '047_职工慰问_024811fd.png', 'png', '41', '41.3 kB', 'e85273b4715e551e7a0be1e4c237e9db.png', '/menu-icons/v5-flat-skeuomorphic-blue/e85273b4715e551e7a0be1e4c237e9db.png', '/platform/sys/file/download?id=e85273b4715e551e7a0be1e4c237e9db', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('e7d21d8058319281fc750720196338b3', 'MINIO', 'cug', '048_慰问申请_9bfd257e.png', 'png', '33', '33.0 kB', 'e7d21d8058319281fc750720196338b3.png', '/menu-icons/v5-flat-skeuomorphic-blue/e7d21d8058319281fc750720196338b3.png', '/platform/sys/file/download?id=e7d21d8058319281fc750720196338b3', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('e229c7c88be79c83cbb204273e1e837a', 'MINIO', 'cug', '049_我的申请_7492992b.png', 'png', '42', '41.8 kB', 'e229c7c88be79c83cbb204273e1e837a.png', '/menu-icons/v5-flat-skeuomorphic-blue/e229c7c88be79c83cbb204273e1e837a.png', '/platform/sys/file/download?id=e229c7c88be79c83cbb204273e1e837a', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('64e9baf4931fd5414ca105cbe6771346', 'MINIO', 'cug', '050_分工会审核_330e42e0.png', 'png', '40', '39.5 kB', '64e9baf4931fd5414ca105cbe6771346.png', '/menu-icons/v5-flat-skeuomorphic-blue/64e9baf4931fd5414ca105cbe6771346.png', '/platform/sys/file/download?id=64e9baf4931fd5414ca105cbe6771346', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('dfe30264324d45f30e36a5209c7a3b67', 'MINIO', 'cug', '051_校工会预审_87a2dcfa.png', 'png', '40', '39.7 kB', 'dfe30264324d45f30e36a5209c7a3b67.png', '/menu-icons/v5-flat-skeuomorphic-blue/dfe30264324d45f30e36a5209c7a3b67.png', '/platform/sys/file/download?id=dfe30264324d45f30e36a5209c7a3b67', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('d2095854e67dcf28dea1a4a975e90aba', 'MINIO', 'cug', '052_校工会审核_c269f94a.png', 'png', '40', '39.7 kB', 'd2095854e67dcf28dea1a4a975e90aba.png', '/menu-icons/v5-flat-skeuomorphic-blue/d2095854e67dcf28dea1a4a975e90aba.png', '/platform/sys/file/download?id=d2095854e67dcf28dea1a4a975e90aba', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('5c823bf5486ec8ae26e3233b0fe7f493', 'MINIO', 'cug', '053_困难帮扶_6ddda191.png', 'png', '40', '39.8 kB', '5c823bf5486ec8ae26e3233b0fe7f493.png', '/menu-icons/v5-flat-skeuomorphic-blue/5c823bf5486ec8ae26e3233b0fe7f493.png', '/platform/sys/file/download?id=5c823bf5486ec8ae26e3233b0fe7f493', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('14ee697a9f479076eb3a113aaa025bcb', 'MINIO', 'cug', '054_帮扶申请_3cf7ee61.png', 'png', '39', '39.4 kB', '14ee697a9f479076eb3a113aaa025bcb.png', '/menu-icons/v5-flat-skeuomorphic-blue/14ee697a9f479076eb3a113aaa025bcb.png', '/platform/sys/file/download?id=14ee697a9f479076eb3a113aaa025bcb', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('4dee1a7937ccbffde68a358d05179e10', 'MINIO', 'cug', '055_帮扶申请记录_51b21e97.png', 'png', '40', '39.9 kB', '4dee1a7937ccbffde68a358d05179e10.png', '/menu-icons/v5-flat-skeuomorphic-blue/4dee1a7937ccbffde68a358d05179e10.png', '/platform/sys/file/download?id=4dee1a7937ccbffde68a358d05179e10', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('8e867f31615a067757139cb0f37a2c3a', 'MINIO', 'cug', '056_分工会审核_23d30124.png', 'png', '40', '39.5 kB', '8e867f31615a067757139cb0f37a2c3a.png', '/menu-icons/v5-flat-skeuomorphic-blue/8e867f31615a067757139cb0f37a2c3a.png', '/platform/sys/file/download?id=8e867f31615a067757139cb0f37a2c3a', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('0cc926265e46a20bd7750bd23ef64ea7', 'MINIO', 'cug', '057_二级党组织审核_d736e4d7.png', 'png', '40', '39.9 kB', '0cc926265e46a20bd7750bd23ef64ea7.png', '/menu-icons/v5-flat-skeuomorphic-blue/0cc926265e46a20bd7750bd23ef64ea7.png', '/platform/sys/file/download?id=0cc926265e46a20bd7750bd23ef64ea7', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('b20526ea21e6d034a1335123e4db2440', 'MINIO', 'cug', '058_校工会审核_35a9239d.png', 'png', '40', '39.7 kB', 'b20526ea21e6d034a1335123e4db2440.png', '/menu-icons/v5-flat-skeuomorphic-blue/b20526ea21e6d034a1335123e4db2440.png', '/platform/sys/file/download?id=b20526ea21e6d034a1335123e4db2440', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('a4bc152d86f817fa2cf87ee142996d48', 'MINIO', 'cug', '059_体检管理_d4cab4ba.png', 'png', '48', '47.7 kB', 'a4bc152d86f817fa2cf87ee142996d48.png', '/menu-icons/v5-flat-skeuomorphic-blue/a4bc152d86f817fa2cf87ee142996d48.png', '/platform/sys/file/download?id=a4bc152d86f817fa2cf87ee142996d48', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('febd687b512a37aa151284d0d6249a9c', 'MINIO', 'cug', '060_体检项目_0a2bfc85.png', 'png', '52', '51.8 kB', 'febd687b512a37aa151284d0d6249a9c.png', '/menu-icons/v5-flat-skeuomorphic-blue/febd687b512a37aa151284d0d6249a9c.png', '/platform/sys/file/download?id=febd687b512a37aa151284d0d6249a9c', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('414f0d597613854fb20d316c9471b32e', 'MINIO', 'cug', '061_我的体检_c03fbf17.png', 'png', '50', '50.0 kB', '414f0d597613854fb20d316c9471b32e.png', '/menu-icons/v5-flat-skeuomorphic-blue/414f0d597613854fb20d316c9471b32e.png', '/platform/sys/file/download?id=414f0d597613854fb20d316c9471b32e', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('5b82cabae27a69bb71daa26cbc010965', 'MINIO', 'cug', '062_心理咨询_56620c51.png', 'png', '38', '38.5 kB', '5b82cabae27a69bb71daa26cbc010965.png', '/menu-icons/v5-flat-skeuomorphic-blue/5b82cabae27a69bb71daa26cbc010965.png', '/platform/sys/file/download?id=5b82cabae27a69bb71daa26cbc010965', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('5e63cc5c28e869fdae9d7209e0e34316', 'MINIO', 'cug', '063_我要预约_ef46a587.png', 'png', '43', '43.2 kB', '5e63cc5c28e869fdae9d7209e0e34316.png', '/menu-icons/v5-flat-skeuomorphic-blue/5e63cc5c28e869fdae9d7209e0e34316.png', '/platform/sys/file/download?id=5e63cc5c28e869fdae9d7209e0e34316', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('1e663ad85c938f9dc3591306efa12ef2', 'MINIO', 'cug', '064_预约记录_c6a2ec8d.png', 'png', '43', '42.5 kB', '1e663ad85c938f9dc3591306efa12ef2.png', '/menu-icons/v5-flat-skeuomorphic-blue/1e663ad85c938f9dc3591306efa12ef2.png', '/platform/sys/file/download?id=1e663ad85c938f9dc3591306efa12ef2', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('50ed9525a58d1f55a53dc58aa2dffc1d', 'MINIO', 'cug', '065_发帖咨询_7b21d468.png', 'png', '43', '42.8 kB', '50ed9525a58d1f55a53dc58aa2dffc1d.png', '/menu-icons/v5-flat-skeuomorphic-blue/50ed9525a58d1f55a53dc58aa2dffc1d.png', '/platform/sys/file/download?id=50ed9525a58d1f55a53dc58aa2dffc1d', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('04528f30323c0f89065ea88bfa5e1767', 'MINIO', 'cug', '066_咨询回复_43f06636.png', 'png', '40', '40.3 kB', '04528f30323c0f89065ea88bfa5e1767.png', '/menu-icons/v5-flat-skeuomorphic-blue/04528f30323c0f89065ea88bfa5e1767.png', '/platform/sys/file/download?id=04528f30323c0f89065ea88bfa5e1767', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('835a6cb3de7045d78f7eb9dda0f3ba24', 'MINIO', 'cug', '067_基层双代会_b6c224df.png', 'png', '45', '44.5 kB', '835a6cb3de7045d78f7eb9dda0f3ba24.png', '/menu-icons/v5-flat-skeuomorphic-blue/835a6cb3de7045d78f7eb9dda0f3ba24.png', '/platform/sys/file/download?id=835a6cb3de7045d78f7eb9dda0f3ba24', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('7fcea2eb85b32c7e08fe2d7838cf9f74', 'MINIO', 'cug', '068_法律援助_297400c8.png', 'png', '55', '54.9 kB', '7fcea2eb85b32c7e08fe2d7838cf9f74.png', '/menu-icons/v5-flat-skeuomorphic-blue/7fcea2eb85b32c7e08fe2d7838cf9f74.png', '/platform/sys/file/download?id=7fcea2eb85b32c7e08fe2d7838cf9f74', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('b5afef9259f3abae7b1bbb1d05b2fe5c', 'MINIO', 'cug', '069_我要预约_aa0ffd36.png', 'png', '43', '43.2 kB', 'b5afef9259f3abae7b1bbb1d05b2fe5c.png', '/menu-icons/v5-flat-skeuomorphic-blue/b5afef9259f3abae7b1bbb1d05b2fe5c.png', '/platform/sys/file/download?id=b5afef9259f3abae7b1bbb1d05b2fe5c', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('3fc3d984a41e9225e1f7710280fdac19', 'MINIO', 'cug', '070_预约记录_7dc21dca.png', 'png', '43', '42.5 kB', '3fc3d984a41e9225e1f7710280fdac19.png', '/menu-icons/v5-flat-skeuomorphic-blue/3fc3d984a41e9225e1f7710280fdac19.png', '/platform/sys/file/download?id=3fc3d984a41e9225e1f7710280fdac19', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('47fe77b9ff74053f555c339157e5e497', 'MINIO', 'cug', '071_发帖咨询_939595b4.png', 'png', '43', '42.8 kB', '47fe77b9ff74053f555c339157e5e497.png', '/menu-icons/v5-flat-skeuomorphic-blue/47fe77b9ff74053f555c339157e5e497.png', '/platform/sys/file/download?id=47fe77b9ff74053f555c339157e5e497', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('d45efe5411e254dc940f6e10f7c8f383', 'MINIO', 'cug', '072_咨询回复_d073c1d8.png', 'png', '40', '40.3 kB', 'd45efe5411e254dc940f6e10f7c8f383.png', '/menu-icons/v5-flat-skeuomorphic-blue/d45efe5411e254dc940f6e10f7c8f383.png', '/platform/sys/file/download?id=d45efe5411e254dc940f6e10f7c8f383', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('d964d19857c59f3e5dd282620f1a213e', 'MINIO', 'cug', '073_基金会员_3f88a4f6.png', 'png', '41', '41.4 kB', 'd964d19857c59f3e5dd282620f1a213e.png', '/menu-icons/v5-flat-skeuomorphic-blue/d964d19857c59f3e5dd282620f1a213e.png', '/platform/sys/file/download?id=d964d19857c59f3e5dd282620f1a213e', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('141fc4d6a9168b862aa5918726d0924a', 'MINIO', 'cug', '074_会员申请_8a77d32c.png', 'png', '39', '39.1 kB', '141fc4d6a9168b862aa5918726d0924a.png', '/menu-icons/v5-flat-skeuomorphic-blue/141fc4d6a9168b862aa5918726d0924a.png', '/platform/sys/file/download?id=141fc4d6a9168b862aa5918726d0924a', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('185b9668345c1775c8b34642f6108872', 'MINIO', 'cug', '075_我的申请_44423a17.png', 'png', '42', '41.8 kB', '185b9668345c1775c8b34642f6108872.png', '/menu-icons/v5-flat-skeuomorphic-blue/185b9668345c1775c8b34642f6108872.png', '/platform/sys/file/download?id=185b9668345c1775c8b34642f6108872', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('ce06d45189f54739dc25a391b6c2fe85', 'MINIO', 'cug', '076_分工会审核_3e102653.png', 'png', '40', '39.5 kB', 'ce06d45189f54739dc25a391b6c2fe85.png', '/menu-icons/v5-flat-skeuomorphic-blue/ce06d45189f54739dc25a391b6c2fe85.png', '/platform/sys/file/download?id=ce06d45189f54739dc25a391b6c2fe85', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('0738309559b2647c5ef8b38ed8f39080', 'MINIO', 'cug', '077_会员管理_ac2516a6.png', 'png', '37', '37.2 kB', '0738309559b2647c5ef8b38ed8f39080.png', '/menu-icons/v5-flat-skeuomorphic-blue/0738309559b2647c5ef8b38ed8f39080.png', '/platform/sys/file/download?id=0738309559b2647c5ef8b38ed8f39080', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('0f2717dd006be9e5db67442377679f91', 'MINIO', 'cug', '078_数据看板_59d6ba7c.png', 'png', '42', '42.1 kB', '0f2717dd006be9e5db67442377679f91.png', '/menu-icons/v5-flat-skeuomorphic-blue/0f2717dd006be9e5db67442377679f91.png', '/platform/sys/file/download?id=0f2717dd006be9e5db67442377679f91', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('91e5dc12db888366c17e61c9121ff69c', 'MINIO', 'cug', '079_互管会审核_6b5adca7.png', 'png', '39', '39.5 kB', '91e5dc12db888366c17e61c9121ff69c.png', '/menu-icons/v5-flat-skeuomorphic-blue/91e5dc12db888366c17e61c9121ff69c.png', '/platform/sys/file/download?id=91e5dc12db888366c17e61c9121ff69c', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('81ac98687f68e252042807a459a988df', 'MINIO', 'cug', '080_离退休审核_57566021.png', 'png', '40', '40.0 kB', '81ac98687f68e252042807a459a988df.png', '/menu-icons/v5-flat-skeuomorphic-blue/81ac98687f68e252042807a459a988df.png', '/platform/sys/file/download?id=81ac98687f68e252042807a459a988df', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('7a61acfc8a2896f36ca0f140a8c00f93', 'MINIO', 'cug', '081_会员入会_1375120f.png', 'png', '45', '44.7 kB', '7a61acfc8a2896f36ca0f140a8c00f93.png', '/menu-icons/v5-flat-skeuomorphic-blue/7a61acfc8a2896f36ca0f140a8c00f93.png', '/platform/sys/file/download?id=7a61acfc8a2896f36ca0f140a8c00f93', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('24565ab537cc29fdc1f8398d57cba2c9', 'MINIO', 'cug', '082_会务管理_2c61ac06.png', 'png', '42', '41.8 kB', '24565ab537cc29fdc1f8398d57cba2c9.png', '/menu-icons/v5-flat-skeuomorphic-blue/24565ab537cc29fdc1f8398d57cba2c9.png', '/platform/sys/file/download?id=24565ab537cc29fdc1f8398d57cba2c9', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('024f728cf7476458d372d9c13bd9f937', 'MINIO', 'cug', '083_体育活动_893016b4.png', 'png', '60', '59.9 kB', '024f728cf7476458d372d9c13bd9f937.png', '/menu-icons/v5-flat-skeuomorphic-blue/024f728cf7476458d372d9c13bd9f937.png', '/platform/sys/file/download?id=024f728cf7476458d372d9c13bd9f937', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('08e92fd1ea7f5e1d6c3f0ff4ae9650f8', 'MINIO', 'cug', '084_活动报名_dbaba7b3.png', 'png', '35', '35.2 kB', '08e92fd1ea7f5e1d6c3f0ff4ae9650f8.png', '/menu-icons/v5-flat-skeuomorphic-blue/08e92fd1ea7f5e1d6c3f0ff4ae9650f8.png', '/platform/sys/file/download?id=08e92fd1ea7f5e1d6c3f0ff4ae9650f8', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('8060ce47970cadcf7dc3bd41c0ed20d9', 'MINIO', 'cug', '085_文化活动_898f95af.png', 'png', '63', '62.5 kB', '8060ce47970cadcf7dc3bd41c0ed20d9.png', '/menu-icons/v5-flat-skeuomorphic-blue/8060ce47970cadcf7dc3bd41c0ed20d9.png', '/platform/sys/file/download?id=8060ce47970cadcf7dc3bd41c0ed20d9', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('ddd9c5c2fb28db177956a849ff2352df', 'MINIO', 'cug', '086_品牌活动_fb16e44e.png', 'png', '47', '47.3 kB', 'ddd9c5c2fb28db177956a849ff2352df.png', '/menu-icons/v5-flat-skeuomorphic-blue/ddd9c5c2fb28db177956a849ff2352df.png', '/platform/sys/file/download?id=ddd9c5c2fb28db177956a849ff2352df', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('da2e93c2a9491893ebd5d166f47bc545', 'MINIO', 'cug', '087_活动报名_42d1b0cc.png', 'png', '35', '35.2 kB', 'da2e93c2a9491893ebd5d166f47bc545.png', '/menu-icons/v5-flat-skeuomorphic-blue/da2e93c2a9491893ebd5d166f47bc545.png', '/platform/sys/file/download?id=da2e93c2a9491893ebd5d166f47bc545', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('bcb91e996ad91fc133ce2432203556bf', 'MINIO', 'cug', '088_我的活动_811cf28c.png', 'png', '41', '40.6 kB', 'bcb91e996ad91fc133ce2432203556bf.png', '/menu-icons/v5-flat-skeuomorphic-blue/bcb91e996ad91fc133ce2432203556bf.png', '/platform/sys/file/download?id=bcb91e996ad91fc133ce2432203556bf', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('0467db4198d856e2180f89796c1ad62e', 'MINIO', 'cug', '089_惠民服务_57accf35.png', 'png', '46', '46.1 kB', '0467db4198d856e2180f89796c1ad62e.png', '/menu-icons/v5-flat-skeuomorphic-blue/0467db4198d856e2180f89796c1ad62e.png', '/platform/sys/file/download?id=0467db4198d856e2180f89796c1ad62e', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('f27149a8370b2e9e0849ca9028d6cb66', 'MINIO', 'cug', '090_我的惠民_05f829da.png', 'png', '41', '40.6 kB', 'f27149a8370b2e9e0849ca9028d6cb66.png', '/menu-icons/v5-flat-skeuomorphic-blue/f27149a8370b2e9e0849ca9028d6cb66.png', '/platform/sys/file/download?id=f27149a8370b2e9e0849ca9028d6cb66', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('1d9097f1ddf8ea04323327354a010ae9', 'MINIO', 'cug', '091_理论学习_a8966b0e.png', 'png', '36', '36.5 kB', '1d9097f1ddf8ea04323327354a010ae9.png', '/menu-icons/v5-flat-skeuomorphic-blue/1d9097f1ddf8ea04323327354a010ae9.png', '/platform/sys/file/download?id=1d9097f1ddf8ea04323327354a010ae9', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('be4c7a2b027046b129bed6a27049d841', 'MINIO', 'cug', '092_课程列表_893a216d.png', 'png', '39', '39.5 kB', 'be4c7a2b027046b129bed6a27049d841.png', '/menu-icons/v5-flat-skeuomorphic-blue/be4c7a2b027046b129bed6a27049d841.png', '/platform/sys/file/download?id=be4c7a2b027046b129bed6a27049d841', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('07e12bf38d38c4ab75dd01b46ae03963', 'MINIO', 'cug', '093_慈善捐助_0c4ccaec.png', 'png', '33', '33.0 kB', '07e12bf38d38c4ab75dd01b46ae03963.png', '/menu-icons/v5-flat-skeuomorphic-blue/07e12bf38d38c4ab75dd01b46ae03963.png', '/platform/sys/file/download?id=07e12bf38d38c4ab75dd01b46ae03963', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('e93b9ec54bd39a242c9c81067eb64b61', 'MINIO', 'cug', '094_慈善捐助_a112c7db.png', 'png', '33', '33.0 kB', 'e93b9ec54bd39a242c9c81067eb64b61.png', '/menu-icons/v5-flat-skeuomorphic-blue/e93b9ec54bd39a242c9c81067eb64b61.png', '/platform/sys/file/download?id=e93b9ec54bd39a242c9c81067eb64b61', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('e61bb788e312c599a4f1d4c583ec56e9', 'MINIO', 'cug', '095_我的捐助_23883f9a.png', 'png', '39', '38.6 kB', 'e61bb788e312c599a4f1d4c583ec56e9.png', '/menu-icons/v5-flat-skeuomorphic-blue/e61bb788e312c599a4f1d4c583ec56e9.png', '/platform/sys/file/download?id=e61bb788e312c599a4f1d4c583ec56e9', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('dd8b8a073342b416ff6f46cec3d1a6cf', 'MINIO', 'cug', '096_生育休假_e5851cdf.png', 'png', '38', '38.2 kB', 'dd8b8a073342b416ff6f46cec3d1a6cf.png', '/menu-icons/v5-flat-skeuomorphic-blue/dd8b8a073342b416ff6f46cec3d1a6cf.png', '/platform/sys/file/download?id=dd8b8a073342b416ff6f46cec3d1a6cf', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('d4d985afcccd436885d1cdf4b9c0c956', 'MINIO', 'cug', '097_休假申请_abfbd5db.png', 'png', '41', '40.5 kB', 'd4d985afcccd436885d1cdf4b9c0c956.png', '/menu-icons/v5-flat-skeuomorphic-blue/d4d985afcccd436885d1cdf4b9c0c956.png', '/platform/sys/file/download?id=d4d985afcccd436885d1cdf4b9c0c956', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('30a17bd43525a7d8b7f73648253b2353', 'MINIO', 'cug', '098_我的申请_99252619.png', 'png', '42', '41.8 kB', '30a17bd43525a7d8b7f73648253b2353.png', '/menu-icons/v5-flat-skeuomorphic-blue/30a17bd43525a7d8b7f73648253b2353.png', '/platform/sys/file/download?id=30a17bd43525a7d8b7f73648253b2353', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('0e9014e6360d1953ddd1fe0121f09d02', 'MINIO', 'cug', '099_分工会审核_6a548614.png', 'png', '40', '39.5 kB', '0e9014e6360d1953ddd1fe0121f09d02.png', '/menu-icons/v5-flat-skeuomorphic-blue/0e9014e6360d1953ddd1fe0121f09d02.png', '/platform/sys/file/download?id=0e9014e6360d1953ddd1fe0121f09d02', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('90320751d0f5de5ddc71974b0259f468', 'MINIO', 'cug', '100_校工会审核_4a764f7d.png', 'png', '40', '39.7 kB', '90320751d0f5de5ddc71974b0259f468.png', '/menu-icons/v5-flat-skeuomorphic-blue/90320751d0f5de5ddc71974b0259f468.png', '/platform/sys/file/download?id=90320751d0f5de5ddc71974b0259f468', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('c31947c4e4f9f0064f1a987bbdae3548', 'MINIO', 'cug', '101_查询统计_c13558b0.png', 'png', '48', '47.9 kB', 'c31947c4e4f9f0064f1a987bbdae3548.png', '/menu-icons/v5-flat-skeuomorphic-blue/c31947c4e4f9f0064f1a987bbdae3548.png', '/platform/sys/file/download?id=c31947c4e4f9f0064f1a987bbdae3548', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('b3ca619e943008ec66c87ff3ea54caf0', 'MINIO', 'cug', '102_独生子女父母退休_f808e1e1.png', 'png', '47', '47.2 kB', 'b3ca619e943008ec66c87ff3ea54caf0.png', '/menu-icons/v5-flat-skeuomorphic-blue/b3ca619e943008ec66c87ff3ea54caf0.png', '/platform/sys/file/download?id=b3ca619e943008ec66c87ff3ea54caf0', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('30052dd19f6e69faa6a546e3692f4477', 'MINIO', 'cug', '103_独生子女父母退休申请_6c3fcd1a.png', 'png', '41', '40.6 kB', '30052dd19f6e69faa6a546e3692f4477.png', '/menu-icons/v5-flat-skeuomorphic-blue/30052dd19f6e69faa6a546e3692f4477.png', '/platform/sys/file/download?id=30052dd19f6e69faa6a546e3692f4477', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('786d70bd8e118fbae8efebbb8df64762', 'MINIO', 'cug', '104_我的申请_16388b3d.png', 'png', '42', '41.8 kB', '786d70bd8e118fbae8efebbb8df64762.png', '/menu-icons/v5-flat-skeuomorphic-blue/786d70bd8e118fbae8efebbb8df64762.png', '/platform/sys/file/download?id=786d70bd8e118fbae8efebbb8df64762', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('375d5bf016d1183211557873fcd5de57', 'MINIO', 'cug', '105_分工会审核_dc276392.png', 'png', '40', '39.5 kB', '375d5bf016d1183211557873fcd5de57.png', '/menu-icons/v5-flat-skeuomorphic-blue/375d5bf016d1183211557873fcd5de57.png', '/platform/sys/file/download?id=375d5bf016d1183211557873fcd5de57', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('8e50b6ef905bec105c038826fd1e1dd6', 'MINIO', 'cug', '106_校工会审核_50bf62d0.png', 'png', '40', '39.7 kB', '8e50b6ef905bec105c038826fd1e1dd6.png', '/menu-icons/v5-flat-skeuomorphic-blue/8e50b6ef905bec105c038826fd1e1dd6.png', '/platform/sys/file/download?id=8e50b6ef905bec105c038826fd1e1dd6', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('1dfe6590295b676e1a6f2796b4c93d70', 'MINIO', 'cug', '107_查询统计_05f308a2.png', 'png', '48', '47.9 kB', '1dfe6590295b676e1a6f2796b4c93d70.png', '/menu-icons/v5-flat-skeuomorphic-blue/1dfe6590295b676e1a6f2796b4c93d70.png', '/platform/sys/file/download?id=1dfe6590295b676e1a6f2796b4c93d70', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('a9df7e58e16784a38f33e7de7f841462', 'MINIO', 'cug', '108_工会报销_d54c4078.png', 'png', '45', '45.5 kB', 'a9df7e58e16784a38f33e7de7f841462.png', '/menu-icons/v5-flat-skeuomorphic-blue/a9df7e58e16784a38f33e7de7f841462.png', '/platform/sys/file/download?id=a9df7e58e16784a38f33e7de7f841462', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('e71f6cdfab618af4e1f579c12acf7da4', 'MINIO', 'cug', '109_报销申请_e04f9463.png', 'png', '45', '44.8 kB', 'e71f6cdfab618af4e1f579c12acf7da4.png', '/menu-icons/v5-flat-skeuomorphic-blue/e71f6cdfab618af4e1f579c12acf7da4.png', '/platform/sys/file/download?id=e71f6cdfab618af4e1f579c12acf7da4', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('e6ea330dc1f4a9ecc13b79e0070af510', 'MINIO', 'cug', '110_我的报销_5a994c0f.png', 'png', '37', '37.4 kB', 'e6ea330dc1f4a9ecc13b79e0070af510.png', '/menu-icons/v5-flat-skeuomorphic-blue/e6ea330dc1f4a9ecc13b79e0070af510.png', '/platform/sys/file/download?id=e6ea330dc1f4a9ecc13b79e0070af510', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('d81c6cf64003517afbca47bdb083e355', 'MINIO', 'cug', '111_单身教工管理_bfd9983c.png', 'png', '36', '36.3 kB', 'd81c6cf64003517afbca47bdb083e355.png', '/menu-icons/v5-flat-skeuomorphic-blue/d81c6cf64003517afbca47bdb083e355.png', '/platform/sys/file/download?id=d81c6cf64003517afbca47bdb083e355', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('80542cb6b1b00e417e7257fe3c11f333', 'MINIO', 'cug', '112_报销审核_d1abc76f.png', 'png', '40', '39.9 kB', '80542cb6b1b00e417e7257fe3c11f333.png', '/menu-icons/v5-flat-skeuomorphic-blue/80542cb6b1b00e417e7257fe3c11f333.png', '/platform/sys/file/download?id=80542cb6b1b00e417e7257fe3c11f333', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('04ddef4f8d79b825bc19774d9137e835', 'MINIO', 'cug', '113_报销汇总_0d6c8aac.png', 'png', '39', '39.1 kB', '04ddef4f8d79b825bc19774d9137e835.png', '/menu-icons/v5-flat-skeuomorphic-blue/04ddef4f8d79b825bc19774d9137e835.png', '/platform/sys/file/download?id=04ddef4f8d79b825bc19774d9137e835', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('d3ec6bccb26ff4c9fb79232e5f02ef17', 'MINIO', 'cug', '114_问卷调查_17c32edb.png', 'png', '40', '40.1 kB', 'd3ec6bccb26ff4c9fb79232e5f02ef17.png', '/menu-icons/v5-flat-skeuomorphic-blue/d3ec6bccb26ff4c9fb79232e5f02ef17.png', '/platform/sys/file/download?id=d3ec6bccb26ff4c9fb79232e5f02ef17', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('aa1a120e2814b4928c50dc8d8ed64c10', 'MINIO', 'cug', '115_其他人员管理_62b1effb.png', 'png', '40', '39.8 kB', 'aa1a120e2814b4928c50dc8d8ed64c10.png', '/menu-icons/v5-flat-skeuomorphic-blue/aa1a120e2814b4928c50dc8d8ed64c10.png', '/platform/sys/file/download?id=aa1a120e2814b4928c50dc8d8ed64c10', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('72d78f2e581b4774d683c6247ba8ba82', 'MINIO', 'cug', '116_场地预约old_ed6f15a0.png', 'png', '59', '59.0 kB', '72d78f2e581b4774d683c6247ba8ba82.png', '/menu-icons/v5-flat-skeuomorphic-blue/72d78f2e581b4774d683c6247ba8ba82.png', '/platform/sys/file/download?id=72d78f2e581b4774d683c6247ba8ba82', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('0b35ac8df36d0307cccd3a7abead9bbd', 'MINIO', 'cug', '117_场地预约_3f09df78.png', 'png', '58', '58.0 kB', '0b35ac8df36d0307cccd3a7abead9bbd.png', '/menu-icons/v5-flat-skeuomorphic-blue/0b35ac8df36d0307cccd3a7abead9bbd.png', '/platform/sys/file/download?id=0b35ac8df36d0307cccd3a7abead9bbd', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('f0752418a1fa85076043d8b30a8162a9', 'MINIO', 'cug', '118_人员变更记录_70b4f9a1.png', 'png', '37', '36.8 kB', 'f0752418a1fa85076043d8b30a8162a9.png', '/menu-icons/v5-flat-skeuomorphic-blue/f0752418a1fa85076043d8b30a8162a9.png', '/platform/sys/file/download?id=f0752418a1fa85076043d8b30a8162a9', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('b445e5fbe073d6fec6821bfa2d00d0ad', 'MINIO', 'cug', '119_我的预约_8f752c50.png', 'png', '41', '41.3 kB', 'b445e5fbe073d6fec6821bfa2d00d0ad.png', '/menu-icons/v5-flat-skeuomorphic-blue/b445e5fbe073d6fec6821bfa2d00d0ad.png', '/platform/sys/file/download?id=b445e5fbe073d6fec6821bfa2d00d0ad', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('c099744c28258127c82c9d90a506280a', 'MINIO', 'cug', '120_30教龄教职工管理_22847e55.png', 'png', '54', '54.3 kB', 'c099744c28258127c82c9d90a506280a.png', '/menu-icons/v5-flat-skeuomorphic-blue/c099744c28258127c82c9d90a506280a.png', '/platform/sys/file/download?id=c099744c28258127c82c9d90a506280a', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('9b293ef36ad342406317aa5ddb25de1e', 'MINIO', 'cug', '121_校工会审核_ef93e3b9.png', 'png', '40', '39.7 kB', '9b293ef36ad342406317aa5ddb25de1e.png', '/menu-icons/v5-flat-skeuomorphic-blue/9b293ef36ad342406317aa5ddb25de1e.png', '/platform/sys/file/download?id=9b293ef36ad342406317aa5ddb25de1e', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('80167705b15e822ef298da8bf0e6238c', 'MINIO', 'cug', '122_职工福利_d34fa735.png', 'png', '42', '42.3 kB', '80167705b15e822ef298da8bf0e6238c.png', '/menu-icons/v5-flat-skeuomorphic-blue/80167705b15e822ef298da8bf0e6238c.png', '/platform/sys/file/download?id=80167705b15e822ef298da8bf0e6238c', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('9c9ed841146ead12774e305127c70655', 'MINIO', 'cug', '123_选择福利_94b69599.png', 'png', '42', '42.4 kB', '9c9ed841146ead12774e305127c70655.png', '/menu-icons/v5-flat-skeuomorphic-blue/9c9ed841146ead12774e305127c70655.png', '/platform/sys/file/download?id=9c9ed841146ead12774e305127c70655', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('c15e09dd7448821d331443c415818e00', 'MINIO', 'cug', '124_收货地址_15156ec9.png', 'png', '49', '49.1 kB', 'c15e09dd7448821d331443c415818e00.png', '/menu-icons/v5-flat-skeuomorphic-blue/c15e09dd7448821d331443c415818e00.png', '/platform/sys/file/download?id=c15e09dd7448821d331443c415818e00', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('7663b86e0083ccec5451e4ad753e323a', 'MINIO', 'cug', '125_职工慰问_3b49290f.png', 'png', '41', '41.3 kB', '7663b86e0083ccec5451e4ad753e323a.png', '/menu-icons/v5-flat-skeuomorphic-blue/7663b86e0083ccec5451e4ad753e323a.png', '/platform/sys/file/download?id=7663b86e0083ccec5451e4ad753e323a', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('dc3a4487ca0708d62662e7f03aa031fa', 'MINIO', 'cug', '126_慰问申请_5e024c74.png', 'png', '33', '33.0 kB', 'dc3a4487ca0708d62662e7f03aa031fa.png', '/menu-icons/v5-flat-skeuomorphic-blue/dc3a4487ca0708d62662e7f03aa031fa.png', '/platform/sys/file/download?id=dc3a4487ca0708d62662e7f03aa031fa', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('215f19af8b2ba2773c07e8f804541697', 'MINIO', 'cug', '127_我的福利_c08d8543.png', 'png', '42', '41.8 kB', '215f19af8b2ba2773c07e8f804541697.png', '/menu-icons/v5-flat-skeuomorphic-blue/215f19af8b2ba2773c07e8f804541697.png', '/platform/sys/file/download?id=215f19af8b2ba2773c07e8f804541697', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('f487372d9c3c26c8cea86040602436b7', 'MINIO', 'cug', '128_建言献策_261dd7f7.png', 'png', '39', '39.2 kB', 'f487372d9c3c26c8cea86040602436b7.png', '/menu-icons/v5-flat-skeuomorphic-blue/f487372d9c3c26c8cea86040602436b7.png', '/platform/sys/file/download?id=f487372d9c3c26c8cea86040602436b7', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('5d35429b46c062cc376896db6abffed9', 'MINIO', 'cug', '129_填写申请_9e0070b7.png', 'png', '42', '41.8 kB', '5d35429b46c062cc376896db6abffed9.png', '/menu-icons/v5-flat-skeuomorphic-blue/5d35429b46c062cc376896db6abffed9.png', '/platform/sys/file/download?id=5d35429b46c062cc376896db6abffed9', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('82fd6812dc635f7ea8221cedbc680d3c', 'MINIO', 'cug', '130_我的申请_360f1c3f.png', 'png', '42', '41.8 kB', '82fd6812dc635f7ea8221cedbc680d3c.png', '/menu-icons/v5-flat-skeuomorphic-blue/82fd6812dc635f7ea8221cedbc680d3c.png', '/platform/sys/file/download?id=82fd6812dc635f7ea8221cedbc680d3c', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('5e12d18fabe9153c13a11bdee1131a54', 'MINIO', 'cug', '131_校工会审核_a9d5ff11.png', 'png', '40', '39.7 kB', '5e12d18fabe9153c13a11bdee1131a54.png', '/menu-icons/v5-flat-skeuomorphic-blue/5e12d18fabe9153c13a11bdee1131a54.png', '/platform/sys/file/download?id=5e12d18fabe9153c13a11bdee1131a54', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('b8175cc96b7b6a5a785820997ce6ed05', 'MINIO', 'cug', '132_查询统计_5f2c0218.png', 'png', '48', '47.9 kB', 'b8175cc96b7b6a5a785820997ce6ed05.png', '/menu-icons/v5-flat-skeuomorphic-blue/b8175cc96b7b6a5a785820997ce6ed05.png', '/platform/sys/file/download?id=b8175cc96b7b6a5a785820997ce6ed05', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('9104a4f38f453f420cf456abf10bc5f8', 'MINIO', 'cug', '133_作品征集_10ecb801.png', 'png', '45', '45.4 kB', '9104a4f38f453f420cf456abf10bc5f8.png', '/menu-icons/v5-flat-skeuomorphic-blue/9104a4f38f453f420cf456abf10bc5f8.png', '/platform/sys/file/download?id=9104a4f38f453f420cf456abf10bc5f8', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('0654d117a3fb0fe061064096744bc6b0', 'MINIO', 'cug', '134_作品上传_5ae60a2c.png', 'png', '41', '40.7 kB', '0654d117a3fb0fe061064096744bc6b0.png', '/menu-icons/v5-flat-skeuomorphic-blue/0654d117a3fb0fe061064096744bc6b0.png', '/platform/sys/file/download?id=0654d117a3fb0fe061064096744bc6b0', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('d5dd0484ed5b8baa66d75d3ada43e955', 'MINIO', 'cug', '135_困难帮扶_ca437578.png', 'png', '40', '39.8 kB', 'd5dd0484ed5b8baa66d75d3ada43e955.png', '/menu-icons/v5-flat-skeuomorphic-blue/d5dd0484ed5b8baa66d75d3ada43e955.png', '/platform/sys/file/download?id=d5dd0484ed5b8baa66d75d3ada43e955', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('8517a2b51288572a7616218682da26cc', 'MINIO', 'cug', '136_我的作品_b0febdbf.png', 'png', '41', '41.0 kB', '8517a2b51288572a7616218682da26cc.png', '/menu-icons/v5-flat-skeuomorphic-blue/8517a2b51288572a7616218682da26cc.png', '/platform/sys/file/download?id=8517a2b51288572a7616218682da26cc', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('7307bab899c6747ad89a0b351c2e306e', 'MINIO', 'cug', '137_困难帮扶申请_d11cf9fe.png', 'png', '38', '37.9 kB', '7307bab899c6747ad89a0b351c2e306e.png', '/menu-icons/v5-flat-skeuomorphic-blue/7307bab899c6747ad89a0b351c2e306e.png', '/platform/sys/file/download?id=7307bab899c6747ad89a0b351c2e306e', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('458502126d65e18c89bf84e1242a0e6c', 'MINIO', 'cug', '138_作品阅览_04fd4ddf.png', 'png', '42', '42.0 kB', '458502126d65e18c89bf84e1242a0e6c.png', '/menu-icons/v5-flat-skeuomorphic-blue/458502126d65e18c89bf84e1242a0e6c.png', '/platform/sys/file/download?id=458502126d65e18c89bf84e1242a0e6c', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('605b72241fa221e989eda7c14bb41373', 'MINIO', 'cug', '139_会议选座_0c08a2e7.png', 'png', '61', '61.4 kB', '605b72241fa221e989eda7c14bb41373.png', '/menu-icons/v5-flat-skeuomorphic-blue/605b72241fa221e989eda7c14bb41373.png', '/platform/sys/file/download?id=605b72241fa221e989eda7c14bb41373', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('b905d8fd3e85338117038ff726278f3d', 'MINIO', 'cug', '140_亲子活动_871f822c.png', 'png', '39', '38.6 kB', 'b905d8fd3e85338117038ff726278f3d.png', '/menu-icons/v5-flat-skeuomorphic-blue/b905d8fd3e85338117038ff726278f3d.png', '/platform/sys/file/download?id=b905d8fd3e85338117038ff726278f3d', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('64c7b517599ba0099ce7a853e85738b2', 'MINIO', 'cug', '141_活动报名_612a4fa1.png', 'png', '35', '35.2 kB', '64c7b517599ba0099ce7a853e85738b2.png', '/menu-icons/v5-flat-skeuomorphic-blue/64c7b517599ba0099ce7a853e85738b2.png', '/platform/sys/file/download?id=64c7b517599ba0099ce7a853e85738b2', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('161ee1a6787b0aba72f46ab181e4ab53', 'MINIO', 'cug', '142_心理咨询_c8d0855a.png', 'png', '38', '38.5 kB', '161ee1a6787b0aba72f46ab181e4ab53.png', '/menu-icons/v5-flat-skeuomorphic-blue/161ee1a6787b0aba72f46ab181e4ab53.png', '/platform/sys/file/download?id=161ee1a6787b0aba72f46ab181e4ab53', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('7cad7841948398a495bd6d535ec35baf', 'MINIO', 'cug', '143_我的报名_c0ba4f08.png', 'png', '36', '36.4 kB', '7cad7841948398a495bd6d535ec35baf.png', '/menu-icons/v5-flat-skeuomorphic-blue/7cad7841948398a495bd6d535ec35baf.png', '/platform/sys/file/download?id=7cad7841948398a495bd6d535ec35baf', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('780975e27c40decf02a0ad9a58406b48', 'MINIO', 'cug', '144_法律援助_f148c76e.png', 'png', '55', '54.9 kB', '780975e27c40decf02a0ad9a58406b48.png', '/menu-icons/v5-flat-skeuomorphic-blue/780975e27c40decf02a0ad9a58406b48.png', '/platform/sys/file/download?id=780975e27c40decf02a0ad9a58406b48', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('7d9b1dbd86a892b96268f5cc0458093a', 'MINIO', 'cug', '145_医疗补助系统_b0cc1987.png', 'png', '43', '42.5 kB', '7d9b1dbd86a892b96268f5cc0458093a.png', '/menu-icons/v5-flat-skeuomorphic-blue/7d9b1dbd86a892b96268f5cc0458093a.png', '/platform/sys/file/download?id=7d9b1dbd86a892b96268f5cc0458093a', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('4bfe67d3bce0536922b83aaf998ff8bf', 'MINIO', 'cug', '146_职工福利_ca9e5652.png', 'png', '42', '42.3 kB', '4bfe67d3bce0536922b83aaf998ff8bf.png', '/menu-icons/v5-flat-skeuomorphic-blue/4bfe67d3bce0536922b83aaf998ff8bf.png', '/platform/sys/file/download?id=4bfe67d3bce0536922b83aaf998ff8bf', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('653f431f3f68e5529e7c746648ee3f17', 'MINIO', 'cug', '147_职工福利_093e1e29.png', 'png', '42', '42.3 kB', '653f431f3f68e5529e7c746648ee3f17.png', '/menu-icons/v5-flat-skeuomorphic-blue/653f431f3f68e5529e7c746648ee3f17.png', '/platform/sys/file/download?id=653f431f3f68e5529e7c746648ee3f17', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('69b7a9902bb48a6e668bd9207f3ad900', 'MINIO', 'cug', '148_福利选择_519c8f5a.png', 'png', '48', '47.7 kB', '69b7a9902bb48a6e668bd9207f3ad900.png', '/menu-icons/v5-flat-skeuomorphic-blue/69b7a9902bb48a6e668bd9207f3ad900.png', '/platform/sys/file/download?id=69b7a9902bb48a6e668bd9207f3ad900', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('e549fd7fa363215d798460f1ad7b9542', 'MINIO', 'cug', '149_福利日常核对_73df1dda.png', 'png', '40', '39.8 kB', 'e549fd7fa363215d798460f1ad7b9542.png', '/menu-icons/v5-flat-skeuomorphic-blue/e549fd7fa363215d798460f1ad7b9542.png', '/platform/sys/file/download?id=e549fd7fa363215d798460f1ad7b9542', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('0d0f799d5d6e7635020d5345c78a64ae', 'MINIO', 'cug', '150_体检管理_cf47b9d6.png', 'png', '48', '47.7 kB', '0d0f799d5d6e7635020d5345c78a64ae.png', '/menu-icons/v5-flat-skeuomorphic-blue/0d0f799d5d6e7635020d5345c78a64ae.png', '/platform/sys/file/download?id=0d0f799d5d6e7635020d5345c78a64ae', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('e574d0f9924e2d12d1c3d214f0a59761', 'MINIO', 'cug', '151_体育活动管理_e08ff179.png', 'png', '63', '63.2 kB', 'e574d0f9924e2d12d1c3d214f0a59761.png', '/menu-icons/v5-flat-skeuomorphic-blue/e574d0f9924e2d12d1c3d214f0a59761.png', '/platform/sys/file/download?id=e574d0f9924e2d12d1c3d214f0a59761', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('fca1fa026b15d8e7106271ce4ca7e5ef', 'MINIO', 'cug', '152_体育活动报名_69280dbb.png', 'png', '45', '45.2 kB', 'fca1fa026b15d8e7106271ce4ca7e5ef.png', '/menu-icons/v5-flat-skeuomorphic-blue/fca1fa026b15d8e7106271ce4ca7e5ef.png', '/platform/sys/file/download?id=fca1fa026b15d8e7106271ce4ca7e5ef', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('72e88557e860fe349597c9100a4029a7', 'MINIO', 'cug', '153_品牌活动_0868f8b6.png', 'png', '47', '47.3 kB', '72e88557e860fe349597c9100a4029a7.png', '/menu-icons/v5-flat-skeuomorphic-blue/72e88557e860fe349597c9100a4029a7.png', '/platform/sys/file/download?id=72e88557e860fe349597c9100a4029a7', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('350e456eb0b9c091519e1733ff69cda1', 'MINIO', 'cug', '154_品牌活动报名_c97ad132.png', 'png', '41', '40.8 kB', '350e456eb0b9c091519e1733ff69cda1.png', '/menu-icons/v5-flat-skeuomorphic-blue/350e456eb0b9c091519e1733ff69cda1.png', '/platform/sys/file/download?id=350e456eb0b9c091519e1733ff69cda1', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('7866849789d36e812e6eb0cffe8e75aa', 'MINIO', 'cug', '155_校工会文化活动_788400d0.png', 'png', '53', '53.3 kB', '7866849789d36e812e6eb0cffe8e75aa.png', '/menu-icons/v5-flat-skeuomorphic-blue/7866849789d36e812e6eb0cffe8e75aa.png', '/platform/sys/file/download?id=7866849789d36e812e6eb0cffe8e75aa', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('f7f2b1cc448c75bb410d8ce4b0d75d4f', 'MINIO', 'cug', '156_校文化活动报名_c1709519.png', 'png', '44', '43.9 kB', 'f7f2b1cc448c75bb410d8ce4b0d75d4f.png', '/menu-icons/v5-flat-skeuomorphic-blue/f7f2b1cc448c75bb410d8ce4b0d75d4f.png', '/platform/sys/file/download?id=f7f2b1cc448c75bb410d8ce4b0d75d4f', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('aaa4b2b3fcc9daf1154dbcf878209b70', 'MINIO', 'cug', '157_分工会文化活动_b759a93a.png', 'png', '51', '50.6 kB', 'aaa4b2b3fcc9daf1154dbcf878209b70.png', '/menu-icons/v5-flat-skeuomorphic-blue/aaa4b2b3fcc9daf1154dbcf878209b70.png', '/platform/sys/file/download?id=aaa4b2b3fcc9daf1154dbcf878209b70', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('447d5fedecfd3e3121854954142cebf4', 'MINIO', 'cug', '158_作品征集_91d79e0f.png', 'png', '45', '45.4 kB', '447d5fedecfd3e3121854954142cebf4.png', '/menu-icons/v5-flat-skeuomorphic-blue/447d5fedecfd3e3121854954142cebf4.png', '/platform/sys/file/download?id=447d5fedecfd3e3121854954142cebf4', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('1d9e13caf37aa95665f63ad4e545e0a6', 'MINIO', 'cug', '159_亲子活动_737e57a3.png', 'png', '39', '38.6 kB', '1d9e13caf37aa95665f63ad4e545e0a6.png', '/menu-icons/v5-flat-skeuomorphic-blue/1d9e13caf37aa95665f63ad4e545e0a6.png', '/platform/sys/file/download?id=1d9e13caf37aa95665f63ad4e545e0a6', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('398cfe57b1c727a434cd7c690d721217', 'MINIO', 'cug', '160_教工健身走_33e81fa0.png', 'png', '48', '47.7 kB', '398cfe57b1c727a434cd7c690d721217.png', '/menu-icons/v5-flat-skeuomorphic-blue/398cfe57b1c727a434cd7c690d721217.png', '/platform/sys/file/download?id=398cfe57b1c727a434cd7c690d721217', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('184782319d588117534eda54be0ca540', 'MINIO', 'cug', '161_活动基础管理_77c8af32.png', 'png', '46', '45.5 kB', '184782319d588117534eda54be0ca540.png', '/menu-icons/v5-flat-skeuomorphic-blue/184782319d588117534eda54be0ca540.png', '/platform/sys/file/download?id=184782319d588117534eda54be0ca540', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('ba437ff0da2e7759d35c2afddb15f698', 'MINIO', 'cug', '162_工会报销_1f917af2.png', 'png', '45', '45.5 kB', 'ba437ff0da2e7759d35c2afddb15f698.png', '/menu-icons/v5-flat-skeuomorphic-blue/ba437ff0da2e7759d35c2afddb15f698.png', '/platform/sys/file/download?id=ba437ff0da2e7759d35c2afddb15f698', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('7fb287d723da5ea7adab9f4426d02a59', 'MINIO', 'cug', '163_报销申请_d6132ff0.png', 'png', '45', '44.8 kB', '7fb287d723da5ea7adab9f4426d02a59.png', '/menu-icons/v5-flat-skeuomorphic-blue/7fb287d723da5ea7adab9f4426d02a59.png', '/platform/sys/file/download?id=7fb287d723da5ea7adab9f4426d02a59', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('38427f0f41908eb51ad8842aed240242', 'MINIO', 'cug', '164_问卷服务_1c643efa.png', 'png', '39', '39.0 kB', '38427f0f41908eb51ad8842aed240242.png', '/menu-icons/v5-flat-skeuomorphic-blue/38427f0f41908eb51ad8842aed240242.png', '/platform/sys/file/download?id=38427f0f41908eb51ad8842aed240242', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('e7fc89824875e92c475e6fd3704ea9f1', 'MINIO', 'cug', '165_场地预约(old)_e9e46237.png', 'png', '51', '51.0 kB', 'e7fc89824875e92c475e6fd3704ea9f1.png', '/menu-icons/v5-flat-skeuomorphic-blue/e7fc89824875e92c475e6fd3704ea9f1.png', '/platform/sys/file/download?id=e7fc89824875e92c475e6fd3704ea9f1', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('cd64e36bf08bb4a2c1f3fd8c38e90fec', 'MINIO', 'cug', '166_场地预约_82356ff2.png', 'png', '58', '58.0 kB', 'cd64e36bf08bb4a2c1f3fd8c38e90fec.png', '/menu-icons/v5-flat-skeuomorphic-blue/cd64e36bf08bb4a2c1f3fd8c38e90fec.png', '/platform/sys/file/download?id=cd64e36bf08bb4a2c1f3fd8c38e90fec', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('ae2d6d77ea2ba8922d37ab6c88429008', 'MINIO', 'cug', '167_消息中心_40266809.png', 'png', '36', '36.2 kB', 'ae2d6d77ea2ba8922d37ab6c88429008.png', '/menu-icons/v5-flat-skeuomorphic-blue/ae2d6d77ea2ba8922d37ab6c88429008.png', '/platform/sys/file/download?id=ae2d6d77ea2ba8922d37ab6c88429008', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('a6357c304caae142f552f268e5966d57', 'MINIO', 'cug', '168_工会大数据_09abd6b8.png', 'png', '54', '53.6 kB', 'a6357c304caae142f552f268e5966d57.png', '/menu-icons/v5-flat-skeuomorphic-blue/a6357c304caae142f552f268e5966d57.png', '/platform/sys/file/download?id=a6357c304caae142f552f268e5966d57', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('b7f8ca64b4ca70ee14aa3e9bd0649e47', 'MINIO', 'cug', '169_年度预算申报_396309f2.png', 'png', '39', '38.9 kB', 'b7f8ca64b4ca70ee14aa3e9bd0649e47.png', '/menu-icons/v5-flat-skeuomorphic-blue/b7f8ca64b4ca70ee14aa3e9bd0649e47.png', '/platform/sys/file/download?id=b7f8ca64b4ca70ee14aa3e9bd0649e47', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('1f7a5cbdca6547a95bbb69eade8851f1', 'MINIO', 'cug', '170_预算申报_6be01be5.png', 'png', '39', '38.9 kB', '1f7a5cbdca6547a95bbb69eade8851f1.png', '/menu-icons/v5-flat-skeuomorphic-blue/1f7a5cbdca6547a95bbb69eade8851f1.png', '/platform/sys/file/download?id=1f7a5cbdca6547a95bbb69eade8851f1', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('e42a7995bf42d089133a483c9daaff4f', 'MINIO', 'cug', '171_经费预算管理_fe0ae2a7.png', 'png', '52', '51.6 kB', 'e42a7995bf42d089133a483c9daaff4f.png', '/menu-icons/v5-flat-skeuomorphic-blue/e42a7995bf42d089133a483c9daaff4f.png', '/platform/sys/file/download?id=e42a7995bf42d089133a483c9daaff4f', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('e406f644d922b0efa2c50580ef4dca87', 'MINIO', 'cug', '172_荣誉管理_31078d88.png', 'png', '45', '44.9 kB', 'e406f644d922b0efa2c50580ef4dca87.png', '/menu-icons/v5-flat-skeuomorphic-blue/e406f644d922b0efa2c50580ef4dca87.png', '/platform/sys/file/download?id=e406f644d922b0efa2c50580ef4dca87', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('a745dacec0cda95f849e4f21e31e8566', 'MINIO', 'cug', '173_评优评先_32bd9853.png', 'png', '40', '40.2 kB', 'a745dacec0cda95f849e4f21e31e8566.png', '/menu-icons/v5-flat-skeuomorphic-blue/a745dacec0cda95f849e4f21e31e8566.png', '/platform/sys/file/download?id=a745dacec0cda95f849e4f21e31e8566', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('d5ad8b087c6d12646a2d324370bbb08e', 'MINIO', 'cug', '174_新闻投稿_a4cfdc91.png', 'png', '38', '38.4 kB', 'd5ad8b087c6d12646a2d324370bbb08e.png', '/menu-icons/v5-flat-skeuomorphic-blue/d5ad8b087c6d12646a2d324370bbb08e.png', '/platform/sys/file/download?id=d5ad8b087c6d12646a2d324370bbb08e', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('f93ad109e30417aae741ee76d1845798', 'MINIO', 'cug', '175_职工建家_fac7e9f5.png', 'png', '40', '39.7 kB', 'f93ad109e30417aae741ee76d1845798.png', '/menu-icons/v5-flat-skeuomorphic-blue/f93ad109e30417aae741ee76d1845798.png', '/platform/sys/file/download?id=f93ad109e30417aae741ee76d1845798', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('3beb1065aefe8d0991c81ee094c8d4a1', 'MINIO', 'cug', '176_资产管理_d7c6c17e.png', 'png', '43', '43.5 kB', '3beb1065aefe8d0991c81ee094c8d4a1.png', '/menu-icons/v5-flat-skeuomorphic-blue/3beb1065aefe8d0991c81ee094c8d4a1.png', '/platform/sys/file/download?id=3beb1065aefe8d0991c81ee094c8d4a1', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('ebcddcbc72ce2961b4ba7e67b0bc64d0', 'MINIO', 'cug', '177_注册社团_946104dc.png', 'png', '49', '48.9 kB', 'ebcddcbc72ce2961b4ba7e67b0bc64d0.png', '/menu-icons/v5-flat-skeuomorphic-blue/ebcddcbc72ce2961b4ba7e67b0bc64d0.png', '/platform/sys/file/download?id=ebcddcbc72ce2961b4ba7e67b0bc64d0', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('ddd801157bf58265dd9e641482fe972b', 'MINIO', 'cug', '178_社团信息维护_f6485820.png', 'png', '37', '36.6 kB', 'ddd801157bf58265dd9e641482fe972b.png', '/menu-icons/v5-flat-skeuomorphic-blue/ddd801157bf58265dd9e641482fe972b.png', '/platform/sys/file/download?id=ddd801157bf58265dd9e641482fe972b', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('7acaa1e469e1ba6450f8563eb4b639fe', 'MINIO', 'cug', '179_社团入会_1287eb24.png', 'png', '44', '43.6 kB', '7acaa1e469e1ba6450f8563eb4b639fe.png', '/menu-icons/v5-flat-skeuomorphic-blue/7acaa1e469e1ba6450f8563eb4b639fe.png', '/platform/sys/file/download?id=7acaa1e469e1ba6450f8563eb4b639fe', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('46c041705eaec632dfa73d81b3dcc7b5', 'MINIO', 'cug', '180_社团入会_321fa0c8.png', 'png', '44', '43.6 kB', '46c041705eaec632dfa73d81b3dcc7b5.png', '/menu-icons/v5-flat-skeuomorphic-blue/46c041705eaec632dfa73d81b3dcc7b5.png', '/platform/sys/file/download?id=46c041705eaec632dfa73d81b3dcc7b5', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('0c1ca1983d4bbf604bce1f308cdf0920', 'MINIO', 'cug', '181_年度考核_1ddecada.png', 'png', '45', '45.2 kB', '0c1ca1983d4bbf604bce1f308cdf0920.png', '/menu-icons/v5-flat-skeuomorphic-blue/0c1ca1983d4bbf604bce1f308cdf0920.png', '/platform/sys/file/download?id=0c1ca1983d4bbf604bce1f308cdf0920', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('649ca2608f994767fb3d99e17cd646c3', 'MINIO', 'cug', '182_社团评优_3f09f8a9.png', 'png', '49', '49.5 kB', '649ca2608f994767fb3d99e17cd646c3.png', '/menu-icons/v5-flat-skeuomorphic-blue/649ca2608f994767fb3d99e17cd646c3.png', '/platform/sys/file/download?id=649ca2608f994767fb3d99e17cd646c3', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('f9185ffb5188272249a80d0985a8a078', 'MINIO', 'cug', '183_社团统计_b8817cce.png', 'png', '38', '37.9 kB', 'f9185ffb5188272249a80d0985a8a078.png', '/menu-icons/v5-flat-skeuomorphic-blue/f9185ffb5188272249a80d0985a8a078.png', '/platform/sys/file/download?id=f9185ffb5188272249a80d0985a8a078', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('b03b7789697fa8ceac4f6a3a8b07652d', 'MINIO', 'cug', '184_社团文化活动_509423f4.png', 'png', '49', '48.6 kB', 'b03b7789697fa8ceac4f6a3a8b07652d.png', '/menu-icons/v5-flat-skeuomorphic-blue/b03b7789697fa8ceac4f6a3a8b07652d.png', '/platform/sys/file/download?id=b03b7789697fa8ceac4f6a3a8b07652d', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('0335b1721abc858c9ee85cd724173142', 'MINIO', 'cug', '185_年度计划总结_e658f630.png', 'png', '53', '52.6 kB', '0335b1721abc858c9ee85cd724173142.png', '/menu-icons/v5-flat-skeuomorphic-blue/0335b1721abc858c9ee85cd724173142.png', '/platform/sys/file/download?id=0335b1721abc858c9ee85cd724173142', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('544e4eb6c6407beb92e0a338c48dfe4c', 'MINIO', 'cug', '186_活动申报_895089b9.png', 'png', '37', '36.9 kB', '544e4eb6c6407beb92e0a338c48dfe4c.png', '/menu-icons/v5-flat-skeuomorphic-blue/544e4eb6c6407beb92e0a338c48dfe4c.png', '/platform/sys/file/download?id=544e4eb6c6407beb92e0a338c48dfe4c', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('760c3374e24ee833b84f461e48adcc49', 'MINIO', 'cug', '187_活动申报_6bb151be.png', 'png', '37', '36.9 kB', '760c3374e24ee833b84f461e48adcc49.png', '/menu-icons/v5-flat-skeuomorphic-blue/760c3374e24ee833b84f461e48adcc49.png', '/platform/sys/file/download?id=760c3374e24ee833b84f461e48adcc49', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('2e98608b16f6af5fe12fe6684c7eb3de', 'MINIO', 'cug', '188_费用报销管理_e8d1ced0.png', 'png', '39', '39.0 kB', '2e98608b16f6af5fe12fe6684c7eb3de.png', '/menu-icons/v5-flat-skeuomorphic-blue/2e98608b16f6af5fe12fe6684c7eb3de.png', '/platform/sys/file/download?id=2e98608b16f6af5fe12fe6684c7eb3de', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('20126926855d26ff593f0b7c75a23d4c', 'MINIO', 'cug', '189_报销申请_6784436e.png', 'png', '45', '44.8 kB', '20126926855d26ff593f0b7c75a23d4c.png', '/menu-icons/v5-flat-skeuomorphic-blue/20126926855d26ff593f0b7c75a23d4c.png', '/platform/sys/file/download?id=20126926855d26ff593f0b7c75a23d4c', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('861a2cef9f874ad8cec926e9f2bc0f5e', 'MINIO', 'cug', '190_子女入学管理_36e59aa2.png', 'png', '51', '51.0 kB', '861a2cef9f874ad8cec926e9f2bc0f5e.png', '/menu-icons/v5-flat-skeuomorphic-blue/861a2cef9f874ad8cec926e9f2bc0f5e.png', '/platform/sys/file/download?id=861a2cef9f874ad8cec926e9f2bc0f5e', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('c519b7d6c7eb9078e9d3e57c0369015b', 'MINIO', 'cug', '191_建言献策_5a90e1f8.png', 'png', '39', '39.2 kB', 'c519b7d6c7eb9078e9d3e57c0369015b.png', '/menu-icons/v5-flat-skeuomorphic-blue/c519b7d6c7eb9078e9d3e57c0369015b.png', '/platform/sys/file/download?id=c519b7d6c7eb9078e9d3e57c0369015b', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('2f4992fd672f09fc3393643edb903a40', 'MINIO', 'cug', '192_两委委员推选_c3886b5f.png', 'png', '39', '38.6 kB', '2f4992fd672f09fc3393643edb903a40.png', '/menu-icons/v5-flat-skeuomorphic-blue/2f4992fd672f09fc3393643edb903a40.png', '/platform/sys/file/download?id=2f4992fd672f09fc3393643edb903a40', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('67d562a574ba049712ca28a01d147dae', 'MINIO', 'cug', '193_理论学习_6d2535e3.png', 'png', '36', '36.5 kB', '67d562a574ba049712ca28a01d147dae.png', '/menu-icons/v5-flat-skeuomorphic-blue/67d562a574ba049712ca28a01d147dae.png', '/platform/sys/file/download?id=67d562a574ba049712ca28a01d147dae', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('4de59e0b1190a5d6d23e45a3c4481c15', 'MINIO', 'cug', '194_会务管理_fbe27890.png', 'png', '42', '41.8 kB', '4de59e0b1190a5d6d23e45a3c4481c15.png', '/menu-icons/v5-flat-skeuomorphic-blue/4de59e0b1190a5d6d23e45a3c4481c15.png', '/platform/sys/file/download?id=4de59e0b1190a5d6d23e45a3c4481c15', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('3f68b9240e81d25e81a08f90e946e1e9', 'MINIO', 'cug', '195_职工素养培训_81567260.png', 'png', '46', '46.1 kB', '3f68b9240e81d25e81a08f90e946e1e9.png', '/menu-icons/v5-flat-skeuomorphic-blue/3f68b9240e81d25e81a08f90e946e1e9.png', '/platform/sys/file/download?id=3f68b9240e81d25e81a08f90e946e1e9', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('6cf1760ca5f6478dcea7f33c9d724b32', 'MINIO', 'cug', '196_生日祝福_f12f0f8d.png', 'png', '40', '40.3 kB', '6cf1760ca5f6478dcea7f33c9d724b32.png', '/menu-icons/v5-flat-skeuomorphic-blue/6cf1760ca5f6478dcea7f33c9d724b32.png', '/platform/sys/file/download?id=6cf1760ca5f6478dcea7f33c9d724b32', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('4243c9823d380bf6fac1e01fe784c192', 'MINIO', 'cug', '197_会议厅_ac32facf.png', 'png', '55', '54.9 kB', '4243c9823d380bf6fac1e01fe784c192.png', '/menu-icons/v5-flat-skeuomorphic-blue/4243c9823d380bf6fac1e01fe784c192.png', '/platform/sys/file/download?id=4243c9823d380bf6fac1e01fe784c192', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('d6dec563549f40d539687601c45baf49', 'MINIO', 'cug', '198_人员核对_1f9e482c.png', 'png', '35', '35.3 kB', 'd6dec563549f40d539687601c45baf49.png', '/menu-icons/v5-flat-skeuomorphic-blue/d6dec563549f40d539687601c45baf49.png', '/platform/sys/file/download?id=d6dec563549f40d539687601c45baf49', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('84d4236d18b2c3ef37f452ef2bb111d9', 'MINIO', 'cug', '199_健身卡_3d6a88f3.png', 'png', '37', '37.1 kB', '84d4236d18b2c3ef37f452ef2bb111d9.png', '/menu-icons/v5-flat-skeuomorphic-blue/84d4236d18b2c3ef37f452ef2bb111d9.png', '/platform/sys/file/download?id=84d4236d18b2c3ef37f452ef2bb111d9', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('d12598f3a2893e7054ece31c517d467d', 'MINIO', 'cug', '200_量化考核_fd9a298a.png', 'png', '48', '47.7 kB', 'd12598f3a2893e7054ece31c517d467d.png', '/menu-icons/v5-flat-skeuomorphic-blue/d12598f3a2893e7054ece31c517d467d.png', '/platform/sys/file/download?id=d12598f3a2893e7054ece31c517d467d', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('2084a6a74acc26ffdacee69688fe351f', 'MINIO', 'cug', '201_分工会自评_7a5c41f2.png', 'png', '40', '39.5 kB', '2084a6a74acc26ffdacee69688fe351f.png', '/menu-icons/v5-flat-skeuomorphic-blue/2084a6a74acc26ffdacee69688fe351f.png', '/platform/sys/file/download?id=2084a6a74acc26ffdacee69688fe351f', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('b8e1e78de95c5deb0d68927e6456044b', 'MINIO', 'cug', '202_生日祝福_93487f22.png', 'png', '40', '40.3 kB', 'b8e1e78de95c5deb0d68927e6456044b.png', '/menu-icons/v5-flat-skeuomorphic-blue/b8e1e78de95c5deb0d68927e6456044b.png', '/platform/sys/file/download?id=b8e1e78de95c5deb0d68927e6456044b', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('86e65c679e20f6d534d6bf17636cc229', 'MINIO', 'cug', '203_单位管理_c2f9569e.png', 'png', '33', '33.0 kB', '86e65c679e20f6d534d6bf17636cc229.png', '/menu-icons/v5-flat-skeuomorphic-blue/86e65c679e20f6d534d6bf17636cc229.png', '/platform/sys/file/download?id=86e65c679e20f6d534d6bf17636cc229', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('d087820cc083371731515adc4e41cb73', 'MINIO', 'cug', '204_工会管理_51b1e376.png', 'png', '37', '36.6 kB', 'd087820cc083371731515adc4e41cb73.png', '/menu-icons/v5-flat-skeuomorphic-blue/d087820cc083371731515adc4e41cb73.png', '/platform/sys/file/download?id=d087820cc083371731515adc4e41cb73', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('5e298a0010b66ac5b6c3dc5aeb5b440d', 'MINIO', 'cug', '205_系统设置_72e8f153.png', 'png', '37', '37.3 kB', '5e298a0010b66ac5b6c3dc5aeb5b440d.png', '/menu-icons/v5-flat-skeuomorphic-blue/5e298a0010b66ac5b6c3dc5aeb5b440d.png', '/platform/sys/file/download?id=5e298a0010b66ac5b6c3dc5aeb5b440d', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('a79e1c5d38a350f5bde62b5d0f9b44fe', 'MINIO', 'cug', '206_基础管理_a993711d.png', 'png', '39', '39.2 kB', 'a79e1c5d38a350f5bde62b5d0f9b44fe.png', '/menu-icons/v5-flat-skeuomorphic-blue/a79e1c5d38a350f5bde62b5d0f9b44fe.png', '/platform/sys/file/download?id=a79e1c5d38a350f5bde62b5d0f9b44fe', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('a84e2883602abd6be8677595c0d67def', 'MINIO', 'cug', '207_活动报名_5cc02dac.png', 'png', '35', '35.2 kB', 'a84e2883602abd6be8677595c0d67def.png', '/menu-icons/v5-flat-skeuomorphic-blue/a84e2883602abd6be8677595c0d67def.png', '/platform/sys/file/download?id=a84e2883602abd6be8677595c0d67def', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('f9a1009a28d370c76df7f05b141612bb', 'MINIO', 'cug', '208_问卷调查_86dda8e2.png', 'png', '40', '40.1 kB', 'f9a1009a28d370c76df7f05b141612bb.png', '/menu-icons/v5-flat-skeuomorphic-blue/f9a1009a28d370c76df7f05b141612bb.png', '/platform/sys/file/download?id=f9a1009a28d370c76df7f05b141612bb', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('d9acd88c47bd8c575996a7fb85d550b4', 'MINIO', 'cug', '209_系统配置_3668daf0.png', 'png', '41', '40.6 kB', 'd9acd88c47bd8c575996a7fb85d550b4.png', '/menu-icons/v5-flat-skeuomorphic-blue/d9acd88c47bd8c575996a7fb85d550b4.png', '/platform/sys/file/download?id=d9acd88c47bd8c575996a7fb85d550b4', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('2170938bae373c66f8f51eceeed6982b', 'MINIO', 'cug', '210_数据管理_5ba85827.png', 'png', '41', '40.6 kB', '2170938bae373c66f8f51eceeed6982b.png', '/menu-icons/v5-flat-skeuomorphic-blue/2170938bae373c66f8f51eceeed6982b.png', '/platform/sys/file/download?id=2170938bae373c66f8f51eceeed6982b', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('880641f8e562ed8577fb8d49d9df4bf3', 'MINIO', 'cug', '211_场地预约_0a9fab6f.png', 'png', '58', '58.0 kB', '880641f8e562ed8577fb8d49d9df4bf3.png', '/menu-icons/v5-flat-skeuomorphic-blue/880641f8e562ed8577fb8d49d9df4bf3.png', '/platform/sys/file/download?id=880641f8e562ed8577fb8d49d9df4bf3', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('4f355a9c8b6294fbb2ad2e6064b03a33', 'MINIO', 'cug', '212_场地预约_e3399da9.png', 'png', '58', '58.0 kB', '4f355a9c8b6294fbb2ad2e6064b03a33.png', '/menu-icons/v5-flat-skeuomorphic-blue/4f355a9c8b6294fbb2ad2e6064b03a33.png', '/platform/sys/file/download?id=4f355a9c8b6294fbb2ad2e6064b03a33', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('44099a250bf70bd2f054ef0b81d4b099', 'MINIO', 'cug', '213_流程管理_8bfae2e4.png', 'png', '37', '37.0 kB', '44099a250bf70bd2f054ef0b81d4b099.png', '/menu-icons/v5-flat-skeuomorphic-blue/44099a250bf70bd2f054ef0b81d4b099.png', '/platform/sys/file/download?id=44099a250bf70bd2f054ef0b81d4b099', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('5567ec9af0df645c587da7643ec43c56', 'MINIO', 'cug', '214_我的预约_a58a5431.png', 'png', '41', '41.3 kB', '5567ec9af0df645c587da7643ec43c56.png', '/menu-icons/v5-flat-skeuomorphic-blue/5567ec9af0df645c587da7643ec43c56.png', '/platform/sys/file/download?id=5567ec9af0df645c587da7643ec43c56', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('0442c4741e1fad06e916c9a3e3ff6d33', 'MINIO', 'cug', '215_校工会审核_f3c752d1.png', 'png', '40', '39.7 kB', '0442c4741e1fad06e916c9a3e3ff6d33.png', '/menu-icons/v5-flat-skeuomorphic-blue/0442c4741e1fad06e916c9a3e3ff6d33.png', '/platform/sys/file/download?id=0442c4741e1fad06e916c9a3e3ff6d33', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('c6754f1997880df46a8fae7d038b6a38', 'MINIO', 'cug', '216_场地预约_26e7dc9c.png', 'png', '58', '58.0 kB', 'c6754f1997880df46a8fae7d038b6a38.png', '/menu-icons/v5-flat-skeuomorphic-blue/c6754f1997880df46a8fae7d038b6a38.png', '/platform/sys/file/download?id=c6754f1997880df46a8fae7d038b6a38', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('53d254c917da9222f61ef9e198de80a5', 'MINIO', 'cug', '217_普惠疗休养_68ac8d18.png', 'png', '49', '48.7 kB', '53d254c917da9222f61ef9e198de80a5.png', '/menu-icons/v5-flat-skeuomorphic-blue/53d254c917da9222f61ef9e198de80a5.png', '/platform/sys/file/download?id=53d254c917da9222f61ef9e198de80a5', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('863a32cfe3e2441b11d7ef582efe19a9', 'MINIO', 'cug', '218_疗休养报名_f30cfea5.png', 'png', '46', '46.0 kB', '863a32cfe3e2441b11d7ef582efe19a9.png', '/menu-icons/v5-flat-skeuomorphic-blue/863a32cfe3e2441b11d7ef582efe19a9.png', '/platform/sys/file/download?id=863a32cfe3e2441b11d7ef582efe19a9', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('7575966ac094d6e6b89d09dd4e875885', 'MINIO', 'cug', '219_场地预约_f50b3389.png', 'png', '58', '58.0 kB', '7575966ac094d6e6b89d09dd4e875885.png', '/menu-icons/v5-flat-skeuomorphic-blue/7575966ac094d6e6b89d09dd4e875885.png', '/platform/sys/file/download?id=7575966ac094d6e6b89d09dd4e875885', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('69a76d56735635ec225b70051e073309', 'MINIO', 'cug', '220_学习教育平台_a0f47f6a.png', 'png', '40', '39.7 kB', '69a76d56735635ec225b70051e073309.png', '/menu-icons/v5-flat-skeuomorphic-blue/69a76d56735635ec225b70051e073309.png', '/platform/sys/file/download?id=69a76d56735635ec225b70051e073309', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('68d074dea722443c5150fe3b832be738', 'MINIO', 'cug', '221_普惠疗休养_b7c63f0c.png', 'png', '49', '48.7 kB', '68d074dea722443c5150fe3b832be738.png', '/menu-icons/v5-flat-skeuomorphic-blue/68d074dea722443c5150fe3b832be738.png', '/platform/sys/file/download?id=68d074dea722443c5150fe3b832be738', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('f4397f0e4af50a213f4789e8c0510af6', 'MINIO', 'cug', '222_疗休养报名_b7c63f0c.png', 'png', '46', '46.0 kB', 'f4397f0e4af50a213f4789e8c0510af6.png', '/menu-icons/v5-flat-skeuomorphic-blue/f4397f0e4af50a213f4789e8c0510af6.png', '/platform/sys/file/download?id=f4397f0e4af50a213f4789e8c0510af6', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('f6607e7d1aa359689d64f4cd45383cb5', 'MINIO', 'cug', '223_我的疗休养_d3020be8.png', 'png', '47', '46.8 kB', 'f6607e7d1aa359689d64f4cd45383cb5.png', '/menu-icons/v5-flat-skeuomorphic-blue/f6607e7d1aa359689d64f4cd45383cb5.png', '/platform/sys/file/download?id=f6607e7d1aa359689d64f4cd45383cb5', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('4bd725febe3e8105556959f7af988987', 'MINIO', 'cug', '224_分工会审核_80734d95.png', 'png', '40', '39.5 kB', '4bd725febe3e8105556959f7af988987.png', '/menu-icons/v5-flat-skeuomorphic-blue/4bd725febe3e8105556959f7af988987.png', '/platform/sys/file/download?id=4bd725febe3e8105556959f7af988987', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('9bfe408b11963fc3da990e0edbbc4250', 'MINIO', 'cug', '225_校工会审核_08793469.png', 'png', '40', '39.7 kB', '9bfe408b11963fc3da990e0edbbc4250.png', '/menu-icons/v5-flat-skeuomorphic-blue/9bfe408b11963fc3da990e0edbbc4250.png', '/platform/sys/file/download?id=9bfe408b11963fc3da990e0edbbc4250', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('d5cc82d4fdeba1c97bfaa1f2ba0ff48e', 'MINIO', 'cug', '226_学习教育平台_3af0f040.png', 'png', '40', '39.7 kB', 'd5cc82d4fdeba1c97bfaa1f2ba0ff48e.png', '/menu-icons/v5-flat-skeuomorphic-blue/d5cc82d4fdeba1c97bfaa1f2ba0ff48e.png', '/platform/sys/file/download?id=d5cc82d4fdeba1c97bfaa1f2ba0ff48e', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('a2e470e73fba0a9029f062ca161aaabe', 'MINIO', 'cug', '227_学习教育首页_82946217.png', 'png', '40', '40.4 kB', 'a2e470e73fba0a9029f062ca161aaabe.png', '/menu-icons/v5-flat-skeuomorphic-blue/a2e470e73fba0a9029f062ca161aaabe.png', '/platform/sys/file/download?id=a2e470e73fba0a9029f062ca161aaabe', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('2adf711e5009bf7a2b74245ffba749bf', 'MINIO', 'cug', '228_我的学习_3e9a7611.png', 'png', '44', '44.4 kB', '2adf711e5009bf7a2b74245ffba749bf.png', '/menu-icons/v5-flat-skeuomorphic-blue/2adf711e5009bf7a2b74245ffba749bf.png', '/platform/sys/file/download?id=2adf711e5009bf7a2b74245ffba749bf', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('d390359d7c76b5a7406e2634b77031aa', 'MINIO', 'cug', '229_荣誉台账_47a997dc.png', 'png', '42', '41.9 kB', 'd390359d7c76b5a7406e2634b77031aa.png', '/menu-icons/v5-flat-skeuomorphic-blue/d390359d7c76b5a7406e2634b77031aa.png', '/platform/sys/file/download?id=d390359d7c76b5a7406e2634b77031aa', NULL, NULL, '', 1785994967344, '', 1785994967344, 0),
+('f695e0abe3121d36242fd899c693c49b', 'MINIO', 'cug', '230_荣誉展示_2a93542d.png', 'png', '49', '49.5 kB', 'f695e0abe3121d36242fd899c693c49b.png', '/menu-icons/v5-flat-skeuomorphic-blue/f695e0abe3121d36242fd899c693c49b.png', '/platform/sys/file/download?id=f695e0abe3121d36242fd899c693c49b', NULL, NULL, '', 1785994967344, '', 1785994967344, 0)
+ON DUPLICATE KEY UPDATE
+ `bucket` = VALUES(`bucket`),
+ `name` = VALUES(`name`),
+ `sizeKb` = VALUES(`sizeKb`),
+ `sizeInfo` = VALUES(`sizeInfo`),
+ `objName` = VALUES(`objName`),
+ `storagePath` = VALUES(`storagePath`),
+ `downloadPath` = VALUES(`downloadPath`),
+ `updatedAt` = VALUES(`updatedAt`),
+ `delFlag` = 0;
+
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d4239ab512e02e319bde38b07d4776a0' WHERE `id` = '2e6f393072904de3a80b10a00d3eeea5';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=50988a1ded823d35c0d854afb2692b57' WHERE `id` = '64ace2097a0341c8ba2da1961cda671f';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=8a67dd727502fecf8855e4e913cf8e1e' WHERE `id` = 'eb18aa5741e64ce0bcaa824119d720a8';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=59955c44f86d8d0f45fd8f3e0d614612' WHERE `id` = '835cb68e14e74f7bbf6cf5a1e0659a26';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d2f23637ecfd8f39cb46c25876223eeb' WHERE `id` = '10ebaa5b633f42bf9f8768a942c53fb5';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=9a7df21c6bd1f87d9eda769f00b40d89' WHERE `id` = 'e7cf2f56415f4e1dacfb415b42045d4c';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=b41ca4fa2c2462254bb6d7efffc285a4' WHERE `id` = '40a293cce5474cb58503435cb5a2fb14';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=3b0245e70916a36073e0fef16f2e1f32' WHERE `id` = '2666d0aeb0a84c15bcbb7802433e0070';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=202d0ae8211611a6947ff7caecbe7e2b' WHERE `id` = 'ea574347b35a4c68bd02dc1cd2eb9e5f';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=4e2070b1c0908d460dbf67f01818d29c' WHERE `id` = '9441d18cd87f48d0b9f49d9f7103e55b';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=7b10699834f961eda7a12df20a6e1ce7' WHERE `id` = '44a59a2b8a6b48efa35eda8b16558a26';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=662b152a6a5d2b7b694a4076cdd218e3' WHERE `id` = '1c2aee7dc9cc4ef1b2977d1f1013cc16';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=39325d6ef536fa6413c6a9e2edb98425' WHERE `id` = '11db68564eba499da35d9d5fbdf63874';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=4084d4436cbfa13f84a9dca9177ce6ab' WHERE `id` = 'd5d7964e86c54a8e993f59fa78186e9d';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=7339d3c16569a5c925794378a300fa9e' WHERE `id` = 'c44115254326463682aba8ddd7f58c5b';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=99eca55c6eea6eb0451aeb4fdcdd0942' WHERE `id` = 'eb4ed857e2da407981f60e29206b25f8';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=0532afa3620e20113505b03755959ee0' WHERE `id` = 'c4b99724f4bc46be97608a10d84d7020';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=3d7c1a8b6778409f063cfd5197649d99' WHERE `id` = '56835d074f3243f4b89b5cbb6cb92dfc';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=7cd72e99031df0c21431ad64d0ac72a8' WHERE `id` = '304278a0ce2e49ac94758e49ce863170';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d2a477739ecf817c425e3113d66b0a01' WHERE `id` = '2b9b7227466c4889a314a8bc0236fd84';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d608ed7f50b2fda7c9228372ba8012b0' WHERE `id` = 'ff182281b3284863b13135f08407b5aa';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=2b16431101b09760db12387a3714d3c6' WHERE `id` = '7c79171d88654fc996b2d1eeb93b75d9';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=e0d5aa775264eae8d49114a8f3bf82e9' WHERE `id` = '32a51579ed594d3d9c272e3377110635';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=1fda43541284c86b8d5f406ee5ebf1e0' WHERE `id` = '6bdef282dac0405e9738fb159e1a2d46';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=f9b7a26ef993a9808b09c67f73d2d296' WHERE `id` = 'eeaf336622364a178392c20cfbd6bb0b';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=b83956a3a3162f17513333e8dfe91f49' WHERE `id` = 'b27178ff03df4fdbab5feeea0224a992';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=969f3bc275bbd917b3e3444752d9de38' WHERE `id` = '87611b6d78bb490080f3456c53a99e07';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d54945a79bce326c126a17ffa7dedd86' WHERE `id` = 'd0ee5ab9fa3247cf813514a88437536f';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=012f4e24cb99feeae830b9e5956f730a' WHERE `id` = 'af963d19d77a452db436174332231cb3';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=71f1a5bdd53422a302d50565ed6d8ca7' WHERE `id` = 'f7a890c73c4545aeb8009de7b552f5e6';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=01ac13ee1b86635f406704686b2826cb' WHERE `id` = '41410dbe4ae34a82b982bae5b11665a8';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=ff390faffeed11c872ff43c268fc42c8' WHERE `id` = '5e0c533552d94e189f3e9ed0b847eb97';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=b077d67b5add801672329f19deedef51' WHERE `id` = 'b8bcaa94ac2d45b88c796626bb42cf99';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=0784cad3fc2147bafafc22cdb00b32b8' WHERE `id` = '7af124e126044917920a39382666d488';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=ca4ddf8871ab60754812c61781e3820a' WHERE `id` = '2de433e4f8494cd3bcd86a4d5f7931e2';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=92251f17382d770a99d6399a9245fed2' WHERE `id` = '840648058ebf48e3a294fdbdb9b3453a';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=9b5bf30597169d4b597ec15c64746589' WHERE `id` = 'dbd21f6b79434b34b7369df7a48589a4';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=bff0da0374934156eaf7008420281877' WHERE `id` = 'e585d2cac7ef4b6ba7ca61a1ad663c59';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=9ff5f7ccbf1584cc09c8b0b0b547907b' WHERE `id` = '7e2b850c0934472282805f5fddaefa87';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=fe79030ce09863147010927ef79d4804' WHERE `id` = '8f27ac9fd7f644edba46868204b5ede2';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=46ca54df1bb66aaec8d89be47ed888d9' WHERE `id` = '313842fc6f5c4d589658a9d0fc0f25b7';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=7650a2a028223ae8380c946d96551b56' WHERE `id` = 'dcf6c19011a9481898eb5277f24e885a';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=128a3ca23138c341b259ef88521818c8' WHERE `id` = '13d50644bc8141ae8e32a0b11e90045d';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=111f52a632d37ba3029d768a70e59426' WHERE `id` = 'c547be26c12c41199dfff259a4c039ca';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=a5b94ab758eb078c51a68bd8b74d0b63' WHERE `id` = 'f3ae0a075cd94d24b0bc1d4aec5565f7';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=f56d0ebb12e367095873a4a2bafa362e' WHERE `id` = '00448f6955cd441c8677dc2eca12006b';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=e85273b4715e551e7a0be1e4c237e9db' WHERE `id` = '024811fd168e44948e6ab84911fc26bb';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=e7d21d8058319281fc750720196338b3' WHERE `id` = '9bfd257eb7974763a1035a5c82b966f7';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=e229c7c88be79c83cbb204273e1e837a' WHERE `id` = '7492992ba3564d35938d133d7191bb0e';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=64e9baf4931fd5414ca105cbe6771346' WHERE `id` = '330e42e0ae914f5392b96fb933f17b5b';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=dfe30264324d45f30e36a5209c7a3b67' WHERE `id` = '87a2dcfac0da4ec4870b65693807a4d1';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d2095854e67dcf28dea1a4a975e90aba' WHERE `id` = 'c269f94a5c8a4a4a8c8de0bb8f8f9f9a';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=5c823bf5486ec8ae26e3233b0fe7f493' WHERE `id` = '6ddda19192c04f48ad76a507cd2e2c39';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=14ee697a9f479076eb3a113aaa025bcb' WHERE `id` = '3cf7ee61f2ed44d6838d92dea22d857b';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=4dee1a7937ccbffde68a358d05179e10' WHERE `id` = '51b21e9744614be8805113293902a7ce';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=8e867f31615a067757139cb0f37a2c3a' WHERE `id` = '23d30124199b486d8af79aba62440b15';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=0cc926265e46a20bd7750bd23ef64ea7' WHERE `id` = 'd736e4d7e8644cf38f248e7ad87ed6ad';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=b20526ea21e6d034a1335123e4db2440' WHERE `id` = '35a9239d754c47b9afccce173cb72d64';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=a4bc152d86f817fa2cf87ee142996d48' WHERE `id` = 'd4cab4ba599041e4b2b89cb74e7e4f35';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=febd687b512a37aa151284d0d6249a9c' WHERE `id` = '0a2bfc8579034908baf6d035a7b14e0a';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=414f0d597613854fb20d316c9471b32e' WHERE `id` = 'c03fbf17e7094f5f9d174f694dc93131';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=5b82cabae27a69bb71daa26cbc010965' WHERE `id` = '56620c51729f4c59a69c03ba8f5a80fc';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=5e63cc5c28e869fdae9d7209e0e34316' WHERE `id` = 'ef46a58794044c73a0d1197c7b6fe41c';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=1e663ad85c938f9dc3591306efa12ef2' WHERE `id` = 'c6a2ec8dc2f84f2fbba9673797e10faa';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=50ed9525a58d1f55a53dc58aa2dffc1d' WHERE `id` = '7b21d46827e9451c84809b53c1c08e2b';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=04528f30323c0f89065ea88bfa5e1767' WHERE `id` = '43f06636029a4f16b4a8a1007312d422';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=835a6cb3de7045d78f7eb9dda0f3ba24' WHERE `id` = 'b6c224df9e6c4f678f931c9006a718f0';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=7fcea2eb85b32c7e08fe2d7838cf9f74' WHERE `id` = '297400c803404aa2a34f38d276eaced0';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=b5afef9259f3abae7b1bbb1d05b2fe5c' WHERE `id` = 'aa0ffd36239f4a13b61419744fd3fbbb';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=3fc3d984a41e9225e1f7710280fdac19' WHERE `id` = '7dc21dca53184791b587d9c654dccfa3';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=47fe77b9ff74053f555c339157e5e497' WHERE `id` = '939595b4c6754cb483a7d65227844c6e';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d45efe5411e254dc940f6e10f7c8f383' WHERE `id` = 'd073c1d866c0463ca571a658ee5c9760';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d964d19857c59f3e5dd282620f1a213e' WHERE `id` = '3f88a4f679fc4d78b9557055cc4bc1ae';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=141fc4d6a9168b862aa5918726d0924a' WHERE `id` = '8a77d32c8f9145f48f376e0886cefc59';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=185b9668345c1775c8b34642f6108872' WHERE `id` = '44423a17da734e318e69aa99560c81c0';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=ce06d45189f54739dc25a391b6c2fe85' WHERE `id` = '3e10265306224ac18c4b4c7e3d7c92d0';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=0738309559b2647c5ef8b38ed8f39080' WHERE `id` = 'ac2516a6788a4be98ffa44c5842568bb';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=0f2717dd006be9e5db67442377679f91' WHERE `id` = '59d6ba7c321a43548f04120ed1936d32';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=91e5dc12db888366c17e61c9121ff69c' WHERE `id` = '6b5adca77c454fffbe112da4096a25d6';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=81ac98687f68e252042807a459a988df' WHERE `id` = '575660216c844b23a1fb9ae526ec180c';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=7a61acfc8a2896f36ca0f140a8c00f93' WHERE `id` = '1375120f807e4c5996f91ff77f043c59';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=24565ab537cc29fdc1f8398d57cba2c9' WHERE `id` = '2c61ac06b95d4b34a0e300782b4ac267';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=024f728cf7476458d372d9c13bd9f937' WHERE `id` = '893016b4db414bdb83eb33484c62f23a';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=08e92fd1ea7f5e1d6c3f0ff4ae9650f8' WHERE `id` = 'dbaba7b31ae9484492c766286371a0be';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=8060ce47970cadcf7dc3bd41c0ed20d9' WHERE `id` = '898f95af62dc47f08ea29bbbfdf89337';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=ddd9c5c2fb28db177956a849ff2352df' WHERE `id` = 'fb16e44eff3f4ce5b5ecccaa2c0f9528';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=da2e93c2a9491893ebd5d166f47bc545' WHERE `id` = '42d1b0ccbf254dfba7513d713c1f1489';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=bcb91e996ad91fc133ce2432203556bf' WHERE `id` = '811cf28ce73c478e8f6f22827ed8f2aa';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=0467db4198d856e2180f89796c1ad62e' WHERE `id` = '57accf35655f40cb897917167bcad496';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=f27149a8370b2e9e0849ca9028d6cb66' WHERE `id` = '05f829da70c541929e993968cf802a1c';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=1d9097f1ddf8ea04323327354a010ae9' WHERE `id` = 'a8966b0e0e174a8480a474979b6257b4';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=be4c7a2b027046b129bed6a27049d841' WHERE `id` = '893a216d09b0443bb736708961cf2eeb';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=07e12bf38d38c4ab75dd01b46ae03963' WHERE `id` = '0c4ccaece05f45f8b0533cedb5ea0630';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=e93b9ec54bd39a242c9c81067eb64b61' WHERE `id` = 'a112c7db9e554a39b73ca00fd3964d9e';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=e61bb788e312c599a4f1d4c583ec56e9' WHERE `id` = '23883f9ae2394684999611698f34c3d8';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=dd8b8a073342b416ff6f46cec3d1a6cf' WHERE `id` = 'e5851cdfc62b4623886b9608c42f2666';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d4d985afcccd436885d1cdf4b9c0c956' WHERE `id` = 'abfbd5db63f14be0a51356e50f0bbe30';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=30a17bd43525a7d8b7f73648253b2353' WHERE `id` = '99252619ec5e4072a98ac503fd869774';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=0e9014e6360d1953ddd1fe0121f09d02' WHERE `id` = '6a54861491554fdc9cd83a49a580ad4f';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=90320751d0f5de5ddc71974b0259f468' WHERE `id` = '4a764f7db2e7429ab5e348a6d81621db';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=c31947c4e4f9f0064f1a987bbdae3548' WHERE `id` = 'c13558b09136482187b4725d4ed6936e';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=b3ca619e943008ec66c87ff3ea54caf0' WHERE `id` = 'f808e1e1453347e8a38cb4aa79a9e865';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=30052dd19f6e69faa6a546e3692f4477' WHERE `id` = '6c3fcd1a66f44d8980214673959e46fe';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=786d70bd8e118fbae8efebbb8df64762' WHERE `id` = '16388b3dd01440a180eca20da23bbcd9';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=375d5bf016d1183211557873fcd5de57' WHERE `id` = 'dc2763927e3a4733a08969ab7bbd1390';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=8e50b6ef905bec105c038826fd1e1dd6' WHERE `id` = '50bf62d0b7da4c58a60884aeaa140fc2';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=1dfe6590295b676e1a6f2796b4c93d70' WHERE `id` = '05f308a2897b424d9deb9aa6b713c779';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=a9df7e58e16784a38f33e7de7f841462' WHERE `id` = 'd54c4078b7b748b9a19d49ac5f6aacfa';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=e71f6cdfab618af4e1f579c12acf7da4' WHERE `id` = 'e04f9463a00e403eb0428f79c65d9ddc';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=e6ea330dc1f4a9ecc13b79e0070af510' WHERE `id` = '5a994c0fceca4cdd9255ddbd8c902e93';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d81c6cf64003517afbca47bdb083e355' WHERE `id` = 'bfd9983cd5924d189eef17ff250052bf';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=80542cb6b1b00e417e7257fe3c11f333' WHERE `id` = 'd1abc76f12d44dae98dd3bb37945a205';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=04ddef4f8d79b825bc19774d9137e835' WHERE `id` = '0d6c8aacf875487fb89a1ec0cbf76c52';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d3ec6bccb26ff4c9fb79232e5f02ef17' WHERE `id` = '17c32edb450c4a8e8faf5c1fcf27684c';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=aa1a120e2814b4928c50dc8d8ed64c10' WHERE `id` = '62b1effb0c0d4f48b2b3449fe3183626';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=72d78f2e581b4774d683c6247ba8ba82' WHERE `id` = 'ed6f15a03f5240ffb142f4435b67d6cc';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=0b35ac8df36d0307cccd3a7abead9bbd' WHERE `id` = '3f09df78e9c746569a0e6e62ea8beea4';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=f0752418a1fa85076043d8b30a8162a9' WHERE `id` = '70b4f9a163e644b9a900612586b7d2e8';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=b445e5fbe073d6fec6821bfa2d00d0ad' WHERE `id` = '8f752c502e374ded8419fdbb16362814';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=c099744c28258127c82c9d90a506280a' WHERE `id` = '22847e5583744d2298736b9d2a0e7211';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=9b293ef36ad342406317aa5ddb25de1e' WHERE `id` = 'ef93e3b96c57416c851c8a69bd220869';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=80167705b15e822ef298da8bf0e6238c' WHERE `id` = 'd34fa7359f974f5c81e21d2746fcca7e';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=9c9ed841146ead12774e305127c70655' WHERE `id` = '94b6959991c74058b952f8bd0e0ebf81';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=c15e09dd7448821d331443c415818e00' WHERE `id` = '15156ec9f7364944aabea48475e1da80';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=7663b86e0083ccec5451e4ad753e323a' WHERE `id` = '3b49290f7db44130b9f6394a8212321f';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=dc3a4487ca0708d62662e7f03aa031fa' WHERE `id` = '5e024c7466c5462a80fe94f2fc89f129';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=215f19af8b2ba2773c07e8f804541697' WHERE `id` = 'c08d85433007462db7efc429fe508a46';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=f487372d9c3c26c8cea86040602436b7' WHERE `id` = '261dd7f7fa3245c3937054e9792d8df0';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=5d35429b46c062cc376896db6abffed9' WHERE `id` = '9e0070b7abc84aa3a4577042e0b7c3e1';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=82fd6812dc635f7ea8221cedbc680d3c' WHERE `id` = '360f1c3f03764c47a852caf04216d7d1';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=5e12d18fabe9153c13a11bdee1131a54' WHERE `id` = 'a9d5ff1158c346769db5edd3f74bb3ba';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=b8175cc96b7b6a5a785820997ce6ed05' WHERE `id` = '5f2c021818d54988b10b065a6ddd3d0b';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=9104a4f38f453f420cf456abf10bc5f8' WHERE `id` = '10ecb801ca664453bcfdb6a1bd9fd04d';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=0654d117a3fb0fe061064096744bc6b0' WHERE `id` = '5ae60a2c86e741ea92898945ad7f62b4';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d5dd0484ed5b8baa66d75d3ada43e955' WHERE `id` = 'ca43757872164c3eabd43692f7102fba';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=8517a2b51288572a7616218682da26cc' WHERE `id` = 'b0febdbf99634bb388f65f2b8d9d6b42';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=7307bab899c6747ad89a0b351c2e306e' WHERE `id` = 'd11cf9fe9eed4a338d7caa0af2071ea7';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=458502126d65e18c89bf84e1242a0e6c' WHERE `id` = '04fd4ddf2cff4091aa64926350a60437';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=605b72241fa221e989eda7c14bb41373' WHERE `id` = '0c08a2e7690940d9a46044cfc3470d92';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=b905d8fd3e85338117038ff726278f3d' WHERE `id` = '871f822c2884401498278b0a78b69da3';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=64c7b517599ba0099ce7a853e85738b2' WHERE `id` = '612a4fa1142d426699ddb81c5b7e4e76';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=161ee1a6787b0aba72f46ab181e4ab53' WHERE `id` = 'c8d0855a2aac4ca386d36976d0431cdd';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=7cad7841948398a495bd6d535ec35baf' WHERE `id` = 'c0ba4f08ed2e42f0887ea20d122757fb';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=780975e27c40decf02a0ad9a58406b48' WHERE `id` = 'f148c76e8f2942dc86be645fdb7ab09c';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=7d9b1dbd86a892b96268f5cc0458093a' WHERE `id` = 'b0cc19870a994b748f8d260088f7ffe7';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=4bfe67d3bce0536922b83aaf998ff8bf' WHERE `id` = 'ca9e5652184e4c6aab3a8b953ef63e2a';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=653f431f3f68e5529e7c746648ee3f17' WHERE `id` = '093e1e2980544d288938b8a8da57d7f0';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=69b7a9902bb48a6e668bd9207f3ad900' WHERE `id` = '519c8f5ab43840c7903b4d80ac41ac51';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=e549fd7fa363215d798460f1ad7b9542' WHERE `id` = '73df1dda0e7a4188b9fa4522fc6ef888';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=0d0f799d5d6e7635020d5345c78a64ae' WHERE `id` = 'cf47b9d67dd34b94b8424a62371ed966';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=e574d0f9924e2d12d1c3d214f0a59761' WHERE `id` = 'e08ff1792e7849d1b97981f3583a0abe';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=fca1fa026b15d8e7106271ce4ca7e5ef' WHERE `id` = '69280dbb3e024e558e22b834fa8249c7';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=72e88557e860fe349597c9100a4029a7' WHERE `id` = '0868f8b6f0a44fb7951c2c323ee1cd63';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=350e456eb0b9c091519e1733ff69cda1' WHERE `id` = 'c97ad132a4374e01ad39e5e089d08c43';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=7866849789d36e812e6eb0cffe8e75aa' WHERE `id` = '788400d0f7eb47edb795d41c460b14b8';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=f7f2b1cc448c75bb410d8ce4b0d75d4f' WHERE `id` = 'c1709519e07946389a026905a1db5900';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=aaa4b2b3fcc9daf1154dbcf878209b70' WHERE `id` = 'b759a93a16ef4037880efa23d48f49b5';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=447d5fedecfd3e3121854954142cebf4' WHERE `id` = '91d79e0f4e464f298e7a6b37217386d3';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=1d9e13caf37aa95665f63ad4e545e0a6' WHERE `id` = '737e57a39bae490e9c877d6e7453b046';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=398cfe57b1c727a434cd7c690d721217' WHERE `id` = '33e81fa045e248b19381abaee38f45ee';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=184782319d588117534eda54be0ca540' WHERE `id` = '77c8af32767644af914d16689e98948b';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=ba437ff0da2e7759d35c2afddb15f698' WHERE `id` = '1f917af28825403385cb385fc7e7bca0';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=7fb287d723da5ea7adab9f4426d02a59' WHERE `id` = 'd6132ff0c9534f7783cfda81ff60b5fd';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=38427f0f41908eb51ad8842aed240242' WHERE `id` = '1c643efa45d148d0b519938b2b282436';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=e7fc89824875e92c475e6fd3704ea9f1' WHERE `id` = 'e9e46237b841469585a77f8432edd55d';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=cd64e36bf08bb4a2c1f3fd8c38e90fec' WHERE `id` = '82356ff2bacf4821916cb42406f2552e';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=ae2d6d77ea2ba8922d37ab6c88429008' WHERE `id` = '4026680943ef441082a363de91927390';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=a6357c304caae142f552f268e5966d57' WHERE `id` = '09abd6b8afbc48349490717c3d05707e';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=b7f8ca64b4ca70ee14aa3e9bd0649e47' WHERE `id` = '396309f21f5441b78b42de12aaa4c273';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=1f7a5cbdca6547a95bbb69eade8851f1' WHERE `id` = '6be01be55b4347c599e43e66dfbef173';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=e42a7995bf42d089133a483c9daaff4f' WHERE `id` = 'fe0ae2a7d5fc4432996e3b8c369f0a18';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=e406f644d922b0efa2c50580ef4dca87' WHERE `id` = '31078d880fed42209331c69c580458c5';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=a745dacec0cda95f849e4f21e31e8566' WHERE `id` = '32bd9853db494301bb59757a55dc1c5d';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d5ad8b087c6d12646a2d324370bbb08e' WHERE `id` = 'a4cfdc91e93d4f16aeddaf27176955c5';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=f93ad109e30417aae741ee76d1845798' WHERE `id` = 'fac7e9f536f94033805173e16fb6f259';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=3beb1065aefe8d0991c81ee094c8d4a1' WHERE `id` = 'd7c6c17eb29142b38133984ee90dacb2';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=ebcddcbc72ce2961b4ba7e67b0bc64d0' WHERE `id` = '946104dc00ba4709acb9ec3d1abd3239';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=ddd801157bf58265dd9e641482fe972b' WHERE `id` = 'f6485820d6b54204a35c9a5ef9e5d0dc';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=7acaa1e469e1ba6450f8563eb4b639fe' WHERE `id` = '1287eb24e288460ab2651ba9c29ace32';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=46c041705eaec632dfa73d81b3dcc7b5' WHERE `id` = '321fa0c856f54a14993bed58cc1a95bc';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=0c1ca1983d4bbf604bce1f308cdf0920' WHERE `id` = '1ddecadaa25c47beaef2998c278d928a';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=649ca2608f994767fb3d99e17cd646c3' WHERE `id` = '3f09f8a9beb644229094e6aa1bce52b6';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=f9185ffb5188272249a80d0985a8a078' WHERE `id` = 'b8817cce3ae34d49844a7ea8d8b15f3f';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=b03b7789697fa8ceac4f6a3a8b07652d' WHERE `id` = '509423f4ae6e48a884ac55fa9be0b7ec';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=0335b1721abc858c9ee85cd724173142' WHERE `id` = 'e658f630b96e4774881abcf49d6780e7';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=544e4eb6c6407beb92e0a338c48dfe4c' WHERE `id` = '895089b920a548a9902d120c6b912d2c';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=760c3374e24ee833b84f461e48adcc49' WHERE `id` = '6bb151be653e49d696e385fe34fc5a17';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=2e98608b16f6af5fe12fe6684c7eb3de' WHERE `id` = 'e8d1ced00a1c480eaf0db5f4573763c4';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=20126926855d26ff593f0b7c75a23d4c' WHERE `id` = '6784436e45124205a465dcb9f0326b1d';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=861a2cef9f874ad8cec926e9f2bc0f5e' WHERE `id` = '36e59aa2bca64ffb99b7445c14f03489';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=c519b7d6c7eb9078e9d3e57c0369015b' WHERE `id` = '5a90e1f8263c49f5970389fc19b741ea';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=2f4992fd672f09fc3393643edb903a40' WHERE `id` = 'c3886b5f4e24430ea05cf1851f8b8f2c';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=67d562a574ba049712ca28a01d147dae' WHERE `id` = '6d2535e3117942808813ea213163c47c';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=4de59e0b1190a5d6d23e45a3c4481c15' WHERE `id` = 'fbe27890530743598216d902b2a0c915';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=3f68b9240e81d25e81a08f90e946e1e9' WHERE `id` = '81567260a1ef4efd85bcbc6618766e76';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=6cf1760ca5f6478dcea7f33c9d724b32' WHERE `id` = 'f12f0f8d012143d38c0080272ed887ff';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=4243c9823d380bf6fac1e01fe784c192' WHERE `id` = 'ac32facf5b0c4c6485599a5be90350ed';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d6dec563549f40d539687601c45baf49' WHERE `id` = '1f9e482ccebd41c182f6dca84f14f668';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=84d4236d18b2c3ef37f452ef2bb111d9' WHERE `id` = '3d6a88f3d9de4cc7b7862c2881b7963b';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d12598f3a2893e7054ece31c517d467d' WHERE `id` = 'fd9a298afb7f46aab3d2796c42da8e68';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=2084a6a74acc26ffdacee69688fe351f' WHERE `id` = '7a5c41f2e76a4d5ebfb6b19df7983fd2';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=b8e1e78de95c5deb0d68927e6456044b' WHERE `id` = '93487f22face4e18887d90154b70094a';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=86e65c679e20f6d534d6bf17636cc229' WHERE `id` = 'c2f9569ea8f742f8869e2a2faf8666a7';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d087820cc083371731515adc4e41cb73' WHERE `id` = '51b1e376ee6644eb8629b30857f96f27';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=5e298a0010b66ac5b6c3dc5aeb5b440d' WHERE `id` = '72e8f153e0ed40439c97e0bef43afb1e';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=a79e1c5d38a350f5bde62b5d0f9b44fe' WHERE `id` = 'a993711d11e444f1a7c08589a4497690';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=a84e2883602abd6be8677595c0d67def' WHERE `id` = '5cc02dac08c746bf965b4c441f5b7fb5';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=f9a1009a28d370c76df7f05b141612bb' WHERE `id` = '86dda8e2d0ab4703b6933c45b6705cf4';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d9acd88c47bd8c575996a7fb85d550b4' WHERE `id` = '3668daf0338a479985f455c8e61d6558';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=2170938bae373c66f8f51eceeed6982b' WHERE `id` = '5ba858277fa44aaf958b32055468f52a';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=880641f8e562ed8577fb8d49d9df4bf3' WHERE `id` = '0a9fab6f3ac84d8c95b08a05aa8a19fc';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=4f355a9c8b6294fbb2ad2e6064b03a33' WHERE `id` = 'e3399da9b2a64b28846e4f50df3cc4dd';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=44099a250bf70bd2f054ef0b81d4b099' WHERE `id` = '8bfae2e4dabb48528ee64963b7112d61';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=5567ec9af0df645c587da7643ec43c56' WHERE `id` = 'a58a5431a08e402eb6adc5e14eec1cb5';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=0442c4741e1fad06e916c9a3e3ff6d33' WHERE `id` = 'f3c752d16ca74e06acf859b9a3a08188';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=c6754f1997880df46a8fae7d038b6a38' WHERE `id` = '26e7dc9c76694fb0837237b071bc4a03';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=53d254c917da9222f61ef9e198de80a5' WHERE `id` = '68ac8d18e53b43e1829274c17836df6d';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=863a32cfe3e2441b11d7ef582efe19a9' WHERE `id` = 'f30cfea57bc44aac88824ee6fa0803ee';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=7575966ac094d6e6b89d09dd4e875885' WHERE `id` = 'f50b3389bbed484ebe3098745371e511';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=69a76d56735635ec225b70051e073309' WHERE `id` = 'a0f47f6a6d734c8b9c6ce5c0dfd80001';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=68d074dea722443c5150fe3b832be738' WHERE `id` = 'b7c63f0c73a44a9a8c4f3d3bb1a10001';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=f4397f0e4af50a213f4789e8c0510af6' WHERE `id` = 'b7c63f0c73a44a9a8c4f3d3bb1a10006';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=f6607e7d1aa359689d64f4cd45383cb5' WHERE `id` = 'd3020be8291342538d40aa8f1ae7813f';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=4bd725febe3e8105556959f7af988987' WHERE `id` = '80734d9573e34285859c5fcd70d60fe1';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=9bfe408b11963fc3da990e0edbbc4250' WHERE `id` = '08793469d707454eb7a692b13609230b';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d5cc82d4fdeba1c97bfaa1f2ba0ff48e' WHERE `id` = '3af0f040336741ff9dd754ccd83ab325';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=a2e470e73fba0a9029f062ca161aaabe' WHERE `id` = '82946217f37e466d87f123c6987991e1';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=2adf711e5009bf7a2b74245ffba749bf' WHERE `id` = '3e9a7611fa96490d8adc393387b1d65a';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d390359d7c76b5a7406e2634b77031aa' WHERE `id` = '47a997dcc93945b293f725d7171ff418';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=f695e0abe3121d36242fd899c693c49b' WHERE `id` = '2a93542d26c140e79e615edaa4ddda58';
+
+COMMIT;
diff --git a/target/classes/db/menu/update_sys_menu_pic_icons_minio.sql b/target/classes/db/menu/update_sys_menu_pic_icons_minio.sql
new file mode 100644
index 0000000..1935ed2
--- /dev/null
+++ b/target/classes/db/menu/update_sys_menu_pic_icons_minio.sql
@@ -0,0 +1,481 @@
+-- 工会系统H5菜单图标MinIO文件记录及菜单图标更新脚本
+-- 图标对象目录: menu-icons/v4/
+SET NAMES utf8mb4;
+START TRANSACTION;
+
+INSERT INTO `sys_file` (`id`, `engine`, `bucket`, `name`, `suffix`, `sizeKb`, `sizeInfo`, `objName`, `storagePath`, `downloadPath`, `thumbnail`, `extJson`, `createdBy`, `createdAt`, `updatedBy`, `updatedAt`, `delFlag`) VALUES
+('57ef8603692af334526e191c1e81301e', 'MINIO', 'cug', '001_教代会管理_2e6f3930.png', 'png', '44', '44.3 kB', '57ef8603692af334526e191c1e81301e.png', '/menu-icons/v4/57ef8603692af334526e191c1e81301e.png', '/platform/sys/file/download?id=57ef8603692af334526e191c1e81301e', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('8b152a98cf83bc6c20d2bb488fc48515', 'MINIO', 'cug', '002_子女信息管理_64ace209.png', 'png', '45', '45.3 kB', '8b152a98cf83bc6c20d2bb488fc48515.png', '/menu-icons/v4/8b152a98cf83bc6c20d2bb488fc48515.png', '/platform/sys/file/download?id=8b152a98cf83bc6c20d2bb488fc48515', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('e4cf62b0ac16798727612b74fbabac4d', 'MINIO', 'cug', '003_信息填写_eb18aa57.png', 'png', '40', '40.3 kB', 'e4cf62b0ac16798727612b74fbabac4d.png', '/menu-icons/v4/e4cf62b0ac16798727612b74fbabac4d.png', '/platform/sys/file/download?id=e4cf62b0ac16798727612b74fbabac4d', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('a8c6f9352f56519b4914ca02ab274242', 'MINIO', 'cug', '004_我的子女_835cb68e.png', 'png', '44', '44.2 kB', 'a8c6f9352f56519b4914ca02ab274242.png', '/menu-icons/v4/a8c6f9352f56519b4914ca02ab274242.png', '/platform/sys/file/download?id=a8c6f9352f56519b4914ca02ab274242', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('2b74945f5c0741be5a67be574c4eb3d3', 'MINIO', 'cug', '005_信息管理_10ebaa5b.png', 'png', '58', '58.3 kB', '2b74945f5c0741be5a67be574c4eb3d3.png', '/menu-icons/v4/2b74945f5c0741be5a67be574c4eb3d3.png', '/platform/sys/file/download?id=2b74945f5c0741be5a67be574c4eb3d3', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('c4817a606d8e722e939811cdb8bb0208', 'MINIO', 'cug', '006_子女入学_e7cf2f56.png', 'png', '45', '45.3 kB', 'c4817a606d8e722e939811cdb8bb0208.png', '/menu-icons/v4/c4817a606d8e722e939811cdb8bb0208.png', '/platform/sys/file/download?id=c4817a606d8e722e939811cdb8bb0208', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('7d0d5d3f95faf51875c8cebf5ef23181', 'MINIO', 'cug', '007_入学申报_40a293cc.png', 'png', '40', '40.2 kB', '7d0d5d3f95faf51875c8cebf5ef23181.png', '/menu-icons/v4/7d0d5d3f95faf51875c8cebf5ef23181.png', '/platform/sys/file/download?id=7d0d5d3f95faf51875c8cebf5ef23181', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('a472973503af14a20ae0f8f1c7d03634', 'MINIO', 'cug', '008_我的申报_2666d0ae.png', 'png', '41', '41.1 kB', 'a472973503af14a20ae0f8f1c7d03634.png', '/menu-icons/v4/a472973503af14a20ae0f8f1c7d03634.png', '/platform/sys/file/download?id=a472973503af14a20ae0f8f1c7d03634', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('8462dbea71f06a7257864c9bb77c7f9e', 'MINIO', 'cug', '009_分工会审核_ea574347.png', 'png', '44', '44.0 kB', '8462dbea71f06a7257864c9bb77c7f9e.png', '/menu-icons/v4/8462dbea71f06a7257864c9bb77c7f9e.png', '/platform/sys/file/download?id=8462dbea71f06a7257864c9bb77c7f9e', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('823b3b7f7707774625bb7fe9f5ebc416', 'MINIO', 'cug', '010_校工会审核_9441d18c.png', 'png', '44', '44.2 kB', '823b3b7f7707774625bb7fe9f5ebc416.png', '/menu-icons/v4/823b3b7f7707774625bb7fe9f5ebc416.png', '/platform/sys/file/download?id=823b3b7f7707774625bb7fe9f5ebc416', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('4b0a707d816c0f3abc6ff7fc3092e819', 'MINIO', 'cug', '011_教代会_44a59a2b.png', 'png', '44', '44.3 kB', '4b0a707d816c0f3abc6ff7fc3092e819.png', '/menu-icons/v4/4b0a707d816c0f3abc6ff7fc3092e819.png', '/platform/sys/file/download?id=4b0a707d816c0f3abc6ff7fc3092e819', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('3ea367f14cfd98eddb8e3fd685371fad', 'MINIO', 'cug', '012_代表阅览_1c2aee7d.png', 'png', '44', '43.5 kB', '3ea367f14cfd98eddb8e3fd685371fad.png', '/menu-icons/v4/3ea367f14cfd98eddb8e3fd685371fad.png', '/platform/sys/file/download?id=3ea367f14cfd98eddb8e3fd685371fad', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('6f35cd276d38e408522f4411a972ba9f', 'MINIO', 'cug', '013_提案管理_11db6856.png', 'png', '46', '46.3 kB', '6f35cd276d38e408522f4411a972ba9f.png', '/menu-icons/v4/6f35cd276d38e408522f4411a972ba9f.png', '/platform/sys/file/download?id=6f35cd276d38e408522f4411a972ba9f', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('efe85251bd9233d4c8d7e7f0fd17c17d', 'MINIO', 'cug', '014_撰写提案_d5d7964e.png', 'png', '45', '44.8 kB', 'efe85251bd9233d4c8d7e7f0fd17c17d.png', '/menu-icons/v4/efe85251bd9233d4c8d7e7f0fd17c17d.png', '/platform/sys/file/download?id=efe85251bd9233d4c8d7e7f0fd17c17d', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('827b20f69981eadcab0af82c6853e899', 'MINIO', 'cug', '015_我的提案_c4411525.png', 'png', '45', '45.3 kB', '827b20f69981eadcab0af82c6853e899.png', '/menu-icons/v4/827b20f69981eadcab0af82c6853e899.png', '/platform/sys/file/download?id=827b20f69981eadcab0af82c6853e899', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('b054908747aa76d3bbc2f94072ecdea9', 'MINIO', 'cug', '016_提案附议_eb4ed857.png', 'png', '46', '46.3 kB', 'b054908747aa76d3bbc2f94072ecdea9.png', '/menu-icons/v4/b054908747aa76d3bbc2f94072ecdea9.png', '/platform/sys/file/download?id=b054908747aa76d3bbc2f94072ecdea9', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('4a7ed34b91ecfa20f52055d031beac71', 'MINIO', 'cug', '017_团长审核_c4b99724.png', 'png', '45', '44.8 kB', '4a7ed34b91ecfa20f52055d031beac71.png', '/menu-icons/v4/4a7ed34b91ecfa20f52055d031beac71.png', '/platform/sys/file/download?id=4a7ed34b91ecfa20f52055d031beac71', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('81ffd7b1eb7b13353557efdce30a7ee2', 'MINIO', 'cug', '018_承办单位答复_56835d07.png', 'png', '45', '45.5 kB', '81ffd7b1eb7b13353557efdce30a7ee2.png', '/menu-icons/v4/81ffd7b1eb7b13353557efdce30a7ee2.png', '/platform/sys/file/download?id=81ffd7b1eb7b13353557efdce30a7ee2', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('5221f202257e65e39602d70d218c41b7', 'MINIO', 'cug', '019_分管校领导审批_304278a0.png', 'png', '45', '44.8 kB', '5221f202257e65e39602d70d218c41b7.png', '/menu-icons/v4/5221f202257e65e39602d70d218c41b7.png', '/platform/sys/file/download?id=5221f202257e65e39602d70d218c41b7', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('d60339858c907ede5bce05d675de9819', 'MINIO', 'cug', '020_反馈评价_2b9b7227.png', 'png', '45', '45.5 kB', 'd60339858c907ede5bce05d675de9819.png', '/menu-icons/v4/d60339858c907ede5bce05d675de9819.png', '/platform/sys/file/download?id=d60339858c907ede5bce05d675de9819', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('0718d029aeaf7fbf5fbf7442f885c116', 'MINIO', 'cug', '021_提案管理_ff182281.png', 'png', '46', '46.3 kB', '0718d029aeaf7fbf5fbf7442f885c116.png', '/menu-icons/v4/0718d029aeaf7fbf5fbf7442f885c116.png', '/platform/sys/file/download?id=0718d029aeaf7fbf5fbf7442f885c116', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('8370b80ebdf5dd5b85a8ba065a6b2133', 'MINIO', 'cug', '022_承办单位意见_7c79171d.png', 'png', '45', '45.5 kB', '8370b80ebdf5dd5b85a8ba065a6b2133.png', '/menu-icons/v4/8370b80ebdf5dd5b85a8ba065a6b2133.png', '/platform/sys/file/download?id=8370b80ebdf5dd5b85a8ba065a6b2133', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('9d3927e91ed007875a001344f061039a', 'MINIO', 'cug', '023_费用报销管理_32a51579.png', 'png', '53', '52.8 kB', '9d3927e91ed007875a001344f061039a.png', '/menu-icons/v4/9d3927e91ed007875a001344f061039a.png', '/platform/sys/file/download?id=9d3927e91ed007875a001344f061039a', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('d030abf3da1bf8c00d93e78586f4a9bc', 'MINIO', 'cug', '024_报销申请_6bdef282.png', 'png', '50', '50.0 kB', 'd030abf3da1bf8c00d93e78586f4a9bc.png', '/menu-icons/v4/d030abf3da1bf8c00d93e78586f4a9bc.png', '/platform/sys/file/download?id=d030abf3da1bf8c00d93e78586f4a9bc', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('822abad93728db1326baa27b4f2dbe04', 'MINIO', 'cug', '025_撰写提案_eeaf3366.png', 'png', '45', '44.8 kB', '822abad93728db1326baa27b4f2dbe04.png', '/menu-icons/v4/822abad93728db1326baa27b4f2dbe04.png', '/platform/sys/file/download?id=822abad93728db1326baa27b4f2dbe04', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('541f9d25077780099d4e4594bea2bb4e', 'MINIO', 'cug', '026_我的申请_b27178ff.png', 'png', '41', '41.1 kB', '541f9d25077780099d4e4594bea2bb4e.png', '/menu-icons/v4/541f9d25077780099d4e4594bea2bb4e.png', '/platform/sys/file/download?id=541f9d25077780099d4e4594bea2bb4e', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('47148702a76cc6ea8e7807ac5d5eb6e1', 'MINIO', 'cug', '027_社团审核_87611b6d.png', 'png', '45', '44.7 kB', '47148702a76cc6ea8e7807ac5d5eb6e1.png', '/menu-icons/v4/47148702a76cc6ea8e7807ac5d5eb6e1.png', '/platform/sys/file/download?id=47148702a76cc6ea8e7807ac5d5eb6e1', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('d4e6b7275313903fb7ff9f40046f9ed6', 'MINIO', 'cug', '028_社团分管主席审核_d0ee5ab9.png', 'png', '42', '42.2 kB', 'd4e6b7275313903fb7ff9f40046f9ed6.png', '/menu-icons/v4/d4e6b7275313903fb7ff9f40046f9ed6.png', '/platform/sys/file/download?id=d4e6b7275313903fb7ff9f40046f9ed6', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('153ee7433a7b441bcf0df449a93cf07a', 'MINIO', 'cug', '029_分工会审核_af963d19.png', 'png', '44', '44.0 kB', '153ee7433a7b441bcf0df449a93cf07a.png', '/menu-icons/v4/153ee7433a7b441bcf0df449a93cf07a.png', '/platform/sys/file/download?id=153ee7433a7b441bcf0df449a93cf07a', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('88d0311f37bd0d4afb15d3e7e1321dae', 'MINIO', 'cug', '030_校工会出纳审核_f7a890c7.png', 'png', '44', '44.4 kB', '88d0311f37bd0d4afb15d3e7e1321dae.png', '/menu-icons/v4/88d0311f37bd0d4afb15d3e7e1321dae.png', '/platform/sys/file/download?id=88d0311f37bd0d4afb15d3e7e1321dae', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('481b4f5262903cbc2a4c4be16144356d', 'MINIO', 'cug', '031_校工会会计审核_41410dbe.png', 'png', '45', '44.5 kB', '481b4f5262903cbc2a4c4be16144356d.png', '/menu-icons/v4/481b4f5262903cbc2a4c4be16144356d.png', '/platform/sys/file/download?id=481b4f5262903cbc2a4c4be16144356d', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('43edf5cc953088145c381e89d1a2dbe5', 'MINIO', 'cug', '032_校工会主席终审_5e0c5335.png', 'png', '44', '44.1 kB', '43edf5cc953088145c381e89d1a2dbe5.png', '/menu-icons/v4/43edf5cc953088145c381e89d1a2dbe5.png', '/platform/sys/file/download?id=43edf5cc953088145c381e89d1a2dbe5', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('00a707dc661b56698cfa957da4d635e3', 'MINIO', 'cug', '033_社团组织管理_b8bcaa94.png', 'png', '44', '44.3 kB', '00a707dc661b56698cfa957da4d635e3.png', '/menu-icons/v4/00a707dc661b56698cfa957da4d635e3.png', '/platform/sys/file/download?id=00a707dc661b56698cfa957da4d635e3', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('d8cf0cffdced461cc4ba8fa4314b35de', 'MINIO', 'cug', '034_社团入会_7af124e1.png', 'png', '44', '44.3 kB', 'd8cf0cffdced461cc4ba8fa4314b35de.png', '/menu-icons/v4/d8cf0cffdced461cc4ba8fa4314b35de.png', '/platform/sys/file/download?id=d8cf0cffdced461cc4ba8fa4314b35de', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('b269cb65dc856cd4fe21fa05de4fd27e', 'MINIO', 'cug', '035_我的申请_2de433e4.png', 'png', '41', '41.1 kB', 'b269cb65dc856cd4fe21fa05de4fd27e.png', '/menu-icons/v4/b269cb65dc856cd4fe21fa05de4fd27e.png', '/platform/sys/file/download?id=b269cb65dc856cd4fe21fa05de4fd27e', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('67dc9fac0d11849f8648dae234270135', 'MINIO', 'cug', '036_社团审核_84064805.png', 'png', '45', '44.7 kB', '67dc9fac0d11849f8648dae234270135.png', '/menu-icons/v4/67dc9fac0d11849f8648dae234270135.png', '/platform/sys/file/download?id=67dc9fac0d11849f8648dae234270135', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('a34ed81f00b2edf70da74dbb8d6b8c99', 'MINIO', 'cug', '037_校工会审核_dbd21f6b.png', 'png', '44', '44.2 kB', 'a34ed81f00b2edf70da74dbb8d6b8c99.png', '/menu-icons/v4/a34ed81f00b2edf70da74dbb8d6b8c99.png', '/platform/sys/file/download?id=a34ed81f00b2edf70da74dbb8d6b8c99', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('fcbef87b9f75c924b06fff2a03246b42', 'MINIO', 'cug', '038_我的社团_e585d2ca.png', 'png', '44', '43.9 kB', 'fcbef87b9f75c924b06fff2a03246b42.png', '/menu-icons/v4/fcbef87b9f75c924b06fff2a03246b42.png', '/platform/sys/file/download?id=fcbef87b9f75c924b06fff2a03246b42', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('ba467095d0ccc678e34979ba679ea020', 'MINIO', 'cug', '039_会员管理_7e2b850c.png', 'png', '44', '44.3 kB', 'ba467095d0ccc678e34979ba679ea020.png', '/menu-icons/v4/ba467095d0ccc678e34979ba679ea020.png', '/platform/sys/file/download?id=ba467095d0ccc678e34979ba679ea020', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('b189ac3e64ea6b43a86324a2a57b0595', 'MINIO', 'cug', '040_会员入会_8f27ac9f.png', 'png', '44', '44.3 kB', 'b189ac3e64ea6b43a86324a2a57b0595.png', '/menu-icons/v4/b189ac3e64ea6b43a86324a2a57b0595.png', '/platform/sys/file/download?id=b189ac3e64ea6b43a86324a2a57b0595', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('0e14db530463cbcdeb4f23712ce75226', 'MINIO', 'cug', '041_我的入会_313842fc.png', 'png', '44', '43.9 kB', '0e14db530463cbcdeb4f23712ce75226.png', '/menu-icons/v4/0e14db530463cbcdeb4f23712ce75226.png', '/platform/sys/file/download?id=0e14db530463cbcdeb4f23712ce75226', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('e05e3b438130ad43908f64bca84ccd4f', 'MINIO', 'cug', '042_分工会审核_dcf6c190.png', 'png', '44', '44.0 kB', 'e05e3b438130ad43908f64bca84ccd4f.png', '/menu-icons/v4/e05e3b438130ad43908f64bca84ccd4f.png', '/platform/sys/file/download?id=e05e3b438130ad43908f64bca84ccd4f', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('9436a2f85765993e4c11c53564d3d57f', 'MINIO', 'cug', '043_校工会审核_13d50644.png', 'png', '44', '44.2 kB', '9436a2f85765993e4c11c53564d3d57f.png', '/menu-icons/v4/9436a2f85765993e4c11c53564d3d57f.png', '/platform/sys/file/download?id=9436a2f85765993e4c11c53564d3d57f', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('5ab1059bf731e1a99e5821b16b60f815', 'MINIO', 'cug', '044_会员档案_c547be26.png', 'png', '44', '43.7 kB', '5ab1059bf731e1a99e5821b16b60f815.png', '/menu-icons/v4/5ab1059bf731e1a99e5821b16b60f815.png', '/platform/sys/file/download?id=5ab1059bf731e1a99e5821b16b60f815', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('e10382c1b724f394a34d2ee7f4c1a4b3', 'MINIO', 'cug', '045_数据看板_f3ae0a07.png', 'png', '56', '55.7 kB', 'e10382c1b724f394a34d2ee7f4c1a4b3.png', '/menu-icons/v4/e10382c1b724f394a34d2ee7f4c1a4b3.png', '/platform/sys/file/download?id=e10382c1b724f394a34d2ee7f4c1a4b3', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('ec82746b31fc662da299baa4e4546323', 'MINIO', 'cug', '046_工会小组审核_00448f69.png', 'png', '43', '42.7 kB', 'ec82746b31fc662da299baa4e4546323.png', '/menu-icons/v4/ec82746b31fc662da299baa4e4546323.png', '/platform/sys/file/download?id=ec82746b31fc662da299baa4e4546323', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('fad8a880d74a74d77cd4f5a5dfab809b', 'MINIO', 'cug', '047_职工慰问_024811fd.png', 'png', '41', '41.4 kB', 'fad8a880d74a74d77cd4f5a5dfab809b.png', '/menu-icons/v4/fad8a880d74a74d77cd4f5a5dfab809b.png', '/platform/sys/file/download?id=fad8a880d74a74d77cd4f5a5dfab809b', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('a14e00ff8a03f307243ce45bcb5b8c5d', 'MINIO', 'cug', '048_慰问申请_9bfd257e.png', 'png', '39', '39.3 kB', 'a14e00ff8a03f307243ce45bcb5b8c5d.png', '/menu-icons/v4/a14e00ff8a03f307243ce45bcb5b8c5d.png', '/platform/sys/file/download?id=a14e00ff8a03f307243ce45bcb5b8c5d', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('67e6671dc1f2220c7e10bfc62e3675b1', 'MINIO', 'cug', '049_我的申请_7492992b.png', 'png', '41', '41.1 kB', '67e6671dc1f2220c7e10bfc62e3675b1.png', '/menu-icons/v4/67e6671dc1f2220c7e10bfc62e3675b1.png', '/platform/sys/file/download?id=67e6671dc1f2220c7e10bfc62e3675b1', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('b3e5125f364f35a8dabaa5e7dcc46516', 'MINIO', 'cug', '050_分工会审核_330e42e0.png', 'png', '44', '44.0 kB', 'b3e5125f364f35a8dabaa5e7dcc46516.png', '/menu-icons/v4/b3e5125f364f35a8dabaa5e7dcc46516.png', '/platform/sys/file/download?id=b3e5125f364f35a8dabaa5e7dcc46516', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('d04a2c47e9c184a4d044abd7526013cb', 'MINIO', 'cug', '051_校工会预审_87a2dcfa.png', 'png', '44', '44.2 kB', 'd04a2c47e9c184a4d044abd7526013cb.png', '/menu-icons/v4/d04a2c47e9c184a4d044abd7526013cb.png', '/platform/sys/file/download?id=d04a2c47e9c184a4d044abd7526013cb', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('2acd67f07be21392efbd9951243d438d', 'MINIO', 'cug', '052_校工会审核_c269f94a.png', 'png', '44', '44.2 kB', '2acd67f07be21392efbd9951243d438d.png', '/menu-icons/v4/2acd67f07be21392efbd9951243d438d.png', '/platform/sys/file/download?id=2acd67f07be21392efbd9951243d438d', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('036d3ba76739b6e8263087ec7a4fe0f5', 'MINIO', 'cug', '053_困难帮扶_6ddda191.png', 'png', '41', '41.4 kB', '036d3ba76739b6e8263087ec7a4fe0f5.png', '/menu-icons/v4/036d3ba76739b6e8263087ec7a4fe0f5.png', '/platform/sys/file/download?id=036d3ba76739b6e8263087ec7a4fe0f5', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('34d7aa98a4e1bed661d925e6c6010045', 'MINIO', 'cug', '054_帮扶申请_3cf7ee61.png', 'png', '39', '39.3 kB', '34d7aa98a4e1bed661d925e6c6010045.png', '/menu-icons/v4/34d7aa98a4e1bed661d925e6c6010045.png', '/platform/sys/file/download?id=34d7aa98a4e1bed661d925e6c6010045', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('d450c3676e3934d873f00c938a44c20b', 'MINIO', 'cug', '055_帮扶申请记录_51b21e97.png', 'png', '39', '39.3 kB', 'd450c3676e3934d873f00c938a44c20b.png', '/menu-icons/v4/d450c3676e3934d873f00c938a44c20b.png', '/platform/sys/file/download?id=d450c3676e3934d873f00c938a44c20b', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('d8d831521cae0d54bbe75360cc6db970', 'MINIO', 'cug', '056_分工会审核_23d30124.png', 'png', '44', '44.0 kB', 'd8d831521cae0d54bbe75360cc6db970.png', '/menu-icons/v4/d8d831521cae0d54bbe75360cc6db970.png', '/platform/sys/file/download?id=d8d831521cae0d54bbe75360cc6db970', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('839524da718e966329e94e5db57e751f', 'MINIO', 'cug', '057_二级党组织审核_d736e4d7.png', 'png', '45', '44.6 kB', '839524da718e966329e94e5db57e751f.png', '/menu-icons/v4/839524da718e966329e94e5db57e751f.png', '/platform/sys/file/download?id=839524da718e966329e94e5db57e751f', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('487eb6c9241caeacd5dbe198b2fc29f5', 'MINIO', 'cug', '058_校工会审核_35a9239d.png', 'png', '44', '44.2 kB', '487eb6c9241caeacd5dbe198b2fc29f5.png', '/menu-icons/v4/487eb6c9241caeacd5dbe198b2fc29f5.png', '/platform/sys/file/download?id=487eb6c9241caeacd5dbe198b2fc29f5', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('1df1f8c9847f2f2f3fdbb031f5b9b49d', 'MINIO', 'cug', '059_体检管理_d4cab4ba.png', 'png', '45', '44.5 kB', '1df1f8c9847f2f2f3fdbb031f5b9b49d.png', '/menu-icons/v4/1df1f8c9847f2f2f3fdbb031f5b9b49d.png', '/platform/sys/file/download?id=1df1f8c9847f2f2f3fdbb031f5b9b49d', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('e3fbc1ce067437cce9ced286d053fb88', 'MINIO', 'cug', '060_体检项目_0a2bfc85.png', 'png', '45', '44.5 kB', 'e3fbc1ce067437cce9ced286d053fb88.png', '/menu-icons/v4/e3fbc1ce067437cce9ced286d053fb88.png', '/platform/sys/file/download?id=e3fbc1ce067437cce9ced286d053fb88', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('5f5a11d2aabd670855a205115a132223', 'MINIO', 'cug', '061_我的体检_c03fbf17.png', 'png', '43', '42.8 kB', '5f5a11d2aabd670855a205115a132223.png', '/menu-icons/v4/5f5a11d2aabd670855a205115a132223.png', '/platform/sys/file/download?id=5f5a11d2aabd670855a205115a132223', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('f7093003078726bb6143f7ee3099ceef', 'MINIO', 'cug', '062_心理咨询_56620c51.png', 'png', '45', '44.5 kB', 'f7093003078726bb6143f7ee3099ceef.png', '/menu-icons/v4/f7093003078726bb6143f7ee3099ceef.png', '/platform/sys/file/download?id=f7093003078726bb6143f7ee3099ceef', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('ebf8e926d86c3328ea6da6b6bb377344', 'MINIO', 'cug', '063_我要预约_ef46a587.png', 'png', '53', '53.2 kB', 'ebf8e926d86c3328ea6da6b6bb377344.png', '/menu-icons/v4/ebf8e926d86c3328ea6da6b6bb377344.png', '/platform/sys/file/download?id=ebf8e926d86c3328ea6da6b6bb377344', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('1068cd8f373106ef19dd0e6f7ed5e0c5', 'MINIO', 'cug', '064_预约记录_c6a2ec8d.png', 'png', '53', '53.2 kB', '1068cd8f373106ef19dd0e6f7ed5e0c5.png', '/menu-icons/v4/1068cd8f373106ef19dd0e6f7ed5e0c5.png', '/platform/sys/file/download?id=1068cd8f373106ef19dd0e6f7ed5e0c5', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('2d4f07ed1e1ebb4f095cbbbcabe13963', 'MINIO', 'cug', '065_发帖咨询_7b21d468.png', 'png', '46', '46.3 kB', '2d4f07ed1e1ebb4f095cbbbcabe13963.png', '/menu-icons/v4/2d4f07ed1e1ebb4f095cbbbcabe13963.png', '/platform/sys/file/download?id=2d4f07ed1e1ebb4f095cbbbcabe13963', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('63db1069887f9acf02edeaccb2a8c9ed', 'MINIO', 'cug', '066_咨询回复_43f06636.png', 'png', '46', '46.3 kB', '63db1069887f9acf02edeaccb2a8c9ed.png', '/menu-icons/v4/63db1069887f9acf02edeaccb2a8c9ed.png', '/platform/sys/file/download?id=63db1069887f9acf02edeaccb2a8c9ed', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('698e1fc9c201e611e8e7cebe9dadd8ef', 'MINIO', 'cug', '067_基层双代会_b6c224df.png', 'png', '44', '44.3 kB', '698e1fc9c201e611e8e7cebe9dadd8ef.png', '/menu-icons/v4/698e1fc9c201e611e8e7cebe9dadd8ef.png', '/platform/sys/file/download?id=698e1fc9c201e611e8e7cebe9dadd8ef', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('360b8b91280de12276c110201c8d7425', 'MINIO', 'cug', '068_法律援助_297400c8.png', 'png', '46', '46.3 kB', '360b8b91280de12276c110201c8d7425.png', '/menu-icons/v4/360b8b91280de12276c110201c8d7425.png', '/platform/sys/file/download?id=360b8b91280de12276c110201c8d7425', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('25454e316e3d9cf3f1520797b507efd8', 'MINIO', 'cug', '069_我要预约_aa0ffd36.png', 'png', '53', '53.2 kB', '25454e316e3d9cf3f1520797b507efd8.png', '/menu-icons/v4/25454e316e3d9cf3f1520797b507efd8.png', '/platform/sys/file/download?id=25454e316e3d9cf3f1520797b507efd8', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('cb46561b1e37852cbc90815ac66c3351', 'MINIO', 'cug', '070_预约记录_7dc21dca.png', 'png', '53', '53.2 kB', 'cb46561b1e37852cbc90815ac66c3351.png', '/menu-icons/v4/cb46561b1e37852cbc90815ac66c3351.png', '/platform/sys/file/download?id=cb46561b1e37852cbc90815ac66c3351', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('e12a96173d033e50aafbcc9356c811c4', 'MINIO', 'cug', '071_发帖咨询_939595b4.png', 'png', '46', '46.3 kB', 'e12a96173d033e50aafbcc9356c811c4.png', '/menu-icons/v4/e12a96173d033e50aafbcc9356c811c4.png', '/platform/sys/file/download?id=e12a96173d033e50aafbcc9356c811c4', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('d5d5832a552bf8d434b1c6debd777da4', 'MINIO', 'cug', '072_咨询回复_d073c1d8.png', 'png', '46', '46.3 kB', 'd5d5832a552bf8d434b1c6debd777da4.png', '/menu-icons/v4/d5d5832a552bf8d434b1c6debd777da4.png', '/platform/sys/file/download?id=d5d5832a552bf8d434b1c6debd777da4', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('7d27b774e627b02cda5df9f9970016f7', 'MINIO', 'cug', '073_基金会员_3f88a4f6.png', 'png', '53', '52.8 kB', '7d27b774e627b02cda5df9f9970016f7.png', '/menu-icons/v4/7d27b774e627b02cda5df9f9970016f7.png', '/platform/sys/file/download?id=7d27b774e627b02cda5df9f9970016f7', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('fdbf15abdefc00b3388e5fadf9bd8740', 'MINIO', 'cug', '074_会员申请_8a77d32c.png', 'png', '43', '42.8 kB', 'fdbf15abdefc00b3388e5fadf9bd8740.png', '/menu-icons/v4/fdbf15abdefc00b3388e5fadf9bd8740.png', '/platform/sys/file/download?id=fdbf15abdefc00b3388e5fadf9bd8740', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('00147780b5ad42a6b07c1ac54569792f', 'MINIO', 'cug', '075_我的申请_44423a17.png', 'png', '41', '41.1 kB', '00147780b5ad42a6b07c1ac54569792f.png', '/menu-icons/v4/00147780b5ad42a6b07c1ac54569792f.png', '/platform/sys/file/download?id=00147780b5ad42a6b07c1ac54569792f', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('c42ada04526004c863e50d3d17b6e408', 'MINIO', 'cug', '076_分工会审核_3e102653.png', 'png', '44', '44.0 kB', 'c42ada04526004c863e50d3d17b6e408.png', '/menu-icons/v4/c42ada04526004c863e50d3d17b6e408.png', '/platform/sys/file/download?id=c42ada04526004c863e50d3d17b6e408', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('3b9f9415e36b57b73d02ef674a9c7616', 'MINIO', 'cug', '077_会员管理_ac2516a6.png', 'png', '44', '44.3 kB', '3b9f9415e36b57b73d02ef674a9c7616.png', '/menu-icons/v4/3b9f9415e36b57b73d02ef674a9c7616.png', '/platform/sys/file/download?id=3b9f9415e36b57b73d02ef674a9c7616', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('09e04f045df284eaaf281c701a61ce65', 'MINIO', 'cug', '078_数据看板_59d6ba7c.png', 'png', '56', '55.7 kB', '09e04f045df284eaaf281c701a61ce65.png', '/menu-icons/v4/09e04f045df284eaaf281c701a61ce65.png', '/platform/sys/file/download?id=09e04f045df284eaaf281c701a61ce65', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('28c9f1b52e47184a9cba0dd3720fb9aa', 'MINIO', 'cug', '079_互管会审核_6b5adca7.png', 'png', '44', '44.0 kB', '28c9f1b52e47184a9cba0dd3720fb9aa.png', '/menu-icons/v4/28c9f1b52e47184a9cba0dd3720fb9aa.png', '/platform/sys/file/download?id=28c9f1b52e47184a9cba0dd3720fb9aa', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('07ef4713927c1ff868c766c723ed1acc', 'MINIO', 'cug', '080_离退休审核_57566021.png', 'png', '45', '44.5 kB', '07ef4713927c1ff868c766c723ed1acc.png', '/menu-icons/v4/07ef4713927c1ff868c766c723ed1acc.png', '/platform/sys/file/download?id=07ef4713927c1ff868c766c723ed1acc', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('76e0dd9b54251141b235975d31c05d12', 'MINIO', 'cug', '081_会员入会_1375120f.png', 'png', '44', '44.3 kB', '76e0dd9b54251141b235975d31c05d12.png', '/menu-icons/v4/76e0dd9b54251141b235975d31c05d12.png', '/platform/sys/file/download?id=76e0dd9b54251141b235975d31c05d12', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('857956ba68605f43198123ed76e46f34', 'MINIO', 'cug', '082_会务管理_2c61ac06.png', 'png', '55', '54.8 kB', '857956ba68605f43198123ed76e46f34.png', '/menu-icons/v4/857956ba68605f43198123ed76e46f34.png', '/platform/sys/file/download?id=857956ba68605f43198123ed76e46f34', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('9d67a619eff5b7b45fe8676cb32091fe', 'MINIO', 'cug', '083_体育活动_893016b4.png', 'png', '42', '41.8 kB', '9d67a619eff5b7b45fe8676cb32091fe.png', '/menu-icons/v4/9d67a619eff5b7b45fe8676cb32091fe.png', '/platform/sys/file/download?id=9d67a619eff5b7b45fe8676cb32091fe', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('12f9ae93e7b07a9b0f20f2556050ed6c', 'MINIO', 'cug', '084_活动报名_dbaba7b3.png', 'png', '42', '41.8 kB', '12f9ae93e7b07a9b0f20f2556050ed6c.png', '/menu-icons/v4/12f9ae93e7b07a9b0f20f2556050ed6c.png', '/platform/sys/file/download?id=12f9ae93e7b07a9b0f20f2556050ed6c', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('d52462ba5ec9b1373d739433de2da30c', 'MINIO', 'cug', '085_文化活动_898f95af.png', 'png', '42', '42.0 kB', 'd52462ba5ec9b1373d739433de2da30c.png', '/menu-icons/v4/d52462ba5ec9b1373d739433de2da30c.png', '/platform/sys/file/download?id=d52462ba5ec9b1373d739433de2da30c', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('3419504fe535f6888355d9275a72630b', 'MINIO', 'cug', '086_品牌活动_fb16e44e.png', 'png', '41', '41.1 kB', '3419504fe535f6888355d9275a72630b.png', '/menu-icons/v4/3419504fe535f6888355d9275a72630b.png', '/platform/sys/file/download?id=3419504fe535f6888355d9275a72630b', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('0a244bf26674a5598cd3add153438045', 'MINIO', 'cug', '087_活动报名_42d1b0cc.png', 'png', '42', '41.8 kB', '0a244bf26674a5598cd3add153438045.png', '/menu-icons/v4/0a244bf26674a5598cd3add153438045.png', '/platform/sys/file/download?id=0a244bf26674a5598cd3add153438045', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('58f339cfa0455455027c304a61262293', 'MINIO', 'cug', '088_我的活动_811cf28c.png', 'png', '42', '42.3 kB', '58f339cfa0455455027c304a61262293.png', '/menu-icons/v4/58f339cfa0455455027c304a61262293.png', '/platform/sys/file/download?id=58f339cfa0455455027c304a61262293', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('d3133639fcd76e0afc139536433f4082', 'MINIO', 'cug', '089_惠民服务_57accf35.png', 'png', '46', '45.7 kB', 'd3133639fcd76e0afc139536433f4082.png', '/menu-icons/v4/d3133639fcd76e0afc139536433f4082.png', '/platform/sys/file/download?id=d3133639fcd76e0afc139536433f4082', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('cef1ccb8a9cc8804e9c7ebe9a77228e3', 'MINIO', 'cug', '090_我的惠民_05f829da.png', 'png', '44', '43.7 kB', 'cef1ccb8a9cc8804e9c7ebe9a77228e3.png', '/menu-icons/v4/cef1ccb8a9cc8804e9c7ebe9a77228e3.png', '/platform/sys/file/download?id=cef1ccb8a9cc8804e9c7ebe9a77228e3', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('221eb720d89330b020831977901ffb01', 'MINIO', 'cug', '091_理论学习_a8966b0e.png', 'png', '43', '43.3 kB', '221eb720d89330b020831977901ffb01.png', '/menu-icons/v4/221eb720d89330b020831977901ffb01.png', '/platform/sys/file/download?id=221eb720d89330b020831977901ffb01', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('0ad363ca5afe42974bfadfedce3884ad', 'MINIO', 'cug', '092_课程列表_893a216d.png', 'png', '42', '41.7 kB', '0ad363ca5afe42974bfadfedce3884ad.png', '/menu-icons/v4/0ad363ca5afe42974bfadfedce3884ad.png', '/platform/sys/file/download?id=0ad363ca5afe42974bfadfedce3884ad', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('900335e540cc289670acc56a3f4efdc6', 'MINIO', 'cug', '093_慈善捐助_0c4ccaec.png', 'png', '53', '52.8 kB', '900335e540cc289670acc56a3f4efdc6.png', '/menu-icons/v4/900335e540cc289670acc56a3f4efdc6.png', '/platform/sys/file/download?id=900335e540cc289670acc56a3f4efdc6', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('17d93eabe5550904da837191e873727c', 'MINIO', 'cug', '094_慈善捐助_a112c7db.png', 'png', '53', '52.8 kB', '17d93eabe5550904da837191e873727c.png', '/menu-icons/v4/17d93eabe5550904da837191e873727c.png', '/platform/sys/file/download?id=17d93eabe5550904da837191e873727c', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('fe57d48708f2d5775a4caf6ae9810885', 'MINIO', 'cug', '095_我的捐助_23883f9a.png', 'png', '51', '51.1 kB', 'fe57d48708f2d5775a4caf6ae9810885.png', '/menu-icons/v4/fe57d48708f2d5775a4caf6ae9810885.png', '/platform/sys/file/download?id=fe57d48708f2d5775a4caf6ae9810885', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('9eb136427ad27c9d7dcb3c8707722197', 'MINIO', 'cug', '096_生育休假_e5851cdf.png', 'png', '45', '45.3 kB', '9eb136427ad27c9d7dcb3c8707722197.png', '/menu-icons/v4/9eb136427ad27c9d7dcb3c8707722197.png', '/platform/sys/file/download?id=9eb136427ad27c9d7dcb3c8707722197', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('c6a18ba7ab1cced5ff8a143b508ac232', 'MINIO', 'cug', '097_休假申请_abfbd5db.png', 'png', '40', '39.9 kB', 'c6a18ba7ab1cced5ff8a143b508ac232.png', '/menu-icons/v4/c6a18ba7ab1cced5ff8a143b508ac232.png', '/platform/sys/file/download?id=c6a18ba7ab1cced5ff8a143b508ac232', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('39ad45823ce67503b15d0e80baac5a90', 'MINIO', 'cug', '098_我的申请_99252619.png', 'png', '41', '41.1 kB', '39ad45823ce67503b15d0e80baac5a90.png', '/menu-icons/v4/39ad45823ce67503b15d0e80baac5a90.png', '/platform/sys/file/download?id=39ad45823ce67503b15d0e80baac5a90', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('ac6ece2322ded47882503379cbdb11e4', 'MINIO', 'cug', '099_分工会审核_6a548614.png', 'png', '44', '44.0 kB', 'ac6ece2322ded47882503379cbdb11e4.png', '/menu-icons/v4/ac6ece2322ded47882503379cbdb11e4.png', '/platform/sys/file/download?id=ac6ece2322ded47882503379cbdb11e4', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('ca34d08cc7be228497903791476a021c', 'MINIO', 'cug', '100_校工会审核_4a764f7d.png', 'png', '44', '44.2 kB', 'ca34d08cc7be228497903791476a021c.png', '/menu-icons/v4/ca34d08cc7be228497903791476a021c.png', '/platform/sys/file/download?id=ca34d08cc7be228497903791476a021c', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('023abe62c4dcba439ae559a117453f66', 'MINIO', 'cug', '101_查询统计_c13558b0.png', 'png', '41', '40.9 kB', '023abe62c4dcba439ae559a117453f66.png', '/menu-icons/v4/023abe62c4dcba439ae559a117453f66.png', '/platform/sys/file/download?id=023abe62c4dcba439ae559a117453f66', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('f1455ca7fd4317263281ac6cf41fc1ad', 'MINIO', 'cug', '102_独生子女父母退休_f808e1e1.png', 'png', '45', '45.3 kB', 'f1455ca7fd4317263281ac6cf41fc1ad.png', '/menu-icons/v4/f1455ca7fd4317263281ac6cf41fc1ad.png', '/platform/sys/file/download?id=f1455ca7fd4317263281ac6cf41fc1ad', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('3f8884bf81ae83404e13cde55dcf79ed', 'MINIO', 'cug', '103_独生子女父母退休申请_6c3fcd1a.png', 'png', '43', '43.1 kB', '3f8884bf81ae83404e13cde55dcf79ed.png', '/menu-icons/v4/3f8884bf81ae83404e13cde55dcf79ed.png', '/platform/sys/file/download?id=3f8884bf81ae83404e13cde55dcf79ed', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('c23849106f7cd6b4ebdd38ab7c736404', 'MINIO', 'cug', '104_我的申请_16388b3d.png', 'png', '41', '41.1 kB', 'c23849106f7cd6b4ebdd38ab7c736404.png', '/menu-icons/v4/c23849106f7cd6b4ebdd38ab7c736404.png', '/platform/sys/file/download?id=c23849106f7cd6b4ebdd38ab7c736404', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('e83e7cc6d1c9579d0c90d846123d4781', 'MINIO', 'cug', '105_分工会审核_dc276392.png', 'png', '44', '44.0 kB', 'e83e7cc6d1c9579d0c90d846123d4781.png', '/menu-icons/v4/e83e7cc6d1c9579d0c90d846123d4781.png', '/platform/sys/file/download?id=e83e7cc6d1c9579d0c90d846123d4781', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('e614a2a418affa90b4604d854bbe8f4f', 'MINIO', 'cug', '106_校工会审核_50bf62d0.png', 'png', '44', '44.2 kB', 'e614a2a418affa90b4604d854bbe8f4f.png', '/menu-icons/v4/e614a2a418affa90b4604d854bbe8f4f.png', '/platform/sys/file/download?id=e614a2a418affa90b4604d854bbe8f4f', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('256e79961efba17f049992fa79c44ddd', 'MINIO', 'cug', '107_查询统计_05f308a2.png', 'png', '41', '40.9 kB', '256e79961efba17f049992fa79c44ddd.png', '/menu-icons/v4/256e79961efba17f049992fa79c44ddd.png', '/platform/sys/file/download?id=256e79961efba17f049992fa79c44ddd', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('5327c3f6de7725c98b4a847c820363fd', 'MINIO', 'cug', '108_工会报销_d54c4078.png', 'png', '53', '52.8 kB', '5327c3f6de7725c98b4a847c820363fd.png', '/menu-icons/v4/5327c3f6de7725c98b4a847c820363fd.png', '/platform/sys/file/download?id=5327c3f6de7725c98b4a847c820363fd', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('0e4100d9c4ea5176698a2345787c198c', 'MINIO', 'cug', '109_报销申请_e04f9463.png', 'png', '50', '50.0 kB', '0e4100d9c4ea5176698a2345787c198c.png', '/menu-icons/v4/0e4100d9c4ea5176698a2345787c198c.png', '/platform/sys/file/download?id=0e4100d9c4ea5176698a2345787c198c', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('b8f169e5778223784b9135af8a311524', 'MINIO', 'cug', '110_我的报销_5a994c0f.png', 'png', '51', '51.1 kB', 'b8f169e5778223784b9135af8a311524.png', '/menu-icons/v4/b8f169e5778223784b9135af8a311524.png', '/platform/sys/file/download?id=b8f169e5778223784b9135af8a311524', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('0543f3f83e09ad659b9abcaefd08b94a', 'MINIO', 'cug', '111_单身教工管理_bfd9983c.png', 'png', '58', '58.3 kB', '0543f3f83e09ad659b9abcaefd08b94a.png', '/menu-icons/v4/0543f3f83e09ad659b9abcaefd08b94a.png', '/platform/sys/file/download?id=0543f3f83e09ad659b9abcaefd08b94a', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('6a190139c0642e5364294b90a864858b', 'MINIO', 'cug', '112_报销审核_d1abc76f.png', 'png', '45', '45.1 kB', '6a190139c0642e5364294b90a864858b.png', '/menu-icons/v4/6a190139c0642e5364294b90a864858b.png', '/platform/sys/file/download?id=6a190139c0642e5364294b90a864858b', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('337ecc73f2d4b46217a0037c2e7bb986', 'MINIO', 'cug', '113_报销汇总_0d6c8aac.png', 'png', '53', '52.8 kB', '337ecc73f2d4b46217a0037c2e7bb986.png', '/menu-icons/v4/337ecc73f2d4b46217a0037c2e7bb986.png', '/platform/sys/file/download?id=337ecc73f2d4b46217a0037c2e7bb986', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('98db42fa3b4eede3f6502aaaec1e8117', 'MINIO', 'cug', '114_问卷调查_17c32edb.png', 'png', '46', '46.3 kB', '98db42fa3b4eede3f6502aaaec1e8117.png', '/menu-icons/v4/98db42fa3b4eede3f6502aaaec1e8117.png', '/platform/sys/file/download?id=98db42fa3b4eede3f6502aaaec1e8117', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('d91ad1c8f455cc80e03380f2c55b5e7a', 'MINIO', 'cug', '115_其他人员管理_62b1effb.png', 'png', '44', '44.3 kB', 'd91ad1c8f455cc80e03380f2c55b5e7a.png', '/menu-icons/v4/d91ad1c8f455cc80e03380f2c55b5e7a.png', '/platform/sys/file/download?id=d91ad1c8f455cc80e03380f2c55b5e7a', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('8a129812d0f083d933bed9f7362ce3c2', 'MINIO', 'cug', '116_场地预约old_ed6f15a0.png', 'png', '53', '53.2 kB', '8a129812d0f083d933bed9f7362ce3c2.png', '/menu-icons/v4/8a129812d0f083d933bed9f7362ce3c2.png', '/platform/sys/file/download?id=8a129812d0f083d933bed9f7362ce3c2', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('3c8e7767270938e6bedabb675947d36c', 'MINIO', 'cug', '117_场地预约_3f09df78.png', 'png', '53', '53.2 kB', '3c8e7767270938e6bedabb675947d36c.png', '/menu-icons/v4/3c8e7767270938e6bedabb675947d36c.png', '/platform/sys/file/download?id=3c8e7767270938e6bedabb675947d36c', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('d9e86cfc1eba51102cc2a5067f669ce9', 'MINIO', 'cug', '118_人员变更记录_70b4f9a1.png', 'png', '43', '43.5 kB', 'd9e86cfc1eba51102cc2a5067f669ce9.png', '/menu-icons/v4/d9e86cfc1eba51102cc2a5067f669ce9.png', '/platform/sys/file/download?id=d9e86cfc1eba51102cc2a5067f669ce9', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('31b67a1b095a3e1e5dec07bb4377e87c', 'MINIO', 'cug', '119_我的预约_8f752c50.png', 'png', '53', '53.0 kB', '31b67a1b095a3e1e5dec07bb4377e87c.png', '/menu-icons/v4/31b67a1b095a3e1e5dec07bb4377e87c.png', '/platform/sys/file/download?id=31b67a1b095a3e1e5dec07bb4377e87c', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('29f151188867dd0b541b2998832e609d', 'MINIO', 'cug', '120_30教龄教职工管理_22847e55.png', 'png', '58', '58.3 kB', '29f151188867dd0b541b2998832e609d.png', '/menu-icons/v4/29f151188867dd0b541b2998832e609d.png', '/platform/sys/file/download?id=29f151188867dd0b541b2998832e609d', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('c1f86c180293b8d8a33b733335c95d92', 'MINIO', 'cug', '121_校工会审核_ef93e3b9.png', 'png', '44', '44.2 kB', 'c1f86c180293b8d8a33b733335c95d92.png', '/menu-icons/v4/c1f86c180293b8d8a33b733335c95d92.png', '/platform/sys/file/download?id=c1f86c180293b8d8a33b733335c95d92', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('4a2284606c913e81a4a8ae4a30907fa1', 'MINIO', 'cug', '122_职工福利_d34fa735.png', 'png', '46', '45.7 kB', '4a2284606c913e81a4a8ae4a30907fa1.png', '/menu-icons/v4/4a2284606c913e81a4a8ae4a30907fa1.png', '/platform/sys/file/download?id=4a2284606c913e81a4a8ae4a30907fa1', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('750049c8122e723f2c05b07487dfcc41', 'MINIO', 'cug', '123_选择福利_94b69599.png', 'png', '44', '43.6 kB', '750049c8122e723f2c05b07487dfcc41.png', '/menu-icons/v4/750049c8122e723f2c05b07487dfcc41.png', '/platform/sys/file/download?id=750049c8122e723f2c05b07487dfcc41', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('7396484da3d72534752452bfcbcb0069', 'MINIO', 'cug', '124_收货地址_15156ec9.png', 'png', '42', '41.9 kB', '7396484da3d72534752452bfcbcb0069.png', '/menu-icons/v4/7396484da3d72534752452bfcbcb0069.png', '/platform/sys/file/download?id=7396484da3d72534752452bfcbcb0069', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('c3dec28fc2456aac00b232004a37772b', 'MINIO', 'cug', '125_职工慰问_3b49290f.png', 'png', '41', '41.4 kB', 'c3dec28fc2456aac00b232004a37772b.png', '/menu-icons/v4/c3dec28fc2456aac00b232004a37772b.png', '/platform/sys/file/download?id=c3dec28fc2456aac00b232004a37772b', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('eb7fbff546395e60c8175bea83b23ca5', 'MINIO', 'cug', '126_慰问申请_5e024c74.png', 'png', '39', '39.3 kB', 'eb7fbff546395e60c8175bea83b23ca5.png', '/menu-icons/v4/eb7fbff546395e60c8175bea83b23ca5.png', '/platform/sys/file/download?id=eb7fbff546395e60c8175bea83b23ca5', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('c23fadfac6813aa9658850d21afe0522', 'MINIO', 'cug', '127_我的福利_c08d8543.png', 'png', '44', '43.7 kB', 'c23fadfac6813aa9658850d21afe0522.png', '/menu-icons/v4/c23fadfac6813aa9658850d21afe0522.png', '/platform/sys/file/download?id=c23fadfac6813aa9658850d21afe0522', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('78cdcfded40ace970a47d5d3ee266cb4', 'MINIO', 'cug', '128_建言献策_261dd7f7.png', 'png', '46', '46.3 kB', '78cdcfded40ace970a47d5d3ee266cb4.png', '/menu-icons/v4/78cdcfded40ace970a47d5d3ee266cb4.png', '/platform/sys/file/download?id=78cdcfded40ace970a47d5d3ee266cb4', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('355393c56fa8dfec6ca72e5bb3afb44e', 'MINIO', 'cug', '129_填写申请_9e0070b7.png', 'png', '40', '40.3 kB', '355393c56fa8dfec6ca72e5bb3afb44e.png', '/menu-icons/v4/355393c56fa8dfec6ca72e5bb3afb44e.png', '/platform/sys/file/download?id=355393c56fa8dfec6ca72e5bb3afb44e', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('d3f4bdad1fea1e72a254a76bf0031b5f', 'MINIO', 'cug', '130_我的申请_360f1c3f.png', 'png', '41', '41.1 kB', 'd3f4bdad1fea1e72a254a76bf0031b5f.png', '/menu-icons/v4/d3f4bdad1fea1e72a254a76bf0031b5f.png', '/platform/sys/file/download?id=d3f4bdad1fea1e72a254a76bf0031b5f', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('a19a061c9150542eaf2c606b6ce7d5db', 'MINIO', 'cug', '131_校工会审核_a9d5ff11.png', 'png', '44', '44.2 kB', 'a19a061c9150542eaf2c606b6ce7d5db.png', '/menu-icons/v4/a19a061c9150542eaf2c606b6ce7d5db.png', '/platform/sys/file/download?id=a19a061c9150542eaf2c606b6ce7d5db', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('73173ed918d2432883a2fc7ce7860acf', 'MINIO', 'cug', '132_查询统计_5f2c0218.png', 'png', '41', '40.9 kB', '73173ed918d2432883a2fc7ce7860acf.png', '/menu-icons/v4/73173ed918d2432883a2fc7ce7860acf.png', '/platform/sys/file/download?id=73173ed918d2432883a2fc7ce7860acf', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('0cb7972d868debcea8cbaaec8c031ecd', 'MINIO', 'cug', '133_作品征集_10ecb801.png', 'png', '41', '41.1 kB', '0cb7972d868debcea8cbaaec8c031ecd.png', '/menu-icons/v4/0cb7972d868debcea8cbaaec8c031ecd.png', '/platform/sys/file/download?id=0cb7972d868debcea8cbaaec8c031ecd', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('1bab0b87dda87cce3b9d2e399834cbd4', 'MINIO', 'cug', '134_作品上传_5ae60a2c.png', 'png', '41', '41.2 kB', '1bab0b87dda87cce3b9d2e399834cbd4.png', '/menu-icons/v4/1bab0b87dda87cce3b9d2e399834cbd4.png', '/platform/sys/file/download?id=1bab0b87dda87cce3b9d2e399834cbd4', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('247977f8981b0d1ba3f66d5281758af3', 'MINIO', 'cug', '135_困难帮扶_ca437578.png', 'png', '41', '41.4 kB', '247977f8981b0d1ba3f66d5281758af3.png', '/menu-icons/v4/247977f8981b0d1ba3f66d5281758af3.png', '/platform/sys/file/download?id=247977f8981b0d1ba3f66d5281758af3', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('25a37b6731412687cc139354516af951', 'MINIO', 'cug', '136_我的作品_b0febdbf.png', 'png', '42', '42.3 kB', '25a37b6731412687cc139354516af951.png', '/menu-icons/v4/25a37b6731412687cc139354516af951.png', '/platform/sys/file/download?id=25a37b6731412687cc139354516af951', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('09e1b869c29991070515f5fb1decb1d5', 'MINIO', 'cug', '137_困难帮扶申请_d11cf9fe.png', 'png', '39', '39.3 kB', '09e1b869c29991070515f5fb1decb1d5.png', '/menu-icons/v4/09e1b869c29991070515f5fb1decb1d5.png', '/platform/sys/file/download?id=09e1b869c29991070515f5fb1decb1d5', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('72997cecb2555f50d1ea0bd52e2d82ae', 'MINIO', 'cug', '138_作品阅览_04fd4ddf.png', 'png', '42', '41.9 kB', '72997cecb2555f50d1ea0bd52e2d82ae.png', '/menu-icons/v4/72997cecb2555f50d1ea0bd52e2d82ae.png', '/platform/sys/file/download?id=72997cecb2555f50d1ea0bd52e2d82ae', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('26a79287dbf7e1ca3c79332fb6285862', 'MINIO', 'cug', '139_会议选座_0c08a2e7.png', 'png', '54', '54.4 kB', '26a79287dbf7e1ca3c79332fb6285862.png', '/menu-icons/v4/26a79287dbf7e1ca3c79332fb6285862.png', '/platform/sys/file/download?id=26a79287dbf7e1ca3c79332fb6285862', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('4830086adc28e0bf629d0ff9e2857f27', 'MINIO', 'cug', '140_亲子活动_871f822c.png', 'png', '45', '45.3 kB', '4830086adc28e0bf629d0ff9e2857f27.png', '/menu-icons/v4/4830086adc28e0bf629d0ff9e2857f27.png', '/platform/sys/file/download?id=4830086adc28e0bf629d0ff9e2857f27', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('644a0d084ac071002407b4a0c2f53af0', 'MINIO', 'cug', '141_活动报名_612a4fa1.png', 'png', '42', '41.8 kB', '644a0d084ac071002407b4a0c2f53af0.png', '/menu-icons/v4/644a0d084ac071002407b4a0c2f53af0.png', '/platform/sys/file/download?id=644a0d084ac071002407b4a0c2f53af0', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('979bfcd302f91267653322b34656a0fe', 'MINIO', 'cug', '142_心理咨询_c8d0855a.png', 'png', '45', '44.5 kB', '979bfcd302f91267653322b34656a0fe.png', '/menu-icons/v4/979bfcd302f91267653322b34656a0fe.png', '/platform/sys/file/download?id=979bfcd302f91267653322b34656a0fe', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('667e2023287032849e9eed37bd96ffab', 'MINIO', 'cug', '143_我的报名_c0ba4f08.png', 'png', '41', '41.1 kB', '667e2023287032849e9eed37bd96ffab.png', '/menu-icons/v4/667e2023287032849e9eed37bd96ffab.png', '/platform/sys/file/download?id=667e2023287032849e9eed37bd96ffab', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('784f730e392bf97e3c8e9eb78d57e200', 'MINIO', 'cug', '144_法律援助_f148c76e.png', 'png', '46', '46.3 kB', '784f730e392bf97e3c8e9eb78d57e200.png', '/menu-icons/v4/784f730e392bf97e3c8e9eb78d57e200.png', '/platform/sys/file/download?id=784f730e392bf97e3c8e9eb78d57e200', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('1d7a71bdce09c3edc0a1e0b5b116ee0f', 'MINIO', 'cug', '145_医疗补助系统_b0cc1987.png', 'png', '53', '52.8 kB', '1d7a71bdce09c3edc0a1e0b5b116ee0f.png', '/menu-icons/v4/1d7a71bdce09c3edc0a1e0b5b116ee0f.png', '/platform/sys/file/download?id=1d7a71bdce09c3edc0a1e0b5b116ee0f', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('c7d5a756835c5896d7d8c43cd02e77f5', 'MINIO', 'cug', '146_职工福利_ca9e5652.png', 'png', '46', '45.7 kB', 'c7d5a756835c5896d7d8c43cd02e77f5.png', '/menu-icons/v4/c7d5a756835c5896d7d8c43cd02e77f5.png', '/platform/sys/file/download?id=c7d5a756835c5896d7d8c43cd02e77f5', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('ef15dcff1a44c021f83b87de5ba67c3e', 'MINIO', 'cug', '147_职工福利_093e1e29.png', 'png', '46', '45.7 kB', 'ef15dcff1a44c021f83b87de5ba67c3e.png', '/menu-icons/v4/ef15dcff1a44c021f83b87de5ba67c3e.png', '/platform/sys/file/download?id=ef15dcff1a44c021f83b87de5ba67c3e', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('9c004bc15efc7133ecdc2fdeade39757', 'MINIO', 'cug', '148_福利选择_519c8f5a.png', 'png', '44', '43.6 kB', '9c004bc15efc7133ecdc2fdeade39757.png', '/menu-icons/v4/9c004bc15efc7133ecdc2fdeade39757.png', '/platform/sys/file/download?id=9c004bc15efc7133ecdc2fdeade39757', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('3f74d543dd457b89ff633f9758534a13', 'MINIO', 'cug', '149_福利日常核对_73df1dda.png', 'png', '44', '43.8 kB', '3f74d543dd457b89ff633f9758534a13.png', '/menu-icons/v4/3f74d543dd457b89ff633f9758534a13.png', '/platform/sys/file/download?id=3f74d543dd457b89ff633f9758534a13', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('9be265f40e1fe24bf426c101f91c372e', 'MINIO', 'cug', '150_体检管理_cf47b9d6.png', 'png', '45', '44.5 kB', '9be265f40e1fe24bf426c101f91c372e.png', '/menu-icons/v4/9be265f40e1fe24bf426c101f91c372e.png', '/platform/sys/file/download?id=9be265f40e1fe24bf426c101f91c372e', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('f56d4722eba8c35c7ad17eaee09957da', 'MINIO', 'cug', '151_体育活动管理_e08ff179.png', 'png', '42', '41.8 kB', 'f56d4722eba8c35c7ad17eaee09957da.png', '/menu-icons/v4/f56d4722eba8c35c7ad17eaee09957da.png', '/platform/sys/file/download?id=f56d4722eba8c35c7ad17eaee09957da', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('1773284fda8bb61676c591a12fe59cc0', 'MINIO', 'cug', '152_体育活动报名_69280dbb.png', 'png', '42', '41.8 kB', '1773284fda8bb61676c591a12fe59cc0.png', '/menu-icons/v4/1773284fda8bb61676c591a12fe59cc0.png', '/platform/sys/file/download?id=1773284fda8bb61676c591a12fe59cc0', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('1f362f5b49109756b1cd3e98e0d51cf2', 'MINIO', 'cug', '153_品牌活动_0868f8b6.png', 'png', '41', '41.1 kB', '1f362f5b49109756b1cd3e98e0d51cf2.png', '/menu-icons/v4/1f362f5b49109756b1cd3e98e0d51cf2.png', '/platform/sys/file/download?id=1f362f5b49109756b1cd3e98e0d51cf2', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('50ab45f2d7b1159dd41452711b69b12e', 'MINIO', 'cug', '154_品牌活动报名_c97ad132.png', 'png', '42', '41.8 kB', '50ab45f2d7b1159dd41452711b69b12e.png', '/menu-icons/v4/50ab45f2d7b1159dd41452711b69b12e.png', '/platform/sys/file/download?id=50ab45f2d7b1159dd41452711b69b12e', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('3cc65760857ae6336d9c3556af831096', 'MINIO', 'cug', '155_校工会文化活动_788400d0.png', 'png', '42', '42.0 kB', '3cc65760857ae6336d9c3556af831096.png', '/menu-icons/v4/3cc65760857ae6336d9c3556af831096.png', '/platform/sys/file/download?id=3cc65760857ae6336d9c3556af831096', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('58b5c2e00fe8a4cc907a9319638c455b', 'MINIO', 'cug', '156_校文化活动报名_c1709519.png', 'png', '42', '41.8 kB', '58b5c2e00fe8a4cc907a9319638c455b.png', '/menu-icons/v4/58b5c2e00fe8a4cc907a9319638c455b.png', '/platform/sys/file/download?id=58b5c2e00fe8a4cc907a9319638c455b', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('8aba95b4264509993101f56165c5230e', 'MINIO', 'cug', '157_分工会文化活动_b759a93a.png', 'png', '42', '42.0 kB', '8aba95b4264509993101f56165c5230e.png', '/menu-icons/v4/8aba95b4264509993101f56165c5230e.png', '/platform/sys/file/download?id=8aba95b4264509993101f56165c5230e', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('694bf29f0b31bb6cc39fe628596fcf10', 'MINIO', 'cug', '158_作品征集_91d79e0f.png', 'png', '41', '41.1 kB', '694bf29f0b31bb6cc39fe628596fcf10.png', '/menu-icons/v4/694bf29f0b31bb6cc39fe628596fcf10.png', '/platform/sys/file/download?id=694bf29f0b31bb6cc39fe628596fcf10', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('2096b1f5b2dd220708caa011807e760b', 'MINIO', 'cug', '159_亲子活动_737e57a3.png', 'png', '45', '45.3 kB', '2096b1f5b2dd220708caa011807e760b.png', '/menu-icons/v4/2096b1f5b2dd220708caa011807e760b.png', '/platform/sys/file/download?id=2096b1f5b2dd220708caa011807e760b', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('58e2294be4fc14f163dfa8648e1d7766', 'MINIO', 'cug', '160_教工健身走_33e81fa0.png', 'png', '44', '43.6 kB', '58e2294be4fc14f163dfa8648e1d7766.png', '/menu-icons/v4/58e2294be4fc14f163dfa8648e1d7766.png', '/platform/sys/file/download?id=58e2294be4fc14f163dfa8648e1d7766', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('c8f85b0da4d6934b6c4daa3bfaf6b4fe', 'MINIO', 'cug', '161_活动基础管理_77c8af32.png', 'png', '44', '43.6 kB', 'c8f85b0da4d6934b6c4daa3bfaf6b4fe.png', '/menu-icons/v4/c8f85b0da4d6934b6c4daa3bfaf6b4fe.png', '/platform/sys/file/download?id=c8f85b0da4d6934b6c4daa3bfaf6b4fe', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('5aa7fee7e955f392f4348ed76dec3a96', 'MINIO', 'cug', '162_工会报销_1f917af2.png', 'png', '53', '52.8 kB', '5aa7fee7e955f392f4348ed76dec3a96.png', '/menu-icons/v4/5aa7fee7e955f392f4348ed76dec3a96.png', '/platform/sys/file/download?id=5aa7fee7e955f392f4348ed76dec3a96', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('3993212bfb4c32fd116309ac74a02caf', 'MINIO', 'cug', '163_报销申请_d6132ff0.png', 'png', '50', '50.0 kB', '3993212bfb4c32fd116309ac74a02caf.png', '/menu-icons/v4/3993212bfb4c32fd116309ac74a02caf.png', '/platform/sys/file/download?id=3993212bfb4c32fd116309ac74a02caf', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('8e01489dd693caea1c6ad1605a8b9496', 'MINIO', 'cug', '164_问卷服务_1c643efa.png', 'png', '46', '46.3 kB', '8e01489dd693caea1c6ad1605a8b9496.png', '/menu-icons/v4/8e01489dd693caea1c6ad1605a8b9496.png', '/platform/sys/file/download?id=8e01489dd693caea1c6ad1605a8b9496', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('7e99bec530b0d1c4a23060ab2f46ba10', 'MINIO', 'cug', '165_场地预约(old)_e9e46237.png', 'png', '53', '53.2 kB', '7e99bec530b0d1c4a23060ab2f46ba10.png', '/menu-icons/v4/7e99bec530b0d1c4a23060ab2f46ba10.png', '/platform/sys/file/download?id=7e99bec530b0d1c4a23060ab2f46ba10', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('f2fe436890ce5f92128f3520780ca3a8', 'MINIO', 'cug', '166_场地预约_82356ff2.png', 'png', '53', '53.2 kB', 'f2fe436890ce5f92128f3520780ca3a8.png', '/menu-icons/v4/f2fe436890ce5f92128f3520780ca3a8.png', '/platform/sys/file/download?id=f2fe436890ce5f92128f3520780ca3a8', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('39ba4b1f22b31ef85b10125cb1745d0f', 'MINIO', 'cug', '167_消息中心_40266809.png', 'png', '58', '58.3 kB', '39ba4b1f22b31ef85b10125cb1745d0f.png', '/menu-icons/v4/39ba4b1f22b31ef85b10125cb1745d0f.png', '/platform/sys/file/download?id=39ba4b1f22b31ef85b10125cb1745d0f', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('459acd2ff8c33f855a77a03d1994854e', 'MINIO', 'cug', '168_工会大数据_09abd6b8.png', 'png', '44', '44.3 kB', '459acd2ff8c33f855a77a03d1994854e.png', '/menu-icons/v4/459acd2ff8c33f855a77a03d1994854e.png', '/platform/sys/file/download?id=459acd2ff8c33f855a77a03d1994854e', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('d592100d662b25fe14c546725a7eaf3b', 'MINIO', 'cug', '169_年度预算申报_396309f2.png', 'png', '50', '50.2 kB', 'd592100d662b25fe14c546725a7eaf3b.png', '/menu-icons/v4/d592100d662b25fe14c546725a7eaf3b.png', '/platform/sys/file/download?id=d592100d662b25fe14c546725a7eaf3b', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('39dc023de0c0ef3df9035b84246c35fc', 'MINIO', 'cug', '170_预算申报_6be01be5.png', 'png', '50', '50.2 kB', '39dc023de0c0ef3df9035b84246c35fc.png', '/menu-icons/v4/39dc023de0c0ef3df9035b84246c35fc.png', '/platform/sys/file/download?id=39dc023de0c0ef3df9035b84246c35fc', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('d4c3f3f8efe2ce8c8ea3beb4409918e3', 'MINIO', 'cug', '171_经费预算管理_fe0ae2a7.png', 'png', '53', '52.8 kB', 'd4c3f3f8efe2ce8c8ea3beb4409918e3.png', '/menu-icons/v4/d4c3f3f8efe2ce8c8ea3beb4409918e3.png', '/platform/sys/file/download?id=d4c3f3f8efe2ce8c8ea3beb4409918e3', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('21267a6fa768ee7eeedf7dba980616f4', 'MINIO', 'cug', '172_荣誉管理_31078d88.png', 'png', '47', '47.0 kB', '21267a6fa768ee7eeedf7dba980616f4.png', '/menu-icons/v4/21267a6fa768ee7eeedf7dba980616f4.png', '/platform/sys/file/download?id=21267a6fa768ee7eeedf7dba980616f4', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('0199cc2d1f8eff511c2038571f2bbb8b', 'MINIO', 'cug', '173_评优评先_32bd9853.png', 'png', '51', '51.0 kB', '0199cc2d1f8eff511c2038571f2bbb8b.png', '/menu-icons/v4/0199cc2d1f8eff511c2038571f2bbb8b.png', '/platform/sys/file/download?id=0199cc2d1f8eff511c2038571f2bbb8b', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('837a9b8aad0e1eadceaa693dfa8e19e1', 'MINIO', 'cug', '174_新闻投稿_a4cfdc91.png', 'png', '42', '41.9 kB', '837a9b8aad0e1eadceaa693dfa8e19e1.png', '/menu-icons/v4/837a9b8aad0e1eadceaa693dfa8e19e1.png', '/platform/sys/file/download?id=837a9b8aad0e1eadceaa693dfa8e19e1', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('a7d265dfed93cf79fca45e88bd4248ff', 'MINIO', 'cug', '175_职工建家_fac7e9f5.png', 'png', '44', '44.3 kB', 'a7d265dfed93cf79fca45e88bd4248ff.png', '/menu-icons/v4/a7d265dfed93cf79fca45e88bd4248ff.png', '/platform/sys/file/download?id=a7d265dfed93cf79fca45e88bd4248ff', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('cc24c0a16a35354f332aff2b2023f0e5', 'MINIO', 'cug', '176_资产管理_d7c6c17e.png', 'png', '58', '58.3 kB', 'cc24c0a16a35354f332aff2b2023f0e5.png', '/menu-icons/v4/cc24c0a16a35354f332aff2b2023f0e5.png', '/platform/sys/file/download?id=cc24c0a16a35354f332aff2b2023f0e5', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('648d406bbbf0e32c082f02cf317bc48c', 'MINIO', 'cug', '177_注册社团_946104dc.png', 'png', '44', '44.3 kB', '648d406bbbf0e32c082f02cf317bc48c.png', '/menu-icons/v4/648d406bbbf0e32c082f02cf317bc48c.png', '/platform/sys/file/download?id=648d406bbbf0e32c082f02cf317bc48c', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('49c4c2480f2027792674edaf6f40fed4', 'MINIO', 'cug', '178_社团信息维护_f6485820.png', 'png', '44', '43.5 kB', '49c4c2480f2027792674edaf6f40fed4.png', '/menu-icons/v4/49c4c2480f2027792674edaf6f40fed4.png', '/platform/sys/file/download?id=49c4c2480f2027792674edaf6f40fed4', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('10903a2e44417f9d20c548e3424dd457', 'MINIO', 'cug', '179_社团入会_1287eb24.png', 'png', '44', '44.3 kB', '10903a2e44417f9d20c548e3424dd457.png', '/menu-icons/v4/10903a2e44417f9d20c548e3424dd457.png', '/platform/sys/file/download?id=10903a2e44417f9d20c548e3424dd457', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('486385e3da464ace8cf812de8a460761', 'MINIO', 'cug', '180_社团入会_321fa0c8.png', 'png', '44', '44.3 kB', '486385e3da464ace8cf812de8a460761.png', '/menu-icons/v4/486385e3da464ace8cf812de8a460761.png', '/platform/sys/file/download?id=486385e3da464ace8cf812de8a460761', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('88e8b7b022ed0c2929615bfedd231e45', 'MINIO', 'cug', '181_年度考核_1ddecada.png', 'png', '46', '45.7 kB', '88e8b7b022ed0c2929615bfedd231e45.png', '/menu-icons/v4/88e8b7b022ed0c2929615bfedd231e45.png', '/platform/sys/file/download?id=88e8b7b022ed0c2929615bfedd231e45', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('1a174db6bdd59b2d7e98dadf52f7f854', 'MINIO', 'cug', '182_社团评优_3f09f8a9.png', 'png', '51', '51.0 kB', '1a174db6bdd59b2d7e98dadf52f7f854.png', '/menu-icons/v4/1a174db6bdd59b2d7e98dadf52f7f854.png', '/platform/sys/file/download?id=1a174db6bdd59b2d7e98dadf52f7f854', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('d7cb87646b1579a51daff50de1c4747c', 'MINIO', 'cug', '183_社团统计_b8817cce.png', 'png', '44', '43.7 kB', 'd7cb87646b1579a51daff50de1c4747c.png', '/menu-icons/v4/d7cb87646b1579a51daff50de1c4747c.png', '/platform/sys/file/download?id=d7cb87646b1579a51daff50de1c4747c', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('5edf99eb06031a98bc0f23b03f89bde1', 'MINIO', 'cug', '184_社团文化活动_509423f4.png', 'png', '42', '42.0 kB', '5edf99eb06031a98bc0f23b03f89bde1.png', '/menu-icons/v4/5edf99eb06031a98bc0f23b03f89bde1.png', '/platform/sys/file/download?id=5edf99eb06031a98bc0f23b03f89bde1', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('2b9fa4f9ab358355cbaf7aa9835556ef', 'MINIO', 'cug', '185_年度计划总结_e658f630.png', 'png', '42', '41.9 kB', '2b9fa4f9ab358355cbaf7aa9835556ef.png', '/menu-icons/v4/2b9fa4f9ab358355cbaf7aa9835556ef.png', '/platform/sys/file/download?id=2b9fa4f9ab358355cbaf7aa9835556ef', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('c88694f42e0203e48d3e49f6e5e066a8', 'MINIO', 'cug', '186_活动申报_895089b9.png', 'png', '41', '41.3 kB', 'c88694f42e0203e48d3e49f6e5e066a8.png', '/menu-icons/v4/c88694f42e0203e48d3e49f6e5e066a8.png', '/platform/sys/file/download?id=c88694f42e0203e48d3e49f6e5e066a8', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('7fec918647b9b82d4b37e2ded5cc3273', 'MINIO', 'cug', '187_活动申报_6bb151be.png', 'png', '41', '41.3 kB', '7fec918647b9b82d4b37e2ded5cc3273.png', '/menu-icons/v4/7fec918647b9b82d4b37e2ded5cc3273.png', '/platform/sys/file/download?id=7fec918647b9b82d4b37e2ded5cc3273', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('2589108c8f9cdb1a6bf2d3c82dbd153d', 'MINIO', 'cug', '188_费用报销管理_e8d1ced0.png', 'png', '53', '52.8 kB', '2589108c8f9cdb1a6bf2d3c82dbd153d.png', '/menu-icons/v4/2589108c8f9cdb1a6bf2d3c82dbd153d.png', '/platform/sys/file/download?id=2589108c8f9cdb1a6bf2d3c82dbd153d', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('76bf9528e92883a0aacb4400b5d7898b', 'MINIO', 'cug', '189_报销申请_6784436e.png', 'png', '50', '50.0 kB', '76bf9528e92883a0aacb4400b5d7898b.png', '/menu-icons/v4/76bf9528e92883a0aacb4400b5d7898b.png', '/platform/sys/file/download?id=76bf9528e92883a0aacb4400b5d7898b', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('1db9ddb3a212eb2438b5aa68b4aa4f98', 'MINIO', 'cug', '190_子女入学管理_36e59aa2.png', 'png', '45', '45.3 kB', '1db9ddb3a212eb2438b5aa68b4aa4f98.png', '/menu-icons/v4/1db9ddb3a212eb2438b5aa68b4aa4f98.png', '/platform/sys/file/download?id=1db9ddb3a212eb2438b5aa68b4aa4f98', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('56942a1f6017780c63c8a46b9d465730', 'MINIO', 'cug', '191_建言献策_5a90e1f8.png', 'png', '46', '46.3 kB', '56942a1f6017780c63c8a46b9d465730.png', '/menu-icons/v4/56942a1f6017780c63c8a46b9d465730.png', '/platform/sys/file/download?id=56942a1f6017780c63c8a46b9d465730', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('289c29aa7f973929396074fb0a68ee7b', 'MINIO', 'cug', '192_两委委员推选_c3886b5f.png', 'png', '44', '43.6 kB', '289c29aa7f973929396074fb0a68ee7b.png', '/menu-icons/v4/289c29aa7f973929396074fb0a68ee7b.png', '/platform/sys/file/download?id=289c29aa7f973929396074fb0a68ee7b', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('e538eee29c37357a259c7064eca89482', 'MINIO', 'cug', '193_理论学习_6d2535e3.png', 'png', '43', '43.3 kB', 'e538eee29c37357a259c7064eca89482.png', '/menu-icons/v4/e538eee29c37357a259c7064eca89482.png', '/platform/sys/file/download?id=e538eee29c37357a259c7064eca89482', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('df0c51dbe984b21bf17c2b70b7a0953b', 'MINIO', 'cug', '194_会务管理_fbe27890.png', 'png', '55', '54.8 kB', 'df0c51dbe984b21bf17c2b70b7a0953b.png', '/menu-icons/v4/df0c51dbe984b21bf17c2b70b7a0953b.png', '/platform/sys/file/download?id=df0c51dbe984b21bf17c2b70b7a0953b', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('d127deb847eb5c3ddb66546452457d56', 'MINIO', 'cug', '195_职工素养培训_81567260.png', 'png', '43', '43.3 kB', 'd127deb847eb5c3ddb66546452457d56.png', '/menu-icons/v4/d127deb847eb5c3ddb66546452457d56.png', '/platform/sys/file/download?id=d127deb847eb5c3ddb66546452457d56', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('91cdf49b7528eec7344a52c556bbbac1', 'MINIO', 'cug', '196_生日祝福_f12f0f8d.png', 'png', '46', '45.7 kB', '91cdf49b7528eec7344a52c556bbbac1.png', '/menu-icons/v4/91cdf49b7528eec7344a52c556bbbac1.png', '/platform/sys/file/download?id=91cdf49b7528eec7344a52c556bbbac1', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('62c85d34b7c83331fdc622b82ee31305', 'MINIO', 'cug', '197_会议厅_ac32facf.png', 'png', '54', '54.4 kB', '62c85d34b7c83331fdc622b82ee31305.png', '/menu-icons/v4/62c85d34b7c83331fdc622b82ee31305.png', '/platform/sys/file/download?id=62c85d34b7c83331fdc622b82ee31305', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('84786acc1aa4752f9ed27d6ae05b9845', 'MINIO', 'cug', '198_人员核对_1f9e482c.png', 'png', '44', '43.9 kB', '84786acc1aa4752f9ed27d6ae05b9845.png', '/menu-icons/v4/84786acc1aa4752f9ed27d6ae05b9845.png', '/platform/sys/file/download?id=84786acc1aa4752f9ed27d6ae05b9845', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('d164401cedd27b5e988a6728b167ebf9', 'MINIO', 'cug', '199_健身卡_3d6a88f3.png', 'png', '45', '44.5 kB', 'd164401cedd27b5e988a6728b167ebf9.png', '/menu-icons/v4/d164401cedd27b5e988a6728b167ebf9.png', '/platform/sys/file/download?id=d164401cedd27b5e988a6728b167ebf9', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('d15593858ee9e3e4740752796f0f094d', 'MINIO', 'cug', '200_量化考核_fd9a298a.png', 'png', '46', '45.7 kB', 'd15593858ee9e3e4740752796f0f094d.png', '/menu-icons/v4/d15593858ee9e3e4740752796f0f094d.png', '/platform/sys/file/download?id=d15593858ee9e3e4740752796f0f094d', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('98049319f4d8dfd8f1600693df033a92', 'MINIO', 'cug', '201_分工会自评_7a5c41f2.png', 'png', '44', '44.0 kB', '98049319f4d8dfd8f1600693df033a92.png', '/menu-icons/v4/98049319f4d8dfd8f1600693df033a92.png', '/platform/sys/file/download?id=98049319f4d8dfd8f1600693df033a92', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('e0be9482d60c2ce23d45dccf7b92b4ac', 'MINIO', 'cug', '202_生日祝福_93487f22.png', 'png', '46', '45.7 kB', 'e0be9482d60c2ce23d45dccf7b92b4ac.png', '/menu-icons/v4/e0be9482d60c2ce23d45dccf7b92b4ac.png', '/platform/sys/file/download?id=e0be9482d60c2ce23d45dccf7b92b4ac', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('c1d91269cb25ca1cdeec60480ed2bf17', 'MINIO', 'cug', '203_单位管理_c2f9569e.png', 'png', '44', '44.3 kB', 'c1d91269cb25ca1cdeec60480ed2bf17.png', '/menu-icons/v4/c1d91269cb25ca1cdeec60480ed2bf17.png', '/platform/sys/file/download?id=c1d91269cb25ca1cdeec60480ed2bf17', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('81537f82c536315f07c123f0648f0520', 'MINIO', 'cug', '204_工会管理_51b1e376.png', 'png', '44', '44.3 kB', '81537f82c536315f07c123f0648f0520.png', '/menu-icons/v4/81537f82c536315f07c123f0648f0520.png', '/platform/sys/file/download?id=81537f82c536315f07c123f0648f0520', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('43d984e35c070aeef9e02a6948ce0f13', 'MINIO', 'cug', '205_系统设置_72e8f153.png', 'png', '58', '58.3 kB', '43d984e35c070aeef9e02a6948ce0f13.png', '/menu-icons/v4/43d984e35c070aeef9e02a6948ce0f13.png', '/platform/sys/file/download?id=43d984e35c070aeef9e02a6948ce0f13', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('d89c1c55b52118f5383ac8556041a192', 'MINIO', 'cug', '206_基础管理_a993711d.png', 'png', '58', '58.3 kB', 'd89c1c55b52118f5383ac8556041a192.png', '/menu-icons/v4/d89c1c55b52118f5383ac8556041a192.png', '/platform/sys/file/download?id=d89c1c55b52118f5383ac8556041a192', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('651318033c80de8942937333a27bd181', 'MINIO', 'cug', '207_活动报名_5cc02dac.png', 'png', '42', '41.8 kB', '651318033c80de8942937333a27bd181.png', '/menu-icons/v4/651318033c80de8942937333a27bd181.png', '/platform/sys/file/download?id=651318033c80de8942937333a27bd181', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('9098831f78c6f63f34c47f50601cbf28', 'MINIO', 'cug', '208_问卷调查_86dda8e2.png', 'png', '46', '46.3 kB', '9098831f78c6f63f34c47f50601cbf28.png', '/menu-icons/v4/9098831f78c6f63f34c47f50601cbf28.png', '/platform/sys/file/download?id=9098831f78c6f63f34c47f50601cbf28', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('25f386be14f1bd2ff927466933513668', 'MINIO', 'cug', '209_系统配置_3668daf0.png', 'png', '58', '58.3 kB', '25f386be14f1bd2ff927466933513668.png', '/menu-icons/v4/25f386be14f1bd2ff927466933513668.png', '/platform/sys/file/download?id=25f386be14f1bd2ff927466933513668', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('a9d83741ede7ab47a93e60f19805d47c', 'MINIO', 'cug', '210_数据管理_5ba85827.png', 'png', '58', '58.3 kB', 'a9d83741ede7ab47a93e60f19805d47c.png', '/menu-icons/v4/a9d83741ede7ab47a93e60f19805d47c.png', '/platform/sys/file/download?id=a9d83741ede7ab47a93e60f19805d47c', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('7bba23aa9d61198c66cd8977dbdf0ae2', 'MINIO', 'cug', '211_场地预约_0a9fab6f.png', 'png', '53', '53.2 kB', '7bba23aa9d61198c66cd8977dbdf0ae2.png', '/menu-icons/v4/7bba23aa9d61198c66cd8977dbdf0ae2.png', '/platform/sys/file/download?id=7bba23aa9d61198c66cd8977dbdf0ae2', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('fde27ef077ff704c35dc2f7502ebfa9e', 'MINIO', 'cug', '212_场地预约_e3399da9.png', 'png', '53', '53.2 kB', 'fde27ef077ff704c35dc2f7502ebfa9e.png', '/menu-icons/v4/fde27ef077ff704c35dc2f7502ebfa9e.png', '/platform/sys/file/download?id=fde27ef077ff704c35dc2f7502ebfa9e', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('0fe41721790a452cec7765a8442d25bc', 'MINIO', 'cug', '213_流程管理_8bfae2e4.png', 'png', '58', '58.3 kB', '0fe41721790a452cec7765a8442d25bc.png', '/menu-icons/v4/0fe41721790a452cec7765a8442d25bc.png', '/platform/sys/file/download?id=0fe41721790a452cec7765a8442d25bc', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('964516a2efab750738d553a978f14e9e', 'MINIO', 'cug', '214_我的预约_a58a5431.png', 'png', '53', '53.0 kB', '964516a2efab750738d553a978f14e9e.png', '/menu-icons/v4/964516a2efab750738d553a978f14e9e.png', '/platform/sys/file/download?id=964516a2efab750738d553a978f14e9e', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('3b7caee281e29c602c60d25f0dbb6a2f', 'MINIO', 'cug', '215_校工会审核_f3c752d1.png', 'png', '44', '44.2 kB', '3b7caee281e29c602c60d25f0dbb6a2f.png', '/menu-icons/v4/3b7caee281e29c602c60d25f0dbb6a2f.png', '/platform/sys/file/download?id=3b7caee281e29c602c60d25f0dbb6a2f', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('4a97b1a9396b26c445ef930f29493015', 'MINIO', 'cug', '216_场地预约_26e7dc9c.png', 'png', '53', '53.2 kB', '4a97b1a9396b26c445ef930f29493015.png', '/menu-icons/v4/4a97b1a9396b26c445ef930f29493015.png', '/platform/sys/file/download?id=4a97b1a9396b26c445ef930f29493015', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('0a4136ea1398e76edef2aaae2fcf13a8', 'MINIO', 'cug', '217_普惠疗休养_68ac8d18.png', 'png', '45', '44.5 kB', '0a4136ea1398e76edef2aaae2fcf13a8.png', '/menu-icons/v4/0a4136ea1398e76edef2aaae2fcf13a8.png', '/platform/sys/file/download?id=0a4136ea1398e76edef2aaae2fcf13a8', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('842e0dce2c45f44751675860bb859d63', 'MINIO', 'cug', '218_疗休养报名_f30cfea5.png', 'png', '42', '42.4 kB', '842e0dce2c45f44751675860bb859d63.png', '/menu-icons/v4/842e0dce2c45f44751675860bb859d63.png', '/platform/sys/file/download?id=842e0dce2c45f44751675860bb859d63', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('69d455afdb1d6bee4d316344e52b8d18', 'MINIO', 'cug', '219_场地预约_f50b3389.png', 'png', '53', '53.2 kB', '69d455afdb1d6bee4d316344e52b8d18.png', '/menu-icons/v4/69d455afdb1d6bee4d316344e52b8d18.png', '/platform/sys/file/download?id=69d455afdb1d6bee4d316344e52b8d18', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('ab10e2a86d3e360f210464535ec12629', 'MINIO', 'cug', '220_学习教育平台_a0f47f6a.png', 'png', '43', '43.3 kB', 'ab10e2a86d3e360f210464535ec12629.png', '/menu-icons/v4/ab10e2a86d3e360f210464535ec12629.png', '/platform/sys/file/download?id=ab10e2a86d3e360f210464535ec12629', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('43448e1d37a564fb05d7fc3eb2651dfe', 'MINIO', 'cug', '221_普惠疗休养_b7c63f0c.png', 'png', '45', '44.5 kB', '43448e1d37a564fb05d7fc3eb2651dfe.png', '/menu-icons/v4/43448e1d37a564fb05d7fc3eb2651dfe.png', '/platform/sys/file/download?id=43448e1d37a564fb05d7fc3eb2651dfe', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('a8ee468acd66c5486f58d4593c46ac64', 'MINIO', 'cug', '222_疗休养报名_b7c63f0c.png', 'png', '42', '42.4 kB', 'a8ee468acd66c5486f58d4593c46ac64.png', '/menu-icons/v4/a8ee468acd66c5486f58d4593c46ac64.png', '/platform/sys/file/download?id=a8ee468acd66c5486f58d4593c46ac64', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('755643ca253b6fe42953aeac9b6f910b', 'MINIO', 'cug', '223_我的疗休养_d3020be8.png', 'png', '43', '42.8 kB', '755643ca253b6fe42953aeac9b6f910b.png', '/menu-icons/v4/755643ca253b6fe42953aeac9b6f910b.png', '/platform/sys/file/download?id=755643ca253b6fe42953aeac9b6f910b', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('000c9c07dc2f9b4013aab7cdc092b593', 'MINIO', 'cug', '224_分工会审核_80734d95.png', 'png', '44', '44.0 kB', '000c9c07dc2f9b4013aab7cdc092b593.png', '/menu-icons/v4/000c9c07dc2f9b4013aab7cdc092b593.png', '/platform/sys/file/download?id=000c9c07dc2f9b4013aab7cdc092b593', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('1a6d2f1a594ab7860c0f15008c60c314', 'MINIO', 'cug', '225_校工会审核_08793469.png', 'png', '44', '44.2 kB', '1a6d2f1a594ab7860c0f15008c60c314.png', '/menu-icons/v4/1a6d2f1a594ab7860c0f15008c60c314.png', '/platform/sys/file/download?id=1a6d2f1a594ab7860c0f15008c60c314', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('d44ecddd34378a79f7da58e23cd3c8a6', 'MINIO', 'cug', '226_学习教育平台_3af0f040.png', 'png', '43', '43.3 kB', 'd44ecddd34378a79f7da58e23cd3c8a6.png', '/menu-icons/v4/d44ecddd34378a79f7da58e23cd3c8a6.png', '/platform/sys/file/download?id=d44ecddd34378a79f7da58e23cd3c8a6', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('f8482973e06e66b0db234cf6380b7d95', 'MINIO', 'cug', '227_学习教育首页_82946217.png', 'png', '43', '43.3 kB', 'f8482973e06e66b0db234cf6380b7d95.png', '/menu-icons/v4/f8482973e06e66b0db234cf6380b7d95.png', '/platform/sys/file/download?id=f8482973e06e66b0db234cf6380b7d95', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('b84d1af3a4484c1b39365979fae6c585', 'MINIO', 'cug', '228_我的学习_3e9a7611.png', 'png', '42', '42.0 kB', 'b84d1af3a4484c1b39365979fae6c585.png', '/menu-icons/v4/b84d1af3a4484c1b39365979fae6c585.png', '/platform/sys/file/download?id=b84d1af3a4484c1b39365979fae6c585', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('68ac60361c0f193cc355110c0b0f2b6d', 'MINIO', 'cug', '229_荣誉台账_47a997dc.png', 'png', '47', '47.0 kB', '68ac60361c0f193cc355110c0b0f2b6d.png', '/menu-icons/v4/68ac60361c0f193cc355110c0b0f2b6d.png', '/platform/sys/file/download?id=68ac60361c0f193cc355110c0b0f2b6d', NULL, NULL, '', 1785921322195, '', 1785921322195, 0),
+('ca3fececdab634c789e2f1d162ec62ba', 'MINIO', 'cug', '230_荣誉展示_2a93542d.png', 'png', '47', '47.0 kB', 'ca3fececdab634c789e2f1d162ec62ba.png', '/menu-icons/v4/ca3fececdab634c789e2f1d162ec62ba.png', '/platform/sys/file/download?id=ca3fececdab634c789e2f1d162ec62ba', NULL, NULL, '', 1785921322195, '', 1785921322195, 0)
+ON DUPLICATE KEY UPDATE
+ `engine` = VALUES(`engine`),
+ `bucket` = VALUES(`bucket`),
+ `name` = VALUES(`name`),
+ `suffix` = VALUES(`suffix`),
+ `sizeKb` = VALUES(`sizeKb`),
+ `sizeInfo` = VALUES(`sizeInfo`),
+ `objName` = VALUES(`objName`),
+ `storagePath` = VALUES(`storagePath`),
+ `downloadPath` = VALUES(`downloadPath`),
+ `updatedAt` = VALUES(`updatedAt`),
+ `delFlag` = 0;
+
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=57ef8603692af334526e191c1e81301e', `updatedAt` = 1785921322195 WHERE `id` = '2e6f393072904de3a80b10a00d3eeea5';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=8b152a98cf83bc6c20d2bb488fc48515', `updatedAt` = 1785921322195 WHERE `id` = '64ace2097a0341c8ba2da1961cda671f';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=e4cf62b0ac16798727612b74fbabac4d', `updatedAt` = 1785921322195 WHERE `id` = 'eb18aa5741e64ce0bcaa824119d720a8';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=a8c6f9352f56519b4914ca02ab274242', `updatedAt` = 1785921322195 WHERE `id` = '835cb68e14e74f7bbf6cf5a1e0659a26';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=2b74945f5c0741be5a67be574c4eb3d3', `updatedAt` = 1785921322195 WHERE `id` = '10ebaa5b633f42bf9f8768a942c53fb5';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=c4817a606d8e722e939811cdb8bb0208', `updatedAt` = 1785921322195 WHERE `id` = 'e7cf2f56415f4e1dacfb415b42045d4c';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=7d0d5d3f95faf51875c8cebf5ef23181', `updatedAt` = 1785921322195 WHERE `id` = '40a293cce5474cb58503435cb5a2fb14';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=a472973503af14a20ae0f8f1c7d03634', `updatedAt` = 1785921322195 WHERE `id` = '2666d0aeb0a84c15bcbb7802433e0070';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=8462dbea71f06a7257864c9bb77c7f9e', `updatedAt` = 1785921322195 WHERE `id` = 'ea574347b35a4c68bd02dc1cd2eb9e5f';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=823b3b7f7707774625bb7fe9f5ebc416', `updatedAt` = 1785921322195 WHERE `id` = '9441d18cd87f48d0b9f49d9f7103e55b';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=4b0a707d816c0f3abc6ff7fc3092e819', `updatedAt` = 1785921322195 WHERE `id` = '44a59a2b8a6b48efa35eda8b16558a26';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=3ea367f14cfd98eddb8e3fd685371fad', `updatedAt` = 1785921322195 WHERE `id` = '1c2aee7dc9cc4ef1b2977d1f1013cc16';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=6f35cd276d38e408522f4411a972ba9f', `updatedAt` = 1785921322195 WHERE `id` = '11db68564eba499da35d9d5fbdf63874';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=efe85251bd9233d4c8d7e7f0fd17c17d', `updatedAt` = 1785921322195 WHERE `id` = 'd5d7964e86c54a8e993f59fa78186e9d';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=827b20f69981eadcab0af82c6853e899', `updatedAt` = 1785921322195 WHERE `id` = 'c44115254326463682aba8ddd7f58c5b';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=b054908747aa76d3bbc2f94072ecdea9', `updatedAt` = 1785921322195 WHERE `id` = 'eb4ed857e2da407981f60e29206b25f8';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=4a7ed34b91ecfa20f52055d031beac71', `updatedAt` = 1785921322195 WHERE `id` = 'c4b99724f4bc46be97608a10d84d7020';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=81ffd7b1eb7b13353557efdce30a7ee2', `updatedAt` = 1785921322195 WHERE `id` = '56835d074f3243f4b89b5cbb6cb92dfc';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=5221f202257e65e39602d70d218c41b7', `updatedAt` = 1785921322195 WHERE `id` = '304278a0ce2e49ac94758e49ce863170';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d60339858c907ede5bce05d675de9819', `updatedAt` = 1785921322195 WHERE `id` = '2b9b7227466c4889a314a8bc0236fd84';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=0718d029aeaf7fbf5fbf7442f885c116', `updatedAt` = 1785921322195 WHERE `id` = 'ff182281b3284863b13135f08407b5aa';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=8370b80ebdf5dd5b85a8ba065a6b2133', `updatedAt` = 1785921322195 WHERE `id` = '7c79171d88654fc996b2d1eeb93b75d9';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=9d3927e91ed007875a001344f061039a', `updatedAt` = 1785921322195 WHERE `id` = '32a51579ed594d3d9c272e3377110635';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d030abf3da1bf8c00d93e78586f4a9bc', `updatedAt` = 1785921322195 WHERE `id` = '6bdef282dac0405e9738fb159e1a2d46';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=822abad93728db1326baa27b4f2dbe04', `updatedAt` = 1785921322195 WHERE `id` = 'eeaf336622364a178392c20cfbd6bb0b';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=541f9d25077780099d4e4594bea2bb4e', `updatedAt` = 1785921322195 WHERE `id` = 'b27178ff03df4fdbab5feeea0224a992';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=47148702a76cc6ea8e7807ac5d5eb6e1', `updatedAt` = 1785921322195 WHERE `id` = '87611b6d78bb490080f3456c53a99e07';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d4e6b7275313903fb7ff9f40046f9ed6', `updatedAt` = 1785921322195 WHERE `id` = 'd0ee5ab9fa3247cf813514a88437536f';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=153ee7433a7b441bcf0df449a93cf07a', `updatedAt` = 1785921322195 WHERE `id` = 'af963d19d77a452db436174332231cb3';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=88d0311f37bd0d4afb15d3e7e1321dae', `updatedAt` = 1785921322195 WHERE `id` = 'f7a890c73c4545aeb8009de7b552f5e6';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=481b4f5262903cbc2a4c4be16144356d', `updatedAt` = 1785921322195 WHERE `id` = '41410dbe4ae34a82b982bae5b11665a8';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=43edf5cc953088145c381e89d1a2dbe5', `updatedAt` = 1785921322195 WHERE `id` = '5e0c533552d94e189f3e9ed0b847eb97';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=00a707dc661b56698cfa957da4d635e3', `updatedAt` = 1785921322195 WHERE `id` = 'b8bcaa94ac2d45b88c796626bb42cf99';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d8cf0cffdced461cc4ba8fa4314b35de', `updatedAt` = 1785921322195 WHERE `id` = '7af124e126044917920a39382666d488';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=b269cb65dc856cd4fe21fa05de4fd27e', `updatedAt` = 1785921322195 WHERE `id` = '2de433e4f8494cd3bcd86a4d5f7931e2';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=67dc9fac0d11849f8648dae234270135', `updatedAt` = 1785921322195 WHERE `id` = '840648058ebf48e3a294fdbdb9b3453a';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=a34ed81f00b2edf70da74dbb8d6b8c99', `updatedAt` = 1785921322195 WHERE `id` = 'dbd21f6b79434b34b7369df7a48589a4';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=fcbef87b9f75c924b06fff2a03246b42', `updatedAt` = 1785921322195 WHERE `id` = 'e585d2cac7ef4b6ba7ca61a1ad663c59';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=ba467095d0ccc678e34979ba679ea020', `updatedAt` = 1785921322195 WHERE `id` = '7e2b850c0934472282805f5fddaefa87';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=b189ac3e64ea6b43a86324a2a57b0595', `updatedAt` = 1785921322195 WHERE `id` = '8f27ac9fd7f644edba46868204b5ede2';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=0e14db530463cbcdeb4f23712ce75226', `updatedAt` = 1785921322195 WHERE `id` = '313842fc6f5c4d589658a9d0fc0f25b7';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=e05e3b438130ad43908f64bca84ccd4f', `updatedAt` = 1785921322195 WHERE `id` = 'dcf6c19011a9481898eb5277f24e885a';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=9436a2f85765993e4c11c53564d3d57f', `updatedAt` = 1785921322195 WHERE `id` = '13d50644bc8141ae8e32a0b11e90045d';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=5ab1059bf731e1a99e5821b16b60f815', `updatedAt` = 1785921322195 WHERE `id` = 'c547be26c12c41199dfff259a4c039ca';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=e10382c1b724f394a34d2ee7f4c1a4b3', `updatedAt` = 1785921322195 WHERE `id` = 'f3ae0a075cd94d24b0bc1d4aec5565f7';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=ec82746b31fc662da299baa4e4546323', `updatedAt` = 1785921322195 WHERE `id` = '00448f6955cd441c8677dc2eca12006b';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=fad8a880d74a74d77cd4f5a5dfab809b', `updatedAt` = 1785921322195 WHERE `id` = '024811fd168e44948e6ab84911fc26bb';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=a14e00ff8a03f307243ce45bcb5b8c5d', `updatedAt` = 1785921322195 WHERE `id` = '9bfd257eb7974763a1035a5c82b966f7';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=67e6671dc1f2220c7e10bfc62e3675b1', `updatedAt` = 1785921322195 WHERE `id` = '7492992ba3564d35938d133d7191bb0e';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=b3e5125f364f35a8dabaa5e7dcc46516', `updatedAt` = 1785921322195 WHERE `id` = '330e42e0ae914f5392b96fb933f17b5b';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d04a2c47e9c184a4d044abd7526013cb', `updatedAt` = 1785921322195 WHERE `id` = '87a2dcfac0da4ec4870b65693807a4d1';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=2acd67f07be21392efbd9951243d438d', `updatedAt` = 1785921322195 WHERE `id` = 'c269f94a5c8a4a4a8c8de0bb8f8f9f9a';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=036d3ba76739b6e8263087ec7a4fe0f5', `updatedAt` = 1785921322195 WHERE `id` = '6ddda19192c04f48ad76a507cd2e2c39';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=34d7aa98a4e1bed661d925e6c6010045', `updatedAt` = 1785921322195 WHERE `id` = '3cf7ee61f2ed44d6838d92dea22d857b';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d450c3676e3934d873f00c938a44c20b', `updatedAt` = 1785921322195 WHERE `id` = '51b21e9744614be8805113293902a7ce';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d8d831521cae0d54bbe75360cc6db970', `updatedAt` = 1785921322195 WHERE `id` = '23d30124199b486d8af79aba62440b15';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=839524da718e966329e94e5db57e751f', `updatedAt` = 1785921322195 WHERE `id` = 'd736e4d7e8644cf38f248e7ad87ed6ad';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=487eb6c9241caeacd5dbe198b2fc29f5', `updatedAt` = 1785921322195 WHERE `id` = '35a9239d754c47b9afccce173cb72d64';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=1df1f8c9847f2f2f3fdbb031f5b9b49d', `updatedAt` = 1785921322195 WHERE `id` = 'd4cab4ba599041e4b2b89cb74e7e4f35';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=e3fbc1ce067437cce9ced286d053fb88', `updatedAt` = 1785921322195 WHERE `id` = '0a2bfc8579034908baf6d035a7b14e0a';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=5f5a11d2aabd670855a205115a132223', `updatedAt` = 1785921322195 WHERE `id` = 'c03fbf17e7094f5f9d174f694dc93131';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=f7093003078726bb6143f7ee3099ceef', `updatedAt` = 1785921322195 WHERE `id` = '56620c51729f4c59a69c03ba8f5a80fc';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=ebf8e926d86c3328ea6da6b6bb377344', `updatedAt` = 1785921322195 WHERE `id` = 'ef46a58794044c73a0d1197c7b6fe41c';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=1068cd8f373106ef19dd0e6f7ed5e0c5', `updatedAt` = 1785921322195 WHERE `id` = 'c6a2ec8dc2f84f2fbba9673797e10faa';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=2d4f07ed1e1ebb4f095cbbbcabe13963', `updatedAt` = 1785921322195 WHERE `id` = '7b21d46827e9451c84809b53c1c08e2b';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=63db1069887f9acf02edeaccb2a8c9ed', `updatedAt` = 1785921322195 WHERE `id` = '43f06636029a4f16b4a8a1007312d422';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=698e1fc9c201e611e8e7cebe9dadd8ef', `updatedAt` = 1785921322195 WHERE `id` = 'b6c224df9e6c4f678f931c9006a718f0';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=360b8b91280de12276c110201c8d7425', `updatedAt` = 1785921322195 WHERE `id` = '297400c803404aa2a34f38d276eaced0';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=25454e316e3d9cf3f1520797b507efd8', `updatedAt` = 1785921322195 WHERE `id` = 'aa0ffd36239f4a13b61419744fd3fbbb';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=cb46561b1e37852cbc90815ac66c3351', `updatedAt` = 1785921322195 WHERE `id` = '7dc21dca53184791b587d9c654dccfa3';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=e12a96173d033e50aafbcc9356c811c4', `updatedAt` = 1785921322195 WHERE `id` = '939595b4c6754cb483a7d65227844c6e';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d5d5832a552bf8d434b1c6debd777da4', `updatedAt` = 1785921322195 WHERE `id` = 'd073c1d866c0463ca571a658ee5c9760';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=7d27b774e627b02cda5df9f9970016f7', `updatedAt` = 1785921322195 WHERE `id` = '3f88a4f679fc4d78b9557055cc4bc1ae';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=fdbf15abdefc00b3388e5fadf9bd8740', `updatedAt` = 1785921322195 WHERE `id` = '8a77d32c8f9145f48f376e0886cefc59';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=00147780b5ad42a6b07c1ac54569792f', `updatedAt` = 1785921322195 WHERE `id` = '44423a17da734e318e69aa99560c81c0';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=c42ada04526004c863e50d3d17b6e408', `updatedAt` = 1785921322195 WHERE `id` = '3e10265306224ac18c4b4c7e3d7c92d0';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=3b9f9415e36b57b73d02ef674a9c7616', `updatedAt` = 1785921322195 WHERE `id` = 'ac2516a6788a4be98ffa44c5842568bb';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=09e04f045df284eaaf281c701a61ce65', `updatedAt` = 1785921322195 WHERE `id` = '59d6ba7c321a43548f04120ed1936d32';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=28c9f1b52e47184a9cba0dd3720fb9aa', `updatedAt` = 1785921322195 WHERE `id` = '6b5adca77c454fffbe112da4096a25d6';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=07ef4713927c1ff868c766c723ed1acc', `updatedAt` = 1785921322195 WHERE `id` = '575660216c844b23a1fb9ae526ec180c';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=76e0dd9b54251141b235975d31c05d12', `updatedAt` = 1785921322195 WHERE `id` = '1375120f807e4c5996f91ff77f043c59';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=857956ba68605f43198123ed76e46f34', `updatedAt` = 1785921322195 WHERE `id` = '2c61ac06b95d4b34a0e300782b4ac267';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=9d67a619eff5b7b45fe8676cb32091fe', `updatedAt` = 1785921322195 WHERE `id` = '893016b4db414bdb83eb33484c62f23a';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=12f9ae93e7b07a9b0f20f2556050ed6c', `updatedAt` = 1785921322195 WHERE `id` = 'dbaba7b31ae9484492c766286371a0be';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d52462ba5ec9b1373d739433de2da30c', `updatedAt` = 1785921322195 WHERE `id` = '898f95af62dc47f08ea29bbbfdf89337';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=3419504fe535f6888355d9275a72630b', `updatedAt` = 1785921322195 WHERE `id` = 'fb16e44eff3f4ce5b5ecccaa2c0f9528';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=0a244bf26674a5598cd3add153438045', `updatedAt` = 1785921322195 WHERE `id` = '42d1b0ccbf254dfba7513d713c1f1489';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=58f339cfa0455455027c304a61262293', `updatedAt` = 1785921322195 WHERE `id` = '811cf28ce73c478e8f6f22827ed8f2aa';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d3133639fcd76e0afc139536433f4082', `updatedAt` = 1785921322195 WHERE `id` = '57accf35655f40cb897917167bcad496';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=cef1ccb8a9cc8804e9c7ebe9a77228e3', `updatedAt` = 1785921322195 WHERE `id` = '05f829da70c541929e993968cf802a1c';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=221eb720d89330b020831977901ffb01', `updatedAt` = 1785921322195 WHERE `id` = 'a8966b0e0e174a8480a474979b6257b4';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=0ad363ca5afe42974bfadfedce3884ad', `updatedAt` = 1785921322195 WHERE `id` = '893a216d09b0443bb736708961cf2eeb';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=900335e540cc289670acc56a3f4efdc6', `updatedAt` = 1785921322195 WHERE `id` = '0c4ccaece05f45f8b0533cedb5ea0630';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=17d93eabe5550904da837191e873727c', `updatedAt` = 1785921322195 WHERE `id` = 'a112c7db9e554a39b73ca00fd3964d9e';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=fe57d48708f2d5775a4caf6ae9810885', `updatedAt` = 1785921322195 WHERE `id` = '23883f9ae2394684999611698f34c3d8';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=9eb136427ad27c9d7dcb3c8707722197', `updatedAt` = 1785921322195 WHERE `id` = 'e5851cdfc62b4623886b9608c42f2666';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=c6a18ba7ab1cced5ff8a143b508ac232', `updatedAt` = 1785921322195 WHERE `id` = 'abfbd5db63f14be0a51356e50f0bbe30';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=39ad45823ce67503b15d0e80baac5a90', `updatedAt` = 1785921322195 WHERE `id` = '99252619ec5e4072a98ac503fd869774';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=ac6ece2322ded47882503379cbdb11e4', `updatedAt` = 1785921322195 WHERE `id` = '6a54861491554fdc9cd83a49a580ad4f';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=ca34d08cc7be228497903791476a021c', `updatedAt` = 1785921322195 WHERE `id` = '4a764f7db2e7429ab5e348a6d81621db';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=023abe62c4dcba439ae559a117453f66', `updatedAt` = 1785921322195 WHERE `id` = 'c13558b09136482187b4725d4ed6936e';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=f1455ca7fd4317263281ac6cf41fc1ad', `updatedAt` = 1785921322195 WHERE `id` = 'f808e1e1453347e8a38cb4aa79a9e865';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=3f8884bf81ae83404e13cde55dcf79ed', `updatedAt` = 1785921322195 WHERE `id` = '6c3fcd1a66f44d8980214673959e46fe';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=c23849106f7cd6b4ebdd38ab7c736404', `updatedAt` = 1785921322195 WHERE `id` = '16388b3dd01440a180eca20da23bbcd9';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=e83e7cc6d1c9579d0c90d846123d4781', `updatedAt` = 1785921322195 WHERE `id` = 'dc2763927e3a4733a08969ab7bbd1390';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=e614a2a418affa90b4604d854bbe8f4f', `updatedAt` = 1785921322195 WHERE `id` = '50bf62d0b7da4c58a60884aeaa140fc2';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=256e79961efba17f049992fa79c44ddd', `updatedAt` = 1785921322195 WHERE `id` = '05f308a2897b424d9deb9aa6b713c779';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=5327c3f6de7725c98b4a847c820363fd', `updatedAt` = 1785921322195 WHERE `id` = 'd54c4078b7b748b9a19d49ac5f6aacfa';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=0e4100d9c4ea5176698a2345787c198c', `updatedAt` = 1785921322195 WHERE `id` = 'e04f9463a00e403eb0428f79c65d9ddc';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=b8f169e5778223784b9135af8a311524', `updatedAt` = 1785921322195 WHERE `id` = '5a994c0fceca4cdd9255ddbd8c902e93';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=0543f3f83e09ad659b9abcaefd08b94a', `updatedAt` = 1785921322195 WHERE `id` = 'bfd9983cd5924d189eef17ff250052bf';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=6a190139c0642e5364294b90a864858b', `updatedAt` = 1785921322195 WHERE `id` = 'd1abc76f12d44dae98dd3bb37945a205';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=337ecc73f2d4b46217a0037c2e7bb986', `updatedAt` = 1785921322195 WHERE `id` = '0d6c8aacf875487fb89a1ec0cbf76c52';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=98db42fa3b4eede3f6502aaaec1e8117', `updatedAt` = 1785921322195 WHERE `id` = '17c32edb450c4a8e8faf5c1fcf27684c';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d91ad1c8f455cc80e03380f2c55b5e7a', `updatedAt` = 1785921322195 WHERE `id` = '62b1effb0c0d4f48b2b3449fe3183626';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=8a129812d0f083d933bed9f7362ce3c2', `updatedAt` = 1785921322195 WHERE `id` = 'ed6f15a03f5240ffb142f4435b67d6cc';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=3c8e7767270938e6bedabb675947d36c', `updatedAt` = 1785921322195 WHERE `id` = '3f09df78e9c746569a0e6e62ea8beea4';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d9e86cfc1eba51102cc2a5067f669ce9', `updatedAt` = 1785921322195 WHERE `id` = '70b4f9a163e644b9a900612586b7d2e8';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=31b67a1b095a3e1e5dec07bb4377e87c', `updatedAt` = 1785921322195 WHERE `id` = '8f752c502e374ded8419fdbb16362814';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=29f151188867dd0b541b2998832e609d', `updatedAt` = 1785921322195 WHERE `id` = '22847e5583744d2298736b9d2a0e7211';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=c1f86c180293b8d8a33b733335c95d92', `updatedAt` = 1785921322195 WHERE `id` = 'ef93e3b96c57416c851c8a69bd220869';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=4a2284606c913e81a4a8ae4a30907fa1', `updatedAt` = 1785921322195 WHERE `id` = 'd34fa7359f974f5c81e21d2746fcca7e';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=750049c8122e723f2c05b07487dfcc41', `updatedAt` = 1785921322195 WHERE `id` = '94b6959991c74058b952f8bd0e0ebf81';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=7396484da3d72534752452bfcbcb0069', `updatedAt` = 1785921322195 WHERE `id` = '15156ec9f7364944aabea48475e1da80';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=c3dec28fc2456aac00b232004a37772b', `updatedAt` = 1785921322195 WHERE `id` = '3b49290f7db44130b9f6394a8212321f';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=eb7fbff546395e60c8175bea83b23ca5', `updatedAt` = 1785921322195 WHERE `id` = '5e024c7466c5462a80fe94f2fc89f129';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=c23fadfac6813aa9658850d21afe0522', `updatedAt` = 1785921322195 WHERE `id` = 'c08d85433007462db7efc429fe508a46';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=78cdcfded40ace970a47d5d3ee266cb4', `updatedAt` = 1785921322195 WHERE `id` = '261dd7f7fa3245c3937054e9792d8df0';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=355393c56fa8dfec6ca72e5bb3afb44e', `updatedAt` = 1785921322195 WHERE `id` = '9e0070b7abc84aa3a4577042e0b7c3e1';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d3f4bdad1fea1e72a254a76bf0031b5f', `updatedAt` = 1785921322195 WHERE `id` = '360f1c3f03764c47a852caf04216d7d1';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=a19a061c9150542eaf2c606b6ce7d5db', `updatedAt` = 1785921322195 WHERE `id` = 'a9d5ff1158c346769db5edd3f74bb3ba';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=73173ed918d2432883a2fc7ce7860acf', `updatedAt` = 1785921322195 WHERE `id` = '5f2c021818d54988b10b065a6ddd3d0b';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=0cb7972d868debcea8cbaaec8c031ecd', `updatedAt` = 1785921322195 WHERE `id` = '10ecb801ca664453bcfdb6a1bd9fd04d';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=1bab0b87dda87cce3b9d2e399834cbd4', `updatedAt` = 1785921322195 WHERE `id` = '5ae60a2c86e741ea92898945ad7f62b4';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=247977f8981b0d1ba3f66d5281758af3', `updatedAt` = 1785921322195 WHERE `id` = 'ca43757872164c3eabd43692f7102fba';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=25a37b6731412687cc139354516af951', `updatedAt` = 1785921322195 WHERE `id` = 'b0febdbf99634bb388f65f2b8d9d6b42';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=09e1b869c29991070515f5fb1decb1d5', `updatedAt` = 1785921322195 WHERE `id` = 'd11cf9fe9eed4a338d7caa0af2071ea7';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=72997cecb2555f50d1ea0bd52e2d82ae', `updatedAt` = 1785921322195 WHERE `id` = '04fd4ddf2cff4091aa64926350a60437';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=26a79287dbf7e1ca3c79332fb6285862', `updatedAt` = 1785921322195 WHERE `id` = '0c08a2e7690940d9a46044cfc3470d92';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=4830086adc28e0bf629d0ff9e2857f27', `updatedAt` = 1785921322195 WHERE `id` = '871f822c2884401498278b0a78b69da3';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=644a0d084ac071002407b4a0c2f53af0', `updatedAt` = 1785921322195 WHERE `id` = '612a4fa1142d426699ddb81c5b7e4e76';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=979bfcd302f91267653322b34656a0fe', `updatedAt` = 1785921322195 WHERE `id` = 'c8d0855a2aac4ca386d36976d0431cdd';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=667e2023287032849e9eed37bd96ffab', `updatedAt` = 1785921322195 WHERE `id` = 'c0ba4f08ed2e42f0887ea20d122757fb';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=784f730e392bf97e3c8e9eb78d57e200', `updatedAt` = 1785921322195 WHERE `id` = 'f148c76e8f2942dc86be645fdb7ab09c';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=1d7a71bdce09c3edc0a1e0b5b116ee0f', `updatedAt` = 1785921322195 WHERE `id` = 'b0cc19870a994b748f8d260088f7ffe7';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=c7d5a756835c5896d7d8c43cd02e77f5', `updatedAt` = 1785921322195 WHERE `id` = 'ca9e5652184e4c6aab3a8b953ef63e2a';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=ef15dcff1a44c021f83b87de5ba67c3e', `updatedAt` = 1785921322195 WHERE `id` = '093e1e2980544d288938b8a8da57d7f0';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=9c004bc15efc7133ecdc2fdeade39757', `updatedAt` = 1785921322195 WHERE `id` = '519c8f5ab43840c7903b4d80ac41ac51';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=3f74d543dd457b89ff633f9758534a13', `updatedAt` = 1785921322195 WHERE `id` = '73df1dda0e7a4188b9fa4522fc6ef888';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=9be265f40e1fe24bf426c101f91c372e', `updatedAt` = 1785921322195 WHERE `id` = 'cf47b9d67dd34b94b8424a62371ed966';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=f56d4722eba8c35c7ad17eaee09957da', `updatedAt` = 1785921322195 WHERE `id` = 'e08ff1792e7849d1b97981f3583a0abe';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=1773284fda8bb61676c591a12fe59cc0', `updatedAt` = 1785921322195 WHERE `id` = '69280dbb3e024e558e22b834fa8249c7';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=1f362f5b49109756b1cd3e98e0d51cf2', `updatedAt` = 1785921322195 WHERE `id` = '0868f8b6f0a44fb7951c2c323ee1cd63';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=50ab45f2d7b1159dd41452711b69b12e', `updatedAt` = 1785921322195 WHERE `id` = 'c97ad132a4374e01ad39e5e089d08c43';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=3cc65760857ae6336d9c3556af831096', `updatedAt` = 1785921322195 WHERE `id` = '788400d0f7eb47edb795d41c460b14b8';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=58b5c2e00fe8a4cc907a9319638c455b', `updatedAt` = 1785921322195 WHERE `id` = 'c1709519e07946389a026905a1db5900';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=8aba95b4264509993101f56165c5230e', `updatedAt` = 1785921322195 WHERE `id` = 'b759a93a16ef4037880efa23d48f49b5';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=694bf29f0b31bb6cc39fe628596fcf10', `updatedAt` = 1785921322195 WHERE `id` = '91d79e0f4e464f298e7a6b37217386d3';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=2096b1f5b2dd220708caa011807e760b', `updatedAt` = 1785921322195 WHERE `id` = '737e57a39bae490e9c877d6e7453b046';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=58e2294be4fc14f163dfa8648e1d7766', `updatedAt` = 1785921322195 WHERE `id` = '33e81fa045e248b19381abaee38f45ee';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=c8f85b0da4d6934b6c4daa3bfaf6b4fe', `updatedAt` = 1785921322195 WHERE `id` = '77c8af32767644af914d16689e98948b';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=5aa7fee7e955f392f4348ed76dec3a96', `updatedAt` = 1785921322195 WHERE `id` = '1f917af28825403385cb385fc7e7bca0';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=3993212bfb4c32fd116309ac74a02caf', `updatedAt` = 1785921322195 WHERE `id` = 'd6132ff0c9534f7783cfda81ff60b5fd';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=8e01489dd693caea1c6ad1605a8b9496', `updatedAt` = 1785921322195 WHERE `id` = '1c643efa45d148d0b519938b2b282436';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=7e99bec530b0d1c4a23060ab2f46ba10', `updatedAt` = 1785921322195 WHERE `id` = 'e9e46237b841469585a77f8432edd55d';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=f2fe436890ce5f92128f3520780ca3a8', `updatedAt` = 1785921322195 WHERE `id` = '82356ff2bacf4821916cb42406f2552e';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=39ba4b1f22b31ef85b10125cb1745d0f', `updatedAt` = 1785921322195 WHERE `id` = '4026680943ef441082a363de91927390';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=459acd2ff8c33f855a77a03d1994854e', `updatedAt` = 1785921322195 WHERE `id` = '09abd6b8afbc48349490717c3d05707e';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d592100d662b25fe14c546725a7eaf3b', `updatedAt` = 1785921322195 WHERE `id` = '396309f21f5441b78b42de12aaa4c273';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=39dc023de0c0ef3df9035b84246c35fc', `updatedAt` = 1785921322195 WHERE `id` = '6be01be55b4347c599e43e66dfbef173';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d4c3f3f8efe2ce8c8ea3beb4409918e3', `updatedAt` = 1785921322195 WHERE `id` = 'fe0ae2a7d5fc4432996e3b8c369f0a18';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=21267a6fa768ee7eeedf7dba980616f4', `updatedAt` = 1785921322195 WHERE `id` = '31078d880fed42209331c69c580458c5';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=0199cc2d1f8eff511c2038571f2bbb8b', `updatedAt` = 1785921322195 WHERE `id` = '32bd9853db494301bb59757a55dc1c5d';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=837a9b8aad0e1eadceaa693dfa8e19e1', `updatedAt` = 1785921322195 WHERE `id` = 'a4cfdc91e93d4f16aeddaf27176955c5';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=a7d265dfed93cf79fca45e88bd4248ff', `updatedAt` = 1785921322195 WHERE `id` = 'fac7e9f536f94033805173e16fb6f259';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=cc24c0a16a35354f332aff2b2023f0e5', `updatedAt` = 1785921322195 WHERE `id` = 'd7c6c17eb29142b38133984ee90dacb2';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=648d406bbbf0e32c082f02cf317bc48c', `updatedAt` = 1785921322195 WHERE `id` = '946104dc00ba4709acb9ec3d1abd3239';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=49c4c2480f2027792674edaf6f40fed4', `updatedAt` = 1785921322195 WHERE `id` = 'f6485820d6b54204a35c9a5ef9e5d0dc';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=10903a2e44417f9d20c548e3424dd457', `updatedAt` = 1785921322195 WHERE `id` = '1287eb24e288460ab2651ba9c29ace32';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=486385e3da464ace8cf812de8a460761', `updatedAt` = 1785921322195 WHERE `id` = '321fa0c856f54a14993bed58cc1a95bc';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=88e8b7b022ed0c2929615bfedd231e45', `updatedAt` = 1785921322195 WHERE `id` = '1ddecadaa25c47beaef2998c278d928a';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=1a174db6bdd59b2d7e98dadf52f7f854', `updatedAt` = 1785921322195 WHERE `id` = '3f09f8a9beb644229094e6aa1bce52b6';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d7cb87646b1579a51daff50de1c4747c', `updatedAt` = 1785921322195 WHERE `id` = 'b8817cce3ae34d49844a7ea8d8b15f3f';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=5edf99eb06031a98bc0f23b03f89bde1', `updatedAt` = 1785921322195 WHERE `id` = '509423f4ae6e48a884ac55fa9be0b7ec';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=2b9fa4f9ab358355cbaf7aa9835556ef', `updatedAt` = 1785921322195 WHERE `id` = 'e658f630b96e4774881abcf49d6780e7';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=c88694f42e0203e48d3e49f6e5e066a8', `updatedAt` = 1785921322195 WHERE `id` = '895089b920a548a9902d120c6b912d2c';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=7fec918647b9b82d4b37e2ded5cc3273', `updatedAt` = 1785921322195 WHERE `id` = '6bb151be653e49d696e385fe34fc5a17';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=2589108c8f9cdb1a6bf2d3c82dbd153d', `updatedAt` = 1785921322195 WHERE `id` = 'e8d1ced00a1c480eaf0db5f4573763c4';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=76bf9528e92883a0aacb4400b5d7898b', `updatedAt` = 1785921322195 WHERE `id` = '6784436e45124205a465dcb9f0326b1d';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=1db9ddb3a212eb2438b5aa68b4aa4f98', `updatedAt` = 1785921322195 WHERE `id` = '36e59aa2bca64ffb99b7445c14f03489';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=56942a1f6017780c63c8a46b9d465730', `updatedAt` = 1785921322195 WHERE `id` = '5a90e1f8263c49f5970389fc19b741ea';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=289c29aa7f973929396074fb0a68ee7b', `updatedAt` = 1785921322195 WHERE `id` = 'c3886b5f4e24430ea05cf1851f8b8f2c';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=e538eee29c37357a259c7064eca89482', `updatedAt` = 1785921322195 WHERE `id` = '6d2535e3117942808813ea213163c47c';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=df0c51dbe984b21bf17c2b70b7a0953b', `updatedAt` = 1785921322195 WHERE `id` = 'fbe27890530743598216d902b2a0c915';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d127deb847eb5c3ddb66546452457d56', `updatedAt` = 1785921322195 WHERE `id` = '81567260a1ef4efd85bcbc6618766e76';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=91cdf49b7528eec7344a52c556bbbac1', `updatedAt` = 1785921322195 WHERE `id` = 'f12f0f8d012143d38c0080272ed887ff';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=62c85d34b7c83331fdc622b82ee31305', `updatedAt` = 1785921322195 WHERE `id` = 'ac32facf5b0c4c6485599a5be90350ed';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=84786acc1aa4752f9ed27d6ae05b9845', `updatedAt` = 1785921322195 WHERE `id` = '1f9e482ccebd41c182f6dca84f14f668';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d164401cedd27b5e988a6728b167ebf9', `updatedAt` = 1785921322195 WHERE `id` = '3d6a88f3d9de4cc7b7862c2881b7963b';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d15593858ee9e3e4740752796f0f094d', `updatedAt` = 1785921322195 WHERE `id` = 'fd9a298afb7f46aab3d2796c42da8e68';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=98049319f4d8dfd8f1600693df033a92', `updatedAt` = 1785921322195 WHERE `id` = '7a5c41f2e76a4d5ebfb6b19df7983fd2';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=e0be9482d60c2ce23d45dccf7b92b4ac', `updatedAt` = 1785921322195 WHERE `id` = '93487f22face4e18887d90154b70094a';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=c1d91269cb25ca1cdeec60480ed2bf17', `updatedAt` = 1785921322195 WHERE `id` = 'c2f9569ea8f742f8869e2a2faf8666a7';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=81537f82c536315f07c123f0648f0520', `updatedAt` = 1785921322195 WHERE `id` = '51b1e376ee6644eb8629b30857f96f27';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=43d984e35c070aeef9e02a6948ce0f13', `updatedAt` = 1785921322195 WHERE `id` = '72e8f153e0ed40439c97e0bef43afb1e';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d89c1c55b52118f5383ac8556041a192', `updatedAt` = 1785921322195 WHERE `id` = 'a993711d11e444f1a7c08589a4497690';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=651318033c80de8942937333a27bd181', `updatedAt` = 1785921322195 WHERE `id` = '5cc02dac08c746bf965b4c441f5b7fb5';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=9098831f78c6f63f34c47f50601cbf28', `updatedAt` = 1785921322195 WHERE `id` = '86dda8e2d0ab4703b6933c45b6705cf4';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=25f386be14f1bd2ff927466933513668', `updatedAt` = 1785921322195 WHERE `id` = '3668daf0338a479985f455c8e61d6558';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=a9d83741ede7ab47a93e60f19805d47c', `updatedAt` = 1785921322195 WHERE `id` = '5ba858277fa44aaf958b32055468f52a';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=7bba23aa9d61198c66cd8977dbdf0ae2', `updatedAt` = 1785921322195 WHERE `id` = '0a9fab6f3ac84d8c95b08a05aa8a19fc';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=fde27ef077ff704c35dc2f7502ebfa9e', `updatedAt` = 1785921322195 WHERE `id` = 'e3399da9b2a64b28846e4f50df3cc4dd';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=0fe41721790a452cec7765a8442d25bc', `updatedAt` = 1785921322195 WHERE `id` = '8bfae2e4dabb48528ee64963b7112d61';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=964516a2efab750738d553a978f14e9e', `updatedAt` = 1785921322195 WHERE `id` = 'a58a5431a08e402eb6adc5e14eec1cb5';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=3b7caee281e29c602c60d25f0dbb6a2f', `updatedAt` = 1785921322195 WHERE `id` = 'f3c752d16ca74e06acf859b9a3a08188';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=4a97b1a9396b26c445ef930f29493015', `updatedAt` = 1785921322195 WHERE `id` = '26e7dc9c76694fb0837237b071bc4a03';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=0a4136ea1398e76edef2aaae2fcf13a8', `updatedAt` = 1785921322195 WHERE `id` = '68ac8d18e53b43e1829274c17836df6d';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=842e0dce2c45f44751675860bb859d63', `updatedAt` = 1785921322195 WHERE `id` = 'f30cfea57bc44aac88824ee6fa0803ee';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=69d455afdb1d6bee4d316344e52b8d18', `updatedAt` = 1785921322195 WHERE `id` = 'f50b3389bbed484ebe3098745371e511';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=ab10e2a86d3e360f210464535ec12629', `updatedAt` = 1785921322195 WHERE `id` = 'a0f47f6a6d734c8b9c6ce5c0dfd80001';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=43448e1d37a564fb05d7fc3eb2651dfe', `updatedAt` = 1785921322195 WHERE `id` = 'b7c63f0c73a44a9a8c4f3d3bb1a10001';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=a8ee468acd66c5486f58d4593c46ac64', `updatedAt` = 1785921322195 WHERE `id` = 'b7c63f0c73a44a9a8c4f3d3bb1a10006';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=755643ca253b6fe42953aeac9b6f910b', `updatedAt` = 1785921322195 WHERE `id` = 'd3020be8291342538d40aa8f1ae7813f';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=000c9c07dc2f9b4013aab7cdc092b593', `updatedAt` = 1785921322195 WHERE `id` = '80734d9573e34285859c5fcd70d60fe1';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=1a6d2f1a594ab7860c0f15008c60c314', `updatedAt` = 1785921322195 WHERE `id` = '08793469d707454eb7a692b13609230b';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=d44ecddd34378a79f7da58e23cd3c8a6', `updatedAt` = 1785921322195 WHERE `id` = '3af0f040336741ff9dd754ccd83ab325';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=f8482973e06e66b0db234cf6380b7d95', `updatedAt` = 1785921322195 WHERE `id` = '82946217f37e466d87f123c6987991e1';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=b84d1af3a4484c1b39365979fae6c585', `updatedAt` = 1785921322195 WHERE `id` = '3e9a7611fa96490d8adc393387b1d65a';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=68ac60361c0f193cc355110c0b0f2b6d', `updatedAt` = 1785921322195 WHERE `id` = '47a997dcc93945b293f725d7171ff418';
+UPDATE `sys_menu` SET `picIcon` = '/platform/sys/file/download?id=ca3fececdab634c789e2f1d162ec62ba', `updatedAt` = 1785921322195 WHERE `id` = '2a93542d26c140e79e615edaa4ddda58';
+
+COMMIT;
diff --git a/target/classes/db/spread_create.sql b/target/classes/db/spread_create.sql
new file mode 100644
index 0000000..91a6b6f
--- /dev/null
+++ b/target/classes/db/spread_create.sql
@@ -0,0 +1,79 @@
+-- 风采墙栏目表,适用于 MySQL 8。
+CREATE TABLE IF NOT EXISTS `spread_category` (
+ `id` varchar(32) NOT NULL COMMENT 'ID',
+ `parentId` varchar(32) NOT NULL DEFAULT '0' COMMENT '父栏目ID,0表示顶级栏目',
+ `name` varchar(100) NOT NULL COMMENT '栏目名称',
+ `code` varchar(50) DEFAULT NULL COMMENT '栏目编码(兼容预置数据,页面无需维护)',
+ `sortOrder` int NOT NULL DEFAULT 255 COMMENT '排序,数值越小越靠前',
+ `visible` tinyint NOT NULL DEFAULT 1 COMMENT '是否可见:0否,1是',
+ `slider` tinyint NOT NULL DEFAULT 0 COMMENT '是否参与轮播:0否,1是',
+ `createdBy` varchar(32) DEFAULT NULL COMMENT '创建人',
+ `createdAt` bigint DEFAULT NULL COMMENT '创建时间',
+ `updatedBy` varchar(32) DEFAULT NULL COMMENT '修改人',
+ `updatedAt` bigint DEFAULT NULL COMMENT '修改时间',
+ `delFlag` tinyint NOT NULL DEFAULT 0 COMMENT '删除标记',
+ PRIMARY KEY (`id`),
+ UNIQUE KEY `uk_spread_category_code` (`code`),
+ KEY `idx_spread_category_parent` (`parentId`),
+ KEY `idx_spread_category_visible_sort` (`visible`, `sortOrder`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='风采墙栏目';
+
+-- 风采墙内容表。
+CREATE TABLE IF NOT EXISTS `spread_content` (
+ `id` varchar(32) NOT NULL COMMENT 'ID',
+ `categoryId` varchar(32) NOT NULL COMMENT '栏目ID',
+ `categoryName` varchar(100) NOT NULL COMMENT '栏目名称',
+ `unionId` varchar(32) DEFAULT NULL COMMENT '所属工会ID',
+ `unionName` varchar(100) DEFAULT NULL COMMENT '所属工会名称',
+ `title` varchar(300) NOT NULL COMMENT '标题',
+ `subTitle` varchar(255) DEFAULT NULL COMMENT '副标题',
+ `summary` varchar(1000) DEFAULT NULL COMMENT '摘要',
+ `contentBody` longtext COMMENT 'HTML正文',
+ `thumbUrl` varchar(1000) DEFAULT NULL COMMENT '封面图',
+ `sliderImages` longtext COMMENT '轮播图片JSON',
+ `isTop` tinyint NOT NULL DEFAULT 0 COMMENT '是否置顶',
+ `isRecommend` tinyint NOT NULL DEFAULT 0 COMMENT '是否推荐',
+ `isHeadline` tinyint NOT NULL DEFAULT 0 COMMENT '是否头条',
+ `viewCount` int NOT NULL DEFAULT 0 COMMENT '浏览量',
+ `sortOrder` int NOT NULL DEFAULT 255 COMMENT '排序',
+ `isPublished` tinyint NOT NULL DEFAULT 0 COMMENT '是否发布',
+ `publishedAt` bigint DEFAULT NULL COMMENT '发布时间',
+ `createdBy` varchar(32) DEFAULT NULL COMMENT '创建人',
+ `createdAt` bigint DEFAULT NULL COMMENT '创建时间',
+ `updatedBy` varchar(32) DEFAULT NULL COMMENT '修改人',
+ `updatedAt` bigint DEFAULT NULL COMMENT '修改时间',
+ `delFlag` tinyint NOT NULL DEFAULT 0 COMMENT '删除标记',
+ PRIMARY KEY (`id`),
+ KEY `idx_spread_content_category` (`categoryId`),
+ KEY `idx_spread_content_union` (`unionId`),
+ KEY `idx_spread_content_publish` (`isPublished`, `publishedAt`),
+ KEY `idx_spread_content_top_sort` (`isTop`, `sortOrder`),
+ KEY `idx_spread_content_created` (`createdAt`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci COMMENT='风采墙内容';
+
+-- 初始化栏目,仅在对应编码不存在时插入,脚本可重复执行。
+INSERT INTO `spread_category`
+(`id`, `parentId`, `name`, `code`, `sortOrder`, `visible`, `slider`, `createdBy`, `createdAt`, `updatedBy`, `updatedAt`, `delFlag`)
+SELECT '9f5c0100000000000000000000000001', '0', '风采展示', 'style_wall', 1, 1, 1, '', UNIX_TIMESTAMP(NOW()) * 1000, '', UNIX_TIMESTAMP(NOW()) * 1000, 0
+WHERE NOT EXISTS (SELECT 1 FROM `spread_category` WHERE `code` = 'style_wall');
+
+INSERT INTO `spread_category`
+(`id`, `parentId`, `name`, `code`, `sortOrder`, `visible`, `slider`, `createdBy`, `createdAt`, `updatedBy`, `updatedAt`, `delFlag`)
+SELECT '9f5c0100000000000000000000000002', p.id, '劳模风采', 'model_worker_style', 1, 1, 1, '', UNIX_TIMESTAMP(NOW()) * 1000, '', UNIX_TIMESTAMP(NOW()) * 1000, 0
+FROM `spread_category` p
+WHERE p.code = 'style_wall'
+ AND NOT EXISTS (SELECT 1 FROM `spread_category` WHERE `code` = 'model_worker_style');
+
+INSERT INTO `spread_category`
+(`id`, `parentId`, `name`, `code`, `sortOrder`, `visible`, `slider`, `createdBy`, `createdAt`, `updatedBy`, `updatedAt`, `delFlag`)
+SELECT '9f5c0100000000000000000000000003', p.id, '巾帼风采', 'women_style', 2, 1, 1, '', UNIX_TIMESTAMP(NOW()) * 1000, '', UNIX_TIMESTAMP(NOW()) * 1000, 0
+FROM `spread_category` p
+WHERE p.code = 'style_wall'
+ AND NOT EXISTS (SELECT 1 FROM `spread_category` WHERE `code` = 'women_style');
+
+INSERT INTO `spread_category`
+(`id`, `parentId`, `name`, `code`, `sortOrder`, `visible`, `slider`, `createdBy`, `createdAt`, `updatedBy`, `updatedAt`, `delFlag`)
+SELECT '9f5c0100000000000000000000000004', p.id, '教工风采', 'faculty_style', 3, 1, 1, '', UNIX_TIMESTAMP(NOW()) * 1000, '', UNIX_TIMESTAMP(NOW()) * 1000, 0
+FROM `spread_category` p
+WHERE p.code = 'style_wall'
+ AND NOT EXISTS (SELECT 1 FROM `spread_category` WHERE `code` = 'faculty_style');
diff --git a/target/classes/static/assets/mobile/img/activity/culture-empty.png b/target/classes/static/assets/mobile/img/activity/culture-empty.png
new file mode 100644
index 0000000..7363ec6
Binary files /dev/null and b/target/classes/static/assets/mobile/img/activity/culture-empty.png differ
diff --git a/target/classes/static/assets/mobile/img/activity/family-empty.png b/target/classes/static/assets/mobile/img/activity/family-empty.png
new file mode 100644
index 0000000..0a6d35c
Binary files /dev/null and b/target/classes/static/assets/mobile/img/activity/family-empty.png differ
diff --git a/target/classes/static/assets/mobile/img/activity/hero/brand-hero-v2.png b/target/classes/static/assets/mobile/img/activity/hero/brand-hero-v2.png
new file mode 100644
index 0000000..cf56618
Binary files /dev/null and b/target/classes/static/assets/mobile/img/activity/hero/brand-hero-v2.png differ
diff --git a/target/classes/static/assets/mobile/img/activity/hero/culture-hero-v2.png b/target/classes/static/assets/mobile/img/activity/hero/culture-hero-v2.png
new file mode 100644
index 0000000..1b69057
Binary files /dev/null and b/target/classes/static/assets/mobile/img/activity/hero/culture-hero-v2.png differ
diff --git a/target/classes/static/assets/mobile/img/activity/hero/culture-hero-v3.png b/target/classes/static/assets/mobile/img/activity/hero/culture-hero-v3.png
new file mode 100644
index 0000000..a9b3777
Binary files /dev/null and b/target/classes/static/assets/mobile/img/activity/hero/culture-hero-v3.png differ
diff --git a/target/classes/static/assets/mobile/img/activity/hero/family-hero-v2.png b/target/classes/static/assets/mobile/img/activity/hero/family-hero-v2.png
new file mode 100644
index 0000000..2146850
Binary files /dev/null and b/target/classes/static/assets/mobile/img/activity/hero/family-hero-v2.png differ
diff --git a/target/classes/static/assets/mobile/img/activity/hero/family-hero-v3.png b/target/classes/static/assets/mobile/img/activity/hero/family-hero-v3.png
new file mode 100644
index 0000000..41b2d42
Binary files /dev/null and b/target/classes/static/assets/mobile/img/activity/hero/family-hero-v3.png differ
diff --git a/target/classes/static/assets/mobile/img/activity/hero/sports-hero-v2.png b/target/classes/static/assets/mobile/img/activity/hero/sports-hero-v2.png
new file mode 100644
index 0000000..1384656
Binary files /dev/null and b/target/classes/static/assets/mobile/img/activity/hero/sports-hero-v2.png differ
diff --git a/target/classes/static/assets/mobile/img/activity/schedule-empty.png b/target/classes/static/assets/mobile/img/activity/schedule-empty.png
new file mode 100644
index 0000000..c3a5a47
Binary files /dev/null and b/target/classes/static/assets/mobile/img/activity/schedule-empty.png differ
diff --git a/target/classes/static/assets/mobile/img/activity/sports-empty.png b/target/classes/static/assets/mobile/img/activity/sports-empty.png
new file mode 100644
index 0000000..dd556d0
Binary files /dev/null and b/target/classes/static/assets/mobile/img/activity/sports-empty.png differ
diff --git a/target/classes/static/assets/mobile/img/benefit/welfare-empty.png b/target/classes/static/assets/mobile/img/benefit/welfare-empty.png
new file mode 100644
index 0000000..dbe0c4f
Binary files /dev/null and b/target/classes/static/assets/mobile/img/benefit/welfare-empty.png differ
diff --git a/target/classes/static/assets/mobile/img/benefit/welfare-selection-hero-v2.png b/target/classes/static/assets/mobile/img/benefit/welfare-selection-hero-v2.png
new file mode 100644
index 0000000..d9fbe6f
Binary files /dev/null and b/target/classes/static/assets/mobile/img/benefit/welfare-selection-hero-v2.png differ
diff --git a/target/classes/static/assets/mobile/img/birthday/custom-bg.png b/target/classes/static/assets/mobile/img/birthday/custom-bg.png
new file mode 100644
index 0000000..f94869d
Binary files /dev/null and b/target/classes/static/assets/mobile/img/birthday/custom-bg.png differ
diff --git a/target/classes/static/assets/mobile/img/common/smart-union-loading-red.svg b/target/classes/static/assets/mobile/img/common/smart-union-loading-red.svg
new file mode 100644
index 0000000..25c2a72
--- /dev/null
+++ b/target/classes/static/assets/mobile/img/common/smart-union-loading-red.svg
@@ -0,0 +1,7 @@
+
diff --git a/target/classes/static/assets/mobile/img/common/smart-union-loading.png b/target/classes/static/assets/mobile/img/common/smart-union-loading.png
new file mode 100644
index 0000000..5783301
Binary files /dev/null and b/target/classes/static/assets/mobile/img/common/smart-union-loading.png differ
diff --git a/target/classes/static/assets/mobile/img/condolence/condolence-empty.png b/target/classes/static/assets/mobile/img/condolence/condolence-empty.png
new file mode 100644
index 0000000..0dd3232
Binary files /dev/null and b/target/classes/static/assets/mobile/img/condolence/condolence-empty.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/app-center-empty-v4.png b/target/classes/static/assets/mobile/img/home/v4/app-center-empty-v4.png
new file mode 100644
index 0000000..34375bf
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/app-center-empty-v4.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/apps-guide-banner.png b/target/classes/static/assets/mobile/img/home/v4/apps-guide-banner.png
new file mode 100644
index 0000000..15402a9
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/apps-guide-banner.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/feature-activity-v2.png b/target/classes/static/assets/mobile/img/home/v4/feature-activity-v2.png
new file mode 100644
index 0000000..016c82b
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/feature-activity-v2.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/feature-activity-v3.png b/target/classes/static/assets/mobile/img/home/v4/feature-activity-v3.png
new file mode 100644
index 0000000..9b7ec1c
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/feature-activity-v3.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/feature-activity-v4.png b/target/classes/static/assets/mobile/img/home/v4/feature-activity-v4.png
new file mode 100644
index 0000000..0178d17
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/feature-activity-v4.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/feature-activity-v5.png b/target/classes/static/assets/mobile/img/home/v4/feature-activity-v5.png
new file mode 100644
index 0000000..9724d80
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/feature-activity-v5.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/feature-activity.png b/target/classes/static/assets/mobile/img/home/v4/feature-activity.png
new file mode 100644
index 0000000..fe5a8be
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/feature-activity.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/feature-benefit-v2.png b/target/classes/static/assets/mobile/img/home/v4/feature-benefit-v2.png
new file mode 100644
index 0000000..d917fb4
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/feature-benefit-v2.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/feature-benefit-v3.png b/target/classes/static/assets/mobile/img/home/v4/feature-benefit-v3.png
new file mode 100644
index 0000000..01b8919
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/feature-benefit-v3.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/feature-benefit-v4.png b/target/classes/static/assets/mobile/img/home/v4/feature-benefit-v4.png
new file mode 100644
index 0000000..c4451a1
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/feature-benefit-v4.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/feature-benefit-v5.png b/target/classes/static/assets/mobile/img/home/v4/feature-benefit-v5.png
new file mode 100644
index 0000000..7098f63
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/feature-benefit-v5.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/feature-benefit.png b/target/classes/static/assets/mobile/img/home/v4/feature-benefit.png
new file mode 100644
index 0000000..ab09346
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/feature-benefit.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/feature-inclusive-v2.png b/target/classes/static/assets/mobile/img/home/v4/feature-inclusive-v2.png
new file mode 100644
index 0000000..2a73111
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/feature-inclusive-v2.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/feature-inclusive-v3.png b/target/classes/static/assets/mobile/img/home/v4/feature-inclusive-v3.png
new file mode 100644
index 0000000..d43df61
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/feature-inclusive-v3.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/feature-inclusive-v4.png b/target/classes/static/assets/mobile/img/home/v4/feature-inclusive-v4.png
new file mode 100644
index 0000000..1520d57
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/feature-inclusive-v4.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/feature-inclusive-v5.png b/target/classes/static/assets/mobile/img/home/v4/feature-inclusive-v5.png
new file mode 100644
index 0000000..532b1ad
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/feature-inclusive-v5.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/feature-inclusive-v6.png b/target/classes/static/assets/mobile/img/home/v4/feature-inclusive-v6.png
new file mode 100644
index 0000000..d9e68e7
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/feature-inclusive-v6.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/feature-inclusive-v7.png b/target/classes/static/assets/mobile/img/home/v4/feature-inclusive-v7.png
new file mode 100644
index 0000000..6e6b987
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/feature-inclusive-v7.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/feature-inclusive-v8.png b/target/classes/static/assets/mobile/img/home/v4/feature-inclusive-v8.png
new file mode 100644
index 0000000..3faed4d
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/feature-inclusive-v8.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/feature-inclusive.png b/target/classes/static/assets/mobile/img/home/v4/feature-inclusive.png
new file mode 100644
index 0000000..ca55401
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/feature-inclusive.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/feature-model-v2.png b/target/classes/static/assets/mobile/img/home/v4/feature-model-v2.png
new file mode 100644
index 0000000..d272063
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/feature-model-v2.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/feature-model-v3.png b/target/classes/static/assets/mobile/img/home/v4/feature-model-v3.png
new file mode 100644
index 0000000..bb1f60a
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/feature-model-v3.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/feature-model-v4.png b/target/classes/static/assets/mobile/img/home/v4/feature-model-v4.png
new file mode 100644
index 0000000..22532c6
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/feature-model-v4.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/feature-model-v5.png b/target/classes/static/assets/mobile/img/home/v4/feature-model-v5.png
new file mode 100644
index 0000000..9299937
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/feature-model-v5.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/feature-model.png b/target/classes/static/assets/mobile/img/home/v4/feature-model.png
new file mode 100644
index 0000000..3f9b992
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/feature-model.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/hero-campus.png b/target/classes/static/assets/mobile/img/home/v4/hero-campus.png
new file mode 100644
index 0000000..d93173b
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/hero-campus.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/recommend/会员入会.png b/target/classes/static/assets/mobile/img/home/v4/recommend/会员入会.png
new file mode 100644
index 0000000..18bf744
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/recommend/会员入会.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/recommend/帮扶申请.png b/target/classes/static/assets/mobile/img/home/v4/recommend/帮扶申请.png
new file mode 100644
index 0000000..912ef80
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/recommend/帮扶申请.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/recommend/慰问申请.png b/target/classes/static/assets/mobile/img/home/v4/recommend/慰问申请.png
new file mode 100644
index 0000000..5b6f104
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/recommend/慰问申请.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/recommend/撰写提案.png b/target/classes/static/assets/mobile/img/home/v4/recommend/撰写提案.png
new file mode 100644
index 0000000..555b2b7
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/recommend/撰写提案.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/recommend/疗休养报名.png b/target/classes/static/assets/mobile/img/home/v4/recommend/疗休养报名.png
new file mode 100644
index 0000000..aed9ba4
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/recommend/疗休养报名.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/recommend/社团入会.png b/target/classes/static/assets/mobile/img/home/v4/recommend/社团入会.png
new file mode 100644
index 0000000..0ec2a83
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/recommend/社团入会.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/recommend/问卷调查.png b/target/classes/static/assets/mobile/img/home/v4/recommend/问卷调查.png
new file mode 100644
index 0000000..80631ca
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/recommend/问卷调查.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/union-news-empty-v2.png b/target/classes/static/assets/mobile/img/home/v4/union-news-empty-v2.png
new file mode 100644
index 0000000..821a106
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/union-news-empty-v2.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/union-news-empty-v3.png b/target/classes/static/assets/mobile/img/home/v4/union-news-empty-v3.png
new file mode 100644
index 0000000..1fe8c2c
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/union-news-empty-v3.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/union-news-empty-v4.png b/target/classes/static/assets/mobile/img/home/v4/union-news-empty-v4.png
new file mode 100644
index 0000000..3bcbbf7
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/union-news-empty-v4.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/union-news-empty.png b/target/classes/static/assets/mobile/img/home/v4/union-news-empty.png
new file mode 100644
index 0000000..2b6e9a7
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/union-news-empty.png differ
diff --git a/target/classes/static/assets/mobile/img/home/v4/中国地质大学-logo.png b/target/classes/static/assets/mobile/img/home/v4/中国地质大学-logo.png
new file mode 100644
index 0000000..bff3e78
Binary files /dev/null and b/target/classes/static/assets/mobile/img/home/v4/中国地质大学-logo.png differ
diff --git a/target/classes/static/assets/mobile/img/proposal/proposal-empty.png b/target/classes/static/assets/mobile/img/proposal/proposal-empty.png
new file mode 100644
index 0000000..f43bd51
Binary files /dev/null and b/target/classes/static/assets/mobile/img/proposal/proposal-empty.png differ
diff --git a/target/classes/static/assets/mobile/lottie/birthday/happyBirthday.json b/target/classes/static/assets/mobile/lottie/birthday/happyBirthday.json
new file mode 100644
index 0000000..7a9eb4d
--- /dev/null
+++ b/target/classes/static/assets/mobile/lottie/birthday/happyBirthday.json
@@ -0,0 +1 @@
+{"v":"4.8.0","meta":{"g":"LottieFiles AE ","a":"","k":"","d":"","tc":""},"fr":23.9759979248047,"ip":0,"op":134.999988315342,"w":1080,"h":747,"nm":"Base","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":23,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":1,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":2,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":3,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":4,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":6,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":7,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":9,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":10,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":11,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":12,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":13,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":14,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":16,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":17,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":18,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":19,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":21,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":22,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":23,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":24,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":25,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":26,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":27,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":28,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":29,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":30,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":31,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":32,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":33,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":34,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":36,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":37,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":38,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":39,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":40,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":41,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":42,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":44,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":46,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":47,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":48,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":49,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":51,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":53,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":54,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":55,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":56,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":57,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":58,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":59,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":60,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":61,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":62,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":64,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":65,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":66,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":67,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":68,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":69,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":70,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":71,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":72,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":73,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":74,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":75,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":76,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":77,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":78,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":79,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":80,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":81,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":82,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":83,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":84,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":85,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":86,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":87,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":88,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":89,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":90,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":91,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":92,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":93,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":94,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":95,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":96,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":97,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":98,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":99,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":100,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":101,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":102,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":103,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":104,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":105,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":106,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":107,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":108,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":109,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":110,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":111,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":112,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":113,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":114,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":115,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":116,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":117,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":118,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":119,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":120,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":121,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":122,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":123,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":124,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":125,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":126,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":127,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":128,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":129,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":130,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":131,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":132,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":133,"s":[0]},{"t":133.999988401895,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":1,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":2,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":3,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":7,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":9,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":11,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":14,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":17,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":19,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":22,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":23,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":26,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":27,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":29,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":31,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":32,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":33,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":34,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":36,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":37,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":38,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":39,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":41,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":42,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":43,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":45,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":46,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":47,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":48,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":49,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":51,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":52,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":53,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":54,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":55,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":56,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":57,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":59,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":60,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":61,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":62,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":64,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":65,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":67,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":69,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":71,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":72,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":73,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":74,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":75,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":77,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":78,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":79,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":80,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":81,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":82,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":83,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":84,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":85,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":86,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":87,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":88,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":89,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":90,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":91,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":92,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":93,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":94,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":95,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":96,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":97,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":98,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":99,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":100,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":101,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":102,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":103,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":104,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":105,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":106,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":107,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":108,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":109,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":110,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":111,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":112,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":113,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":114,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":115,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":116,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":117,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":118,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":119,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":120,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":121,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":122,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":123,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":124,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":125,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":126,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":127,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":128,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":129,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":130,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":131,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":132,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":133,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"t":133.999988401895,"s":[540,373.5,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":0,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":1,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":2,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":3,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":4,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":5,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":6,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":7,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":8,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":9,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":10,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":11,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":12,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":13,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":14,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":15,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":16,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":17,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":18,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":19,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":20,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":21,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":22,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":23,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":24,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":25,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":26,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":27,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":28,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":29,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":30,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":31,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":32,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":33,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":34,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":35,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":36,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":37,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":38,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":39,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":40,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":41,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":42,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":43,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":44,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":45,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":46,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":47,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":48,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":49,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":50,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":51,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":52,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":53,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":54,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":55,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":56,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":57,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":58,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":59,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":60,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":61,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":62,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":63,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":64,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":65,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":66,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":67,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":68,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":69,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":70,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":71,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":72,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":73,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":74,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":75,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":76,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":77,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":78,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":79,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":80,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":81,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":82,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":83,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":84,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":85,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":86,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":87,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":88,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":89,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":90,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":91,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":92,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":93,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":94,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":95,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":96,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":97,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":98,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":99,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":100,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":101,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":102,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":103,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":104,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":105,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":106,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":107,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":108,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":109,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":110,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":111,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":112,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":113,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":114,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":115,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":116,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":117,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":118,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":119,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":120,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":121,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":122,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":123,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":124,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":125,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":126,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":127,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":128,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":129,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":130,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":131,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":132,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":133,"s":[100,100,100]},{"t":133.999988401895,"s":[100,100,100]}],"ix":6}},"ao":0,"ef":[{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.0]","np":3,"mn":"ADBE Layer Control","ix":1,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":175,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":2,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":177,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":3,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":176,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.1]","np":3,"mn":"ADBE Layer Control","ix":4,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":172,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":5,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":174,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":6,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":173,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.2]","np":3,"mn":"ADBE Layer Control","ix":7,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":169,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":8,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":171,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":9,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":170,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.3]","np":3,"mn":"ADBE Layer Control","ix":10,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":166,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":11,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":168,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":12,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":167,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.0]","np":3,"mn":"ADBE Layer Control","ix":13,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":163,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":14,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":165,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":15,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":164,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.1]","np":3,"mn":"ADBE Layer Control","ix":16,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":160,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":17,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":162,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":18,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":161,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.2]","np":3,"mn":"ADBE Layer Control","ix":19,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":157,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":20,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":159,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":21,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":158,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [15.1.0]","np":3,"mn":"ADBE Layer Control","ix":22,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":154,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [15.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":23,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":156,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [15.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":24,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":155,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [15.1.1]","np":3,"mn":"ADBE Layer Control","ix":25,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":151,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [15.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":26,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":153,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [15.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":27,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":152,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.0]","np":3,"mn":"ADBE Layer Control","ix":28,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":148,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":29,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":150,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":30,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":149,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.1]","np":3,"mn":"ADBE Layer Control","ix":31,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":145,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":32,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":147,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":33,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":146,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.2]","np":3,"mn":"ADBE Layer Control","ix":34,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":142,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":35,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":144,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":36,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":143,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.3]","np":3,"mn":"ADBE Layer Control","ix":37,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":139,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":38,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":141,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":39,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":140,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.0]","np":3,"mn":"ADBE Layer Control","ix":40,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":136,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":41,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":138,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":42,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":137,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.1]","np":3,"mn":"ADBE Layer Control","ix":43,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":133,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":44,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":135,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":45,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":134,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.2]","np":3,"mn":"ADBE Layer Control","ix":46,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":130,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":47,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":132,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":48,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":131,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.3]","np":3,"mn":"ADBE Layer Control","ix":49,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":127,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":50,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":129,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":51,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":128,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.0]","np":3,"mn":"ADBE Layer Control","ix":52,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":124,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":53,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":126,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":54,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":125,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.1]","np":3,"mn":"ADBE Layer Control","ix":55,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":121,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":56,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":123,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":57,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":122,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.2]","np":3,"mn":"ADBE Layer Control","ix":58,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":118,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":59,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":120,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":60,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":119,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.3]","np":3,"mn":"ADBE Layer Control","ix":61,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":115,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":62,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":117,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":63,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":116,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.0]","np":3,"mn":"ADBE Layer Control","ix":64,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":112,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":65,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":114,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":66,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":113,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.1]","np":3,"mn":"ADBE Layer Control","ix":67,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":109,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":68,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":111,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":69,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":110,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.2]","np":3,"mn":"ADBE Layer Control","ix":70,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":106,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":71,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":108,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":72,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":107,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.0]","np":3,"mn":"ADBE Layer Control","ix":73,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":103,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":74,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":105,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":75,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":104,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.1]","np":3,"mn":"ADBE Layer Control","ix":76,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":100,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":77,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":102,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":78,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":101,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.2]","np":3,"mn":"ADBE Layer Control","ix":79,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":97,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":80,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":99,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":81,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":98,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.3]","np":3,"mn":"ADBE Layer Control","ix":82,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":94,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":83,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":96,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":84,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":95,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.4]","np":3,"mn":"ADBE Layer Control","ix":85,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":91,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.4][In]","np":3,"mn":"ADBE Layer Control","ix":86,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":93,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.4][Out]","np":3,"mn":"ADBE Layer Control","ix":87,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":92,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.0]","np":3,"mn":"ADBE Layer Control","ix":88,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":88,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":89,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":90,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":90,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":89,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.1]","np":3,"mn":"ADBE Layer Control","ix":91,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":85,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":92,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":87,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":93,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":86,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.2]","np":3,"mn":"ADBE Layer Control","ix":94,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":82,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":95,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":84,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":96,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":83,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.3]","np":3,"mn":"ADBE Layer Control","ix":97,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":79,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":98,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":81,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":99,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":80,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.4]","np":3,"mn":"ADBE Layer Control","ix":100,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":76,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.4][In]","np":3,"mn":"ADBE Layer Control","ix":101,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":78,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.4][Out]","np":3,"mn":"ADBE Layer Control","ix":102,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":77,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.5]","np":3,"mn":"ADBE Layer Control","ix":103,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":73,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.5][In]","np":3,"mn":"ADBE Layer Control","ix":104,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":75,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.5][Out]","np":3,"mn":"ADBE Layer Control","ix":105,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":74,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.0]","np":3,"mn":"ADBE Layer Control","ix":106,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":70,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":107,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":72,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":108,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":71,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.1]","np":3,"mn":"ADBE Layer Control","ix":109,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":67,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":110,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":69,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":111,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":68,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.2]","np":3,"mn":"ADBE Layer Control","ix":112,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":64,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":113,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":66,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":114,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":65,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [6.1.0]","np":3,"mn":"ADBE Layer Control","ix":115,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":61,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [6.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":116,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":63,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [6.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":117,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":62,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [6.1.1]","np":3,"mn":"ADBE Layer Control","ix":118,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":58,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [6.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":119,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":60,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [6.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":120,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":59,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.0]","np":3,"mn":"ADBE Layer Control","ix":121,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":55,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":122,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":57,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":123,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":56,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.1]","np":3,"mn":"ADBE Layer Control","ix":124,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":52,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":125,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":54,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":126,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":53,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.2]","np":3,"mn":"ADBE Layer Control","ix":127,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":49,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":128,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":51,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":129,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":50,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.3]","np":3,"mn":"ADBE Layer Control","ix":130,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":46,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":131,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":48,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":132,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":47,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.4]","np":3,"mn":"ADBE Layer Control","ix":133,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":43,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.4][In]","np":3,"mn":"ADBE Layer Control","ix":134,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":45,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.4][Out]","np":3,"mn":"ADBE Layer Control","ix":135,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":44,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.0]","np":3,"mn":"ADBE Layer Control","ix":136,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":40,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":137,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":42,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":138,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":41,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.1]","np":3,"mn":"ADBE Layer Control","ix":139,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":37,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":140,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":39,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":141,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":38,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.2]","np":3,"mn":"ADBE Layer Control","ix":142,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":34,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":143,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":36,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":144,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":35,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.3]","np":3,"mn":"ADBE Layer Control","ix":145,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":31,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":146,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":33,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":147,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":32,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.4]","np":3,"mn":"ADBE Layer Control","ix":148,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":28,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.4][In]","np":3,"mn":"ADBE Layer Control","ix":149,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":30,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.4][Out]","np":3,"mn":"ADBE Layer Control","ix":150,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":29,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.0]","np":3,"mn":"ADBE Layer Control","ix":151,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":22,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":152,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":27,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":153,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":26,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.1]","np":3,"mn":"ADBE Layer Control","ix":154,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":19,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":155,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":21,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":156,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":20,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.2]","np":3,"mn":"ADBE Layer Control","ix":157,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":16,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":158,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":18,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":159,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":17,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.3]","np":3,"mn":"ADBE Layer Control","ix":160,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":13,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":161,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":15,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":162,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":14,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.0]","np":3,"mn":"ADBE Layer Control","ix":163,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":10,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":164,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":12,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":165,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":11,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.1]","np":3,"mn":"ADBE Layer Control","ix":166,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":7,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":167,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":9,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":168,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":8,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.2]","np":3,"mn":"ADBE Layer Control","ix":169,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":4,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":170,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":6,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":171,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":5,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.3]","np":3,"mn":"ADBE Layer Control","ix":172,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":1,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":173,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":3,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":174,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":2,"ix":1}}]}],"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[90.5,-65],[-22,-1.5],[-3,17],[-3.5,11.5]],"o":[[-90.5,65],[22,1.5],[-34,51.5],[3.5,-11.5]],"v":[[398.5,-134],[320.5,12],[364,-136],[342.5,-139]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [1.1.0]',\n 'Shape Layer 1: Path 1 [1.1.1]',\n 'Shape Layer 1: Path 1 [1.1.2]',\n 'Shape Layer 1: Path 1 [1.1.3]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [1.1.0][In]',\n 'Shape Layer 1: Path 1 [1.1.1][In]',\n 'Shape Layer 1: Path 1 [1.1.2][In]',\n 'Shape Layer 1: Path 1 [1.1.3][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [1.1.0][Out]',\n 'Shape Layer 1: Path 1 [1.1.1][Out]',\n 'Shape Layer 1: Path 1 [1.1.2][Out]',\n 'Shape Layer 1: Path 1 [1.1.3][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.9,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 17","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[38,-62.5],[1,12],[-13.5,32],[-3,-2]],"o":[[-38,62.5],[-6.5,15.5],[13.5,-32],[3,2]],"v":[[340.5,-129.5],[305,-123.5],[284,-114.5],[311,-130]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [2.1.0]',\n 'Shape Layer 1: Path 1 [2.1.1]',\n 'Shape Layer 1: Path 1 [2.1.2]',\n 'Shape Layer 1: Path 1 [2.1.3]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [2.1.0][In]',\n 'Shape Layer 1: Path 1 [2.1.1][In]',\n 'Shape Layer 1: Path 1 [2.1.2][In]',\n 'Shape Layer 1: Path 1 [2.1.3][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [2.1.0][Out]',\n 'Shape Layer 1: Path 1 [2.1.1][Out]',\n 'Shape Layer 1: Path 1 [2.1.2][Out]',\n 'Shape Layer 1: Path 1 [2.1.3][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.9,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 16","np":3,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3,-4]],"o":[[3,4]],"v":[[309.5,-129.5]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.9,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 15","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[6,1],[-10.5,-14.5],[-7.5,43.5],[0,-11]],"o":[[0,0],[-2,-32.5],[10.5,14.5],[7.5,-43.5],[0,11]],"v":[[265,-48],[257,-37],[295.5,-199.5],[239,-94],[264.5,-120.5]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [4.1.0]',\n 'Shape Layer 1: Path 1 [4.1.1]',\n 'Shape Layer 1: Path 1 [4.1.2]',\n 'Shape Layer 1: Path 1 [4.1.3]',\n 'Shape Layer 1: Path 1 [4.1.4]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [4.1.0][In]',\n 'Shape Layer 1: Path 1 [4.1.1][In]',\n 'Shape Layer 1: Path 1 [4.1.2][In]',\n 'Shape Layer 1: Path 1 [4.1.3][In]',\n 'Shape Layer 1: Path 1 [4.1.4][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [4.1.0][Out]',\n 'Shape Layer 1: Path 1 [4.1.1][Out]',\n 'Shape Layer 1: Path 1 [4.1.2][Out]',\n 'Shape Layer 1: Path 1 [4.1.3][Out]',\n 'Shape Layer 1: Path 1 [4.1.4][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.9,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 14","np":3,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[40,-57.5],[3.5,10],[13,-37],[-8,0],[0,0]],"o":[[-40,57.5],[-3.5,-10],[5.5,-57.5],[8,0],[0,0]],"v":[[243.5,-116.5],[211,-104.5],[181.5,-55],[223.5,-207.5],[199,-145.5]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [5.1.0]',\n 'Shape Layer 1: Path 1 [5.1.1]',\n 'Shape Layer 1: Path 1 [5.1.2]',\n 'Shape Layer 1: Path 1 [5.1.3]',\n 'Shape Layer 1: Path 1 [5.1.4]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [5.1.0][In]',\n 'Shape Layer 1: Path 1 [5.1.1][In]',\n 'Shape Layer 1: Path 1 [5.1.2][In]',\n 'Shape Layer 1: Path 1 [5.1.3][In]',\n 'Shape Layer 1: Path 1 [5.1.4][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [5.1.0][Out]',\n 'Shape Layer 1: Path 1 [5.1.1][Out]',\n 'Shape Layer 1: Path 1 [5.1.2][Out]',\n 'Shape Layer 1: Path 1 [5.1.3][Out]',\n 'Shape Layer 1: Path 1 [5.1.4][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.9,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 13","np":3,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,4.5],[0,0]],"o":[[0,-4.5],[0,0]],"v":[[272,-165],[133,-153]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [6.1.0]',\n 'Shape Layer 1: Path 1 [6.1.1]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [6.1.0][In]',\n 'Shape Layer 1: Path 1 [6.1.1][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [6.1.0][Out]',\n 'Shape Layer 1: Path 1 [6.1.1][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.9,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 12","np":3,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[7,-4.5],[-5,20]],"o":[[0,0],[-7,4.5],[5,-20]],"v":[[163,-17.5],[153.5,-6.5],[191,-192]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [7.1.0]',\n 'Shape Layer 1: Path 1 [7.1.1]',\n 'Shape Layer 1: Path 1 [7.1.2]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [7.1.0][In]',\n 'Shape Layer 1: Path 1 [7.1.1][In]',\n 'Shape Layer 1: Path 1 [7.1.2][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [7.1.0][Out]',\n 'Shape Layer 1: Path 1 [7.1.1][Out]',\n 'Shape Layer 1: Path 1 [7.1.2][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.9,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 11","np":3,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[14,-9.5],[-2,8],[-15.5,20],[35,-42],[-6,16.5]],"o":[[0,0],[-14,9.5],[-18.5,13.5],[15.5,-20],[-35,42],[6,-16.5]],"v":[[172,-115.5],[134,-62.5],[141.5,-114.5],[118.5,-127],[111,-95.5],[86,-105.5]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [8.1.0]',\n 'Shape Layer 1: Path 1 [8.1.1]',\n 'Shape Layer 1: Path 1 [8.1.2]',\n 'Shape Layer 1: Path 1 [8.1.3]',\n 'Shape Layer 1: Path 1 [8.1.4]',\n 'Shape Layer 1: Path 1 [8.1.5]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [8.1.0][In]',\n 'Shape Layer 1: Path 1 [8.1.1][In]',\n 'Shape Layer 1: Path 1 [8.1.2][In]',\n 'Shape Layer 1: Path 1 [8.1.3][In]',\n 'Shape Layer 1: Path 1 [8.1.4][In]',\n 'Shape Layer 1: Path 1 [8.1.5][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [8.1.0][Out]',\n 'Shape Layer 1: Path 1 [8.1.1][Out]',\n 'Shape Layer 1: Path 1 [8.1.2][Out]',\n 'Shape Layer 1: Path 1 [8.1.3][Out]',\n 'Shape Layer 1: Path 1 [8.1.4][Out]',\n 'Shape Layer 1: Path 1 [8.1.5][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.9,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 10","np":3,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[3.5,-2.5],[0,0]],"o":[[0,0],[-3.5,2.5],[0,0]],"v":[[-22,-7.5],[-31,4.5],[5,-203.5]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [9.1.0]',\n 'Shape Layer 1: Path 1 [9.1.1]',\n 'Shape Layer 1: Path 1 [9.1.2]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [9.1.0][In]',\n 'Shape Layer 1: Path 1 [9.1.1][In]',\n 'Shape Layer 1: Path 1 [9.1.2][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [9.1.0][Out]',\n 'Shape Layer 1: Path 1 [9.1.1][Out]',\n 'Shape Layer 1: Path 1 [9.1.2][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.9,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 9","np":3,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-129.5,39.5],[64.181,-31.033],[-24.445,17.232],[59,-3],[-2.5,-20.5]],"o":[[129.5,-39.5],[-45.5,22],[30.5,-21.5],[-59,3],[2.5,20.5]],"v":[[-15,-22],[6.5,-127],[16.5,-113.5],[23.5,-192.5],[-33.5,-132]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [10.1.0]',\n 'Shape Layer 1: Path 1 [10.1.1]',\n 'Shape Layer 1: Path 1 [10.1.2]',\n 'Shape Layer 1: Path 1 [10.1.3]',\n 'Shape Layer 1: Path 1 [10.1.4]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [10.1.0][In]',\n 'Shape Layer 1: Path 1 [10.1.1][In]',\n 'Shape Layer 1: Path 1 [10.1.2][In]',\n 'Shape Layer 1: Path 1 [10.1.3][In]',\n 'Shape Layer 1: Path 1 [10.1.4][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [10.1.0][Out]',\n 'Shape Layer 1: Path 1 [10.1.1][Out]',\n 'Shape Layer 1: Path 1 [10.1.2][Out]',\n 'Shape Layer 1: Path 1 [10.1.3][Out]',\n 'Shape Layer 1: Path 1 [10.1.4][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.9,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 8","np":3,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[90.5,-65],[-22,-1.5],[-3,17],[-3.5,11.5]],"o":[[-90.5,65],[22,1.5],[-34,51.5],[3.5,-11.5]],"v":[[-82,-91],[-160,55],[-116.5,-93],[-138,-96]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [11.1.0]',\n 'Shape Layer 1: Path 1 [11.1.1]',\n 'Shape Layer 1: Path 1 [11.1.2]',\n 'Shape Layer 1: Path 1 [11.1.3]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [11.1.0][In]',\n 'Shape Layer 1: Path 1 [11.1.1][In]',\n 'Shape Layer 1: Path 1 [11.1.2][In]',\n 'Shape Layer 1: Path 1 [11.1.3][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [11.1.0][Out]',\n 'Shape Layer 1: Path 1 [11.1.1][Out]',\n 'Shape Layer 1: Path 1 [11.1.2][Out]',\n 'Shape Layer 1: Path 1 [11.1.3][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.9,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 7","np":3,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-20,3],[22,4],[0,0],[0,0]],"o":[[20,-3],[-22,-4],[0,0],[0,0]],"v":[[-235.5,-50.5],[-202.5,-96.5],[-244.5,42],[-219,-109.5]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [13.1.0]',\n 'Shape Layer 1: Path 1 [13.1.1]',\n 'Shape Layer 1: Path 1 [13.1.2]',\n 'Shape Layer 1: Path 1 [13.1.3]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [13.1.0][In]',\n 'Shape Layer 1: Path 1 [13.1.1][In]',\n 'Shape Layer 1: Path 1 [13.1.2][In]',\n 'Shape Layer 1: Path 1 [13.1.3][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [13.1.0][Out]',\n 'Shape Layer 1: Path 1 [13.1.1][Out]',\n 'Shape Layer 1: Path 1 [13.1.2][Out]',\n 'Shape Layer 1: Path 1 [13.1.3][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.9,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[40,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 6","np":3,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-20,3],[22,4],[0,0],[0,0]],"o":[[20,-3],[-22,-4],[0,0],[0,0]],"v":[[-235.5,-50.5],[-202.5,-96.5],[-244.5,42],[-219,-109.5]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [13.1.0]',\n 'Shape Layer 1: Path 1 [13.1.1]',\n 'Shape Layer 1: Path 1 [13.1.2]',\n 'Shape Layer 1: Path 1 [13.1.3]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [13.1.0][In]',\n 'Shape Layer 1: Path 1 [13.1.1][In]',\n 'Shape Layer 1: Path 1 [13.1.2][In]',\n 'Shape Layer 1: Path 1 [13.1.3][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [13.1.0][Out]',\n 'Shape Layer 1: Path 1 [13.1.1][Out]',\n 'Shape Layer 1: Path 1 [13.1.2][Out]',\n 'Shape Layer 1: Path 1 [13.1.3][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.9,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 5","np":3,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[38,-62.5],[1,12],[-13.5,32],[-3,-2]],"o":[[-38,62.5],[-6.5,15.5],[13.5,-32],[3,2]],"v":[[-221.5,-80.5],[-257,-74.5],[-278,-65.5],[-251,-81]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [14.1.0]',\n 'Shape Layer 1: Path 1 [14.1.1]',\n 'Shape Layer 1: Path 1 [14.1.2]',\n 'Shape Layer 1: Path 1 [14.1.3]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [14.1.0][In]',\n 'Shape Layer 1: Path 1 [14.1.1][In]',\n 'Shape Layer 1: Path 1 [14.1.2][In]',\n 'Shape Layer 1: Path 1 [14.1.3][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [14.1.0][Out]',\n 'Shape Layer 1: Path 1 [14.1.1][Out]',\n 'Shape Layer 1: Path 1 [14.1.2][Out]',\n 'Shape Layer 1: Path 1 [14.1.3][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.9,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 4","np":3,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-324.5,-6],[-292,-169]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [15.1.0]',\n 'Shape Layer 1: Path 1 [15.1.1]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [15.1.0][In]',\n 'Shape Layer 1: Path 1 [15.1.1][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [15.1.0][Out]',\n 'Shape Layer 1: Path 1 [15.1.1][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.9,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3","np":3,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[29.5,-13],[-3,-3]],"o":[[0,0],[-29.5,13],[3,3]],"v":[[-274.5,-95],[-417,-38.5],[-431,-23.5]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [16.1.0]',\n 'Shape Layer 1: Path 1 [16.1.1]',\n 'Shape Layer 1: Path 1 [16.1.2]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [16.1.0][In]',\n 'Shape Layer 1: Path 1 [16.1.1][In]',\n 'Shape Layer 1: Path 1 [16.1.2][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [16.1.0][Out]',\n 'Shape Layer 1: Path 1 [16.1.1][Out]',\n 'Shape Layer 1: Path 1 [16.1.2][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.9,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2","np":3,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[8,-4.5],[0,5],[16.5,-26.5],[0,0]],"o":[[-8,4.5],[0,-5],[-16.5,26.5],[0,0]],"v":[[-383.5,39.5],[-352,-149.5],[-381.5,-118],[-375,-91]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [17.1.0]',\n 'Shape Layer 1: Path 1 [17.1.1]',\n 'Shape Layer 1: Path 1 [17.1.2]',\n 'Shape Layer 1: Path 1 [17.1.3]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [17.1.0][In]',\n 'Shape Layer 1: Path 1 [17.1.1][In]',\n 'Shape Layer 1: Path 1 [17.1.2][In]',\n 'Shape Layer 1: Path 1 [17.1.3][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [17.1.0][Out]',\n 'Shape Layer 1: Path 1 [17.1.1][Out]',\n 'Shape Layer 1: Path 1 [17.1.2][Out]',\n 'Shape Layer 1: Path 1 [17.1.3][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.9,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":100,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":13,"s":[100]},{"t":107.999990652273,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":2,"ix":18,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":134.999988315342,"st":-34.9999969706441,"bm":0},{"ddd":0,"ind":24,"ty":4,"nm":"Shape Layer 3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":1,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":2,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":3,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":4,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":6,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":7,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":9,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":10,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":11,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":12,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":13,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":14,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":16,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":17,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":18,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":19,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":21,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":22,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":23,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":24,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":25,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":26,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":27,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":28,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":29,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":30,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":31,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":32,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":33,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":34,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":36,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":37,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":38,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":39,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":40,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":41,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":42,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":44,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":46,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":47,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":48,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":49,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":51,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":53,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":54,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":55,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":56,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":57,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":58,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":59,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":60,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":61,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":62,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":64,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":65,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":66,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":67,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":68,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":69,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":70,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":71,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":72,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":73,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":74,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":75,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":76,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":77,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":78,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":79,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":80,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":81,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":82,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":83,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":84,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":85,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":86,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":87,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":88,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":89,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":90,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":91,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":92,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":93,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":94,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":95,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":96,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":97,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":98,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":99,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":100,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":101,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":102,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":103,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":104,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":105,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":106,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":107,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":108,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":109,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":110,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":111,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":112,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":113,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":114,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":115,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":116,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":117,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":118,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":119,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":120,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":121,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":122,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":123,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":124,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":125,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":126,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":127,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":128,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":129,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":130,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":131,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":132,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":133,"s":[0]},{"t":133.999988401895,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":1,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":2,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":3,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":7,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":9,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":11,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":14,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":17,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":19,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":22,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":23,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":26,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":27,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":29,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":31,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":32,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":33,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":34,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":36,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":37,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":38,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":39,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":41,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":42,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":43,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":45,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":46,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":47,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":48,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":49,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":51,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":52,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":53,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":54,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":55,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":56,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":57,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":59,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":60,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":61,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":62,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":64,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":65,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":67,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":69,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":71,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":72,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":73,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":74,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":75,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":77,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":78,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":79,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":80,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":81,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":82,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":83,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":84,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":85,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":86,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":87,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":88,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":89,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":90,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":91,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":92,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":93,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":94,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":95,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":96,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":97,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":98,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":99,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":100,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":101,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":102,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":103,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":104,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":105,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":106,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":107,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":108,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":109,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":110,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":111,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":112,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":113,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":114,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":115,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":116,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":117,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":118,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":119,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":120,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":121,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":122,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":123,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":124,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":125,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":126,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":127,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":128,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":129,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":130,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":131,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":132,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":133,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"t":133.999988401895,"s":[540,373.5,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":0,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":1,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":2,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":3,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":4,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":5,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":6,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":7,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":8,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":9,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":10,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":11,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":12,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":13,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":14,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":15,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":16,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":17,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":18,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":19,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":20,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":21,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":22,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":23,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":24,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":25,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":26,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":27,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":28,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":29,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":30,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":31,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":32,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":33,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":34,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":35,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":36,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":37,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":38,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":39,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":40,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":41,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":42,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":43,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":44,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":45,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":46,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":47,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":48,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":49,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":50,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":51,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":52,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":53,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":54,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":55,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":56,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":57,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":58,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":59,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":60,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":61,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":62,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":63,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":64,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":65,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":66,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":67,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":68,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":69,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":70,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":71,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":72,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":73,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":74,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":75,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":76,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":77,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":78,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":79,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":80,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":81,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":82,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":83,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":84,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":85,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":86,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":87,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":88,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":89,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":90,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":91,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":92,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":93,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":94,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":95,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":96,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":97,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":98,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":99,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":100,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":101,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":102,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":103,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":104,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":105,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":106,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":107,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":108,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":109,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":110,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":111,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":112,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":113,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":114,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":115,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":116,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":117,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":118,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":119,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":120,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":121,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":122,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":123,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":124,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":125,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":126,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":127,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":128,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":129,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":130,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":131,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":132,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":133,"s":[100,100,100]},{"t":133.999988401895,"s":[100,100,100]}],"ix":6}},"ao":0,"ef":[{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.0]","np":3,"mn":"ADBE Layer Control","ix":1,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":175,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":2,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":177,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":3,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":176,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.1]","np":3,"mn":"ADBE Layer Control","ix":4,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":172,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":5,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":174,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":6,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":173,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.2]","np":3,"mn":"ADBE Layer Control","ix":7,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":169,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":8,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":171,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":9,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":170,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.3]","np":3,"mn":"ADBE Layer Control","ix":10,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":166,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":11,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":168,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":12,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":167,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.0]","np":3,"mn":"ADBE Layer Control","ix":13,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":163,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":14,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":165,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":15,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":164,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.1]","np":3,"mn":"ADBE Layer Control","ix":16,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":160,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":17,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":162,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":18,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":161,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.2]","np":3,"mn":"ADBE Layer Control","ix":19,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":157,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":20,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":159,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":21,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":158,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [15.1.0]","np":3,"mn":"ADBE Layer Control","ix":22,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":154,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [15.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":23,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":156,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [15.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":24,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":155,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [15.1.1]","np":3,"mn":"ADBE Layer Control","ix":25,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":151,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [15.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":26,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":153,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [15.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":27,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":152,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.0]","np":3,"mn":"ADBE Layer Control","ix":28,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":148,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":29,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":150,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":30,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":149,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.1]","np":3,"mn":"ADBE Layer Control","ix":31,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":145,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":32,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":147,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":33,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":146,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.2]","np":3,"mn":"ADBE Layer Control","ix":34,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":142,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":35,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":144,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":36,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":143,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.3]","np":3,"mn":"ADBE Layer Control","ix":37,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":139,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":38,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":141,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":39,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":140,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.0]","np":3,"mn":"ADBE Layer Control","ix":40,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":136,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":41,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":138,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":42,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":137,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.1]","np":3,"mn":"ADBE Layer Control","ix":43,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":133,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":44,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":135,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":45,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":134,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.2]","np":3,"mn":"ADBE Layer Control","ix":46,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":130,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":47,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":132,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":48,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":131,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.3]","np":3,"mn":"ADBE Layer Control","ix":49,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":127,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":50,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":129,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":51,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":128,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.0]","np":3,"mn":"ADBE Layer Control","ix":52,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":124,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":53,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":126,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":54,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":125,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.1]","np":3,"mn":"ADBE Layer Control","ix":55,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":121,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":56,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":123,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":57,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":122,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.2]","np":3,"mn":"ADBE Layer Control","ix":58,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":118,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":59,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":120,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":60,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":119,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.3]","np":3,"mn":"ADBE Layer Control","ix":61,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":115,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":62,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":117,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":63,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":116,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.0]","np":3,"mn":"ADBE Layer Control","ix":64,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":112,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":65,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":114,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":66,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":113,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.1]","np":3,"mn":"ADBE Layer Control","ix":67,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":109,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":68,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":111,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":69,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":110,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.2]","np":3,"mn":"ADBE Layer Control","ix":70,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":106,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":71,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":108,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":72,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":107,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.0]","np":3,"mn":"ADBE Layer Control","ix":73,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":103,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":74,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":105,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":75,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":104,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.1]","np":3,"mn":"ADBE Layer Control","ix":76,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":100,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":77,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":102,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":78,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":101,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.2]","np":3,"mn":"ADBE Layer Control","ix":79,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":97,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":80,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":99,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":81,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":98,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.3]","np":3,"mn":"ADBE Layer Control","ix":82,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":94,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":83,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":96,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":84,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":95,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.4]","np":3,"mn":"ADBE Layer Control","ix":85,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":91,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.4][In]","np":3,"mn":"ADBE Layer Control","ix":86,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":93,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.4][Out]","np":3,"mn":"ADBE Layer Control","ix":87,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":92,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.0]","np":3,"mn":"ADBE Layer Control","ix":88,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":88,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":89,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":90,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":90,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":89,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.1]","np":3,"mn":"ADBE Layer Control","ix":91,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":85,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":92,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":87,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":93,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":86,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.2]","np":3,"mn":"ADBE Layer Control","ix":94,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":82,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":95,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":84,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":96,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":83,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.3]","np":3,"mn":"ADBE Layer Control","ix":97,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":79,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":98,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":81,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":99,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":80,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.4]","np":3,"mn":"ADBE Layer Control","ix":100,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":76,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.4][In]","np":3,"mn":"ADBE Layer Control","ix":101,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":78,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.4][Out]","np":3,"mn":"ADBE Layer Control","ix":102,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":77,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.5]","np":3,"mn":"ADBE Layer Control","ix":103,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":73,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.5][In]","np":3,"mn":"ADBE Layer Control","ix":104,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":75,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.5][Out]","np":3,"mn":"ADBE Layer Control","ix":105,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":74,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.0]","np":3,"mn":"ADBE Layer Control","ix":106,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":70,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":107,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":72,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":108,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":71,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.1]","np":3,"mn":"ADBE Layer Control","ix":109,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":67,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":110,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":69,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":111,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":68,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.2]","np":3,"mn":"ADBE Layer Control","ix":112,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":64,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":113,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":66,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":114,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":65,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [6.1.0]","np":3,"mn":"ADBE Layer Control","ix":115,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":61,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [6.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":116,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":63,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [6.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":117,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":62,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [6.1.1]","np":3,"mn":"ADBE Layer Control","ix":118,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":58,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [6.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":119,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":60,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [6.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":120,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":59,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.0]","np":3,"mn":"ADBE Layer Control","ix":121,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":55,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":122,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":57,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":123,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":56,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.1]","np":3,"mn":"ADBE Layer Control","ix":124,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":52,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":125,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":54,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":126,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":53,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.2]","np":3,"mn":"ADBE Layer Control","ix":127,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":49,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":128,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":51,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":129,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":50,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.3]","np":3,"mn":"ADBE Layer Control","ix":130,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":46,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":131,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":48,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":132,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":47,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.4]","np":3,"mn":"ADBE Layer Control","ix":133,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":43,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.4][In]","np":3,"mn":"ADBE Layer Control","ix":134,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":45,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.4][Out]","np":3,"mn":"ADBE Layer Control","ix":135,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":44,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.0]","np":3,"mn":"ADBE Layer Control","ix":136,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":40,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":137,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":42,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":138,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":41,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.1]","np":3,"mn":"ADBE Layer Control","ix":139,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":37,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":140,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":39,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":141,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":38,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.2]","np":3,"mn":"ADBE Layer Control","ix":142,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":34,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":143,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":36,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":144,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":35,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.3]","np":3,"mn":"ADBE Layer Control","ix":145,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":31,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":146,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":33,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":147,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":32,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.4]","np":3,"mn":"ADBE Layer Control","ix":148,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":28,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.4][In]","np":3,"mn":"ADBE Layer Control","ix":149,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":30,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.4][Out]","np":3,"mn":"ADBE Layer Control","ix":150,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":29,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.0]","np":3,"mn":"ADBE Layer Control","ix":151,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":22,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":152,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":27,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":153,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":26,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.1]","np":3,"mn":"ADBE Layer Control","ix":154,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":19,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":155,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":21,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":156,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":20,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.2]","np":3,"mn":"ADBE Layer Control","ix":157,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":16,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":158,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":18,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":159,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":17,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.3]","np":3,"mn":"ADBE Layer Control","ix":160,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":13,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":161,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":15,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":162,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":14,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.0]","np":3,"mn":"ADBE Layer Control","ix":163,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":10,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":164,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":12,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":165,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":11,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.1]","np":3,"mn":"ADBE Layer Control","ix":166,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":7,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":167,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":9,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":168,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":8,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.2]","np":3,"mn":"ADBE Layer Control","ix":169,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":4,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":170,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":6,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":171,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":5,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.3]","np":3,"mn":"ADBE Layer Control","ix":172,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":1,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":173,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":3,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":174,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":2,"ix":1}}]}],"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[90.5,-65],[-22,-1.5],[-3,17],[-3.5,11.5]],"o":[[-90.5,65],[22,1.5],[-34,51.5],[3.5,-11.5]],"v":[[398.5,-134],[320.5,12],[364,-136],[342.5,-139]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [1.1.0]',\n 'Shape Layer 1: Path 1 [1.1.1]',\n 'Shape Layer 1: Path 1 [1.1.2]',\n 'Shape Layer 1: Path 1 [1.1.3]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [1.1.0][In]',\n 'Shape Layer 1: Path 1 [1.1.1][In]',\n 'Shape Layer 1: Path 1 [1.1.2][In]',\n 'Shape Layer 1: Path 1 [1.1.3][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [1.1.0][Out]',\n 'Shape Layer 1: Path 1 [1.1.1][Out]',\n 'Shape Layer 1: Path 1 [1.1.2][Out]',\n 'Shape Layer 1: Path 1 [1.1.3][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8902,0.7961,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 17","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[38,-62.5],[1,12],[-13.5,32],[-3,-2]],"o":[[-38,62.5],[-6.5,15.5],[13.5,-32],[3,2]],"v":[[340.5,-129.5],[305,-123.5],[284,-114.5],[311,-130]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [2.1.0]',\n 'Shape Layer 1: Path 1 [2.1.1]',\n 'Shape Layer 1: Path 1 [2.1.2]',\n 'Shape Layer 1: Path 1 [2.1.3]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [2.1.0][In]',\n 'Shape Layer 1: Path 1 [2.1.1][In]',\n 'Shape Layer 1: Path 1 [2.1.2][In]',\n 'Shape Layer 1: Path 1 [2.1.3][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [2.1.0][Out]',\n 'Shape Layer 1: Path 1 [2.1.1][Out]',\n 'Shape Layer 1: Path 1 [2.1.2][Out]',\n 'Shape Layer 1: Path 1 [2.1.3][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8902,0.7961,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 16","np":3,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3,-4]],"o":[[3,4]],"v":[[309.5,-129.5]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8902,0.7961,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 15","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[6,1],[-10.5,-14.5],[-7.5,43.5],[0,-11]],"o":[[0,0],[-2,-32.5],[10.5,14.5],[7.5,-43.5],[0,11]],"v":[[265,-48],[257,-37],[295.5,-199.5],[239,-94],[264.5,-120.5]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [4.1.0]',\n 'Shape Layer 1: Path 1 [4.1.1]',\n 'Shape Layer 1: Path 1 [4.1.2]',\n 'Shape Layer 1: Path 1 [4.1.3]',\n 'Shape Layer 1: Path 1 [4.1.4]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [4.1.0][In]',\n 'Shape Layer 1: Path 1 [4.1.1][In]',\n 'Shape Layer 1: Path 1 [4.1.2][In]',\n 'Shape Layer 1: Path 1 [4.1.3][In]',\n 'Shape Layer 1: Path 1 [4.1.4][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [4.1.0][Out]',\n 'Shape Layer 1: Path 1 [4.1.1][Out]',\n 'Shape Layer 1: Path 1 [4.1.2][Out]',\n 'Shape Layer 1: Path 1 [4.1.3][Out]',\n 'Shape Layer 1: Path 1 [4.1.4][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8902,0.7961,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 14","np":3,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[40,-57.5],[3.5,10],[13,-37],[-8,0],[0,0]],"o":[[-40,57.5],[-3.5,-10],[5.5,-57.5],[8,0],[0,0]],"v":[[243.5,-116.5],[211,-104.5],[181.5,-55],[223.5,-207.5],[199,-145.5]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [5.1.0]',\n 'Shape Layer 1: Path 1 [5.1.1]',\n 'Shape Layer 1: Path 1 [5.1.2]',\n 'Shape Layer 1: Path 1 [5.1.3]',\n 'Shape Layer 1: Path 1 [5.1.4]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [5.1.0][In]',\n 'Shape Layer 1: Path 1 [5.1.1][In]',\n 'Shape Layer 1: Path 1 [5.1.2][In]',\n 'Shape Layer 1: Path 1 [5.1.3][In]',\n 'Shape Layer 1: Path 1 [5.1.4][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [5.1.0][Out]',\n 'Shape Layer 1: Path 1 [5.1.1][Out]',\n 'Shape Layer 1: Path 1 [5.1.2][Out]',\n 'Shape Layer 1: Path 1 [5.1.3][Out]',\n 'Shape Layer 1: Path 1 [5.1.4][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8902,0.7961,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 13","np":3,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,4.5],[0,0]],"o":[[0,-4.5],[0,0]],"v":[[272,-165],[133,-153]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [6.1.0]',\n 'Shape Layer 1: Path 1 [6.1.1]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [6.1.0][In]',\n 'Shape Layer 1: Path 1 [6.1.1][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [6.1.0][Out]',\n 'Shape Layer 1: Path 1 [6.1.1][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8902,0.7961,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 12","np":3,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[7,-4.5],[-5,20]],"o":[[0,0],[-7,4.5],[5,-20]],"v":[[163,-17.5],[153.5,-6.5],[191,-192]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [7.1.0]',\n 'Shape Layer 1: Path 1 [7.1.1]',\n 'Shape Layer 1: Path 1 [7.1.2]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [7.1.0][In]',\n 'Shape Layer 1: Path 1 [7.1.1][In]',\n 'Shape Layer 1: Path 1 [7.1.2][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [7.1.0][Out]',\n 'Shape Layer 1: Path 1 [7.1.1][Out]',\n 'Shape Layer 1: Path 1 [7.1.2][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8902,0.7961,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 11","np":3,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[14,-9.5],[-2,8],[-15.5,20],[35,-42],[-6,16.5]],"o":[[0,0],[-14,9.5],[-18.5,13.5],[15.5,-20],[-35,42],[6,-16.5]],"v":[[172,-115.5],[134,-62.5],[141.5,-114.5],[118.5,-127],[111,-95.5],[86,-105.5]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [8.1.0]',\n 'Shape Layer 1: Path 1 [8.1.1]',\n 'Shape Layer 1: Path 1 [8.1.2]',\n 'Shape Layer 1: Path 1 [8.1.3]',\n 'Shape Layer 1: Path 1 [8.1.4]',\n 'Shape Layer 1: Path 1 [8.1.5]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [8.1.0][In]',\n 'Shape Layer 1: Path 1 [8.1.1][In]',\n 'Shape Layer 1: Path 1 [8.1.2][In]',\n 'Shape Layer 1: Path 1 [8.1.3][In]',\n 'Shape Layer 1: Path 1 [8.1.4][In]',\n 'Shape Layer 1: Path 1 [8.1.5][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [8.1.0][Out]',\n 'Shape Layer 1: Path 1 [8.1.1][Out]',\n 'Shape Layer 1: Path 1 [8.1.2][Out]',\n 'Shape Layer 1: Path 1 [8.1.3][Out]',\n 'Shape Layer 1: Path 1 [8.1.4][Out]',\n 'Shape Layer 1: Path 1 [8.1.5][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8902,0.7961,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 10","np":3,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[3.5,-2.5],[0,0]],"o":[[0,0],[-3.5,2.5],[0,0]],"v":[[-22,-7.5],[-31,4.5],[5,-203.5]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [9.1.0]',\n 'Shape Layer 1: Path 1 [9.1.1]',\n 'Shape Layer 1: Path 1 [9.1.2]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [9.1.0][In]',\n 'Shape Layer 1: Path 1 [9.1.1][In]',\n 'Shape Layer 1: Path 1 [9.1.2][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [9.1.0][Out]',\n 'Shape Layer 1: Path 1 [9.1.1][Out]',\n 'Shape Layer 1: Path 1 [9.1.2][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8902,0.7961,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 9","np":3,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-129.5,39.5],[64.181,-31.033],[-24.445,17.232],[59,-3],[-2.5,-20.5]],"o":[[129.5,-39.5],[-45.5,22],[30.5,-21.5],[-59,3],[2.5,20.5]],"v":[[-15,-22],[6.5,-127],[16.5,-113.5],[23.5,-192.5],[-33.5,-132]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [10.1.0]',\n 'Shape Layer 1: Path 1 [10.1.1]',\n 'Shape Layer 1: Path 1 [10.1.2]',\n 'Shape Layer 1: Path 1 [10.1.3]',\n 'Shape Layer 1: Path 1 [10.1.4]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [10.1.0][In]',\n 'Shape Layer 1: Path 1 [10.1.1][In]',\n 'Shape Layer 1: Path 1 [10.1.2][In]',\n 'Shape Layer 1: Path 1 [10.1.3][In]',\n 'Shape Layer 1: Path 1 [10.1.4][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [10.1.0][Out]',\n 'Shape Layer 1: Path 1 [10.1.1][Out]',\n 'Shape Layer 1: Path 1 [10.1.2][Out]',\n 'Shape Layer 1: Path 1 [10.1.3][Out]',\n 'Shape Layer 1: Path 1 [10.1.4][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8902,0.7961,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 8","np":3,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[90.5,-65],[-22,-1.5],[-3,17],[-3.5,11.5]],"o":[[-90.5,65],[22,1.5],[-34,51.5],[3.5,-11.5]],"v":[[-82,-91],[-160,55],[-116.5,-93],[-138,-96]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [11.1.0]',\n 'Shape Layer 1: Path 1 [11.1.1]',\n 'Shape Layer 1: Path 1 [11.1.2]',\n 'Shape Layer 1: Path 1 [11.1.3]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [11.1.0][In]',\n 'Shape Layer 1: Path 1 [11.1.1][In]',\n 'Shape Layer 1: Path 1 [11.1.2][In]',\n 'Shape Layer 1: Path 1 [11.1.3][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [11.1.0][Out]',\n 'Shape Layer 1: Path 1 [11.1.1][Out]',\n 'Shape Layer 1: Path 1 [11.1.2][Out]',\n 'Shape Layer 1: Path 1 [11.1.3][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8902,0.7961,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 7","np":3,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-20,3],[22,4],[0,0],[0,0]],"o":[[20,-3],[-22,-4],[0,0],[0,0]],"v":[[-235.5,-50.5],[-202.5,-96.5],[-244.5,42],[-219,-109.5]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [13.1.0]',\n 'Shape Layer 1: Path 1 [13.1.1]',\n 'Shape Layer 1: Path 1 [13.1.2]',\n 'Shape Layer 1: Path 1 [13.1.3]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [13.1.0][In]',\n 'Shape Layer 1: Path 1 [13.1.1][In]',\n 'Shape Layer 1: Path 1 [13.1.2][In]',\n 'Shape Layer 1: Path 1 [13.1.3][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [13.1.0][Out]',\n 'Shape Layer 1: Path 1 [13.1.1][Out]',\n 'Shape Layer 1: Path 1 [13.1.2][Out]',\n 'Shape Layer 1: Path 1 [13.1.3][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8902,0.7961,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[40,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 6","np":3,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-20,3],[22,4],[0,0],[0,0]],"o":[[20,-3],[-22,-4],[0,0],[0,0]],"v":[[-235.5,-50.5],[-202.5,-96.5],[-244.5,42],[-219,-109.5]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [13.1.0]',\n 'Shape Layer 1: Path 1 [13.1.1]',\n 'Shape Layer 1: Path 1 [13.1.2]',\n 'Shape Layer 1: Path 1 [13.1.3]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [13.1.0][In]',\n 'Shape Layer 1: Path 1 [13.1.1][In]',\n 'Shape Layer 1: Path 1 [13.1.2][In]',\n 'Shape Layer 1: Path 1 [13.1.3][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [13.1.0][Out]',\n 'Shape Layer 1: Path 1 [13.1.1][Out]',\n 'Shape Layer 1: Path 1 [13.1.2][Out]',\n 'Shape Layer 1: Path 1 [13.1.3][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8902,0.7961,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 5","np":3,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[38,-62.5],[1,12],[-13.5,32],[-3,-2]],"o":[[-38,62.5],[-6.5,15.5],[13.5,-32],[3,2]],"v":[[-221.5,-80.5],[-257,-74.5],[-278,-65.5],[-251,-81]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [14.1.0]',\n 'Shape Layer 1: Path 1 [14.1.1]',\n 'Shape Layer 1: Path 1 [14.1.2]',\n 'Shape Layer 1: Path 1 [14.1.3]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [14.1.0][In]',\n 'Shape Layer 1: Path 1 [14.1.1][In]',\n 'Shape Layer 1: Path 1 [14.1.2][In]',\n 'Shape Layer 1: Path 1 [14.1.3][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [14.1.0][Out]',\n 'Shape Layer 1: Path 1 [14.1.1][Out]',\n 'Shape Layer 1: Path 1 [14.1.2][Out]',\n 'Shape Layer 1: Path 1 [14.1.3][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8902,0.7961,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 4","np":3,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-324.5,-6],[-292,-169]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [15.1.0]',\n 'Shape Layer 1: Path 1 [15.1.1]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [15.1.0][In]',\n 'Shape Layer 1: Path 1 [15.1.1][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [15.1.0][Out]',\n 'Shape Layer 1: Path 1 [15.1.1][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8902,0.7961,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3","np":3,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[29.5,-13],[-3,-3]],"o":[[0,0],[-29.5,13],[3,3]],"v":[[-274.5,-95],[-417,-38.5],[-431,-23.5]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [16.1.0]',\n 'Shape Layer 1: Path 1 [16.1.1]',\n 'Shape Layer 1: Path 1 [16.1.2]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [16.1.0][In]',\n 'Shape Layer 1: Path 1 [16.1.1][In]',\n 'Shape Layer 1: Path 1 [16.1.2][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [16.1.0][Out]',\n 'Shape Layer 1: Path 1 [16.1.1][Out]',\n 'Shape Layer 1: Path 1 [16.1.2][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8902,0.7961,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2","np":3,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[8,-4.5],[0,5],[16.5,-26.5],[0,0]],"o":[[-8,4.5],[0,-5],[-16.5,26.5],[0,0]],"v":[[-383.5,39.5],[-352,-149.5],[-381.5,-118],[-375,-91]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [17.1.0]',\n 'Shape Layer 1: Path 1 [17.1.1]',\n 'Shape Layer 1: Path 1 [17.1.2]',\n 'Shape Layer 1: Path 1 [17.1.3]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [17.1.0][In]',\n 'Shape Layer 1: Path 1 [17.1.1][In]',\n 'Shape Layer 1: Path 1 [17.1.2][In]',\n 'Shape Layer 1: Path 1 [17.1.3][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [17.1.0][Out]',\n 'Shape Layer 1: Path 1 [17.1.1][Out]',\n 'Shape Layer 1: Path 1 [17.1.2][Out]',\n 'Shape Layer 1: Path 1 [17.1.3][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.8902,0.7961,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":100,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":8,"s":[100]},{"t":102.999991085038,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":2,"ix":18,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":134.999988315342,"st":-39.999996537879,"bm":0},{"ddd":0,"ind":25,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":1,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":2,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":3,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":4,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":6,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":7,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":8,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":9,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":10,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":11,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":12,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":13,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":14,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":16,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":17,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":18,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":19,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":21,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":22,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":23,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":24,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":25,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":26,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":27,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":28,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":29,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":30,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":31,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":32,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":33,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":34,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":36,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":37,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":38,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":39,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":40,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":41,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":42,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":44,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":45,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":46,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":47,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":48,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":49,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":50,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":51,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":52,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":53,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":54,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":55,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":56,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":57,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":58,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":59,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":60,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":61,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":62,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":64,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":65,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":66,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":67,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":68,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":69,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":70,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":71,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":72,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":73,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":74,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":75,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":76,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":77,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":78,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":79,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":80,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":81,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":82,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":83,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":84,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":85,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":86,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":87,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":88,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":89,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":90,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":91,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":92,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":93,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":94,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":95,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":96,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":97,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":98,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":99,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":100,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":101,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":102,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":103,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":104,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":105,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":106,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":107,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":108,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":109,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":110,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":111,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":112,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":113,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":114,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":115,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":116,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":117,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":118,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":119,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":120,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":121,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":122,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":123,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":124,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":125,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":126,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":127,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":128,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":129,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":130,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":131,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":132,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":133,"s":[0]},{"t":133.999988401895,"s":[0]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":1,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":2,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":3,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":5,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":7,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":9,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":11,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":14,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":15,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":17,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":19,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":21,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":22,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":23,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":25,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":26,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":27,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":29,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":31,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":32,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":33,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":34,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":36,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":37,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":38,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":39,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":41,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":42,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":43,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":45,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":46,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":47,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":48,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":49,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":51,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":52,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":53,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":54,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":55,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":56,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":57,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":59,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":60,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":61,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":62,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":63,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":64,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":65,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":66,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":67,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":68,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":69,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":70,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":71,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":72,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":73,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":74,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":75,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":76,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":77,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":78,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":79,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":80,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":81,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":82,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":83,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":84,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":85,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":86,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":87,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":88,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":89,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":90,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":91,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":92,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":93,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":94,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":95,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":96,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":97,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":98,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":99,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":100,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":101,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":102,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":103,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":104,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":105,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":106,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":107,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":108,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":109,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":110,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":111,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":112,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":113,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":114,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":115,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":116,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":117,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":118,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":119,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":120,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":121,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":122,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":123,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":124,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":125,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":126,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":127,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":128,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":129,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":130,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":131,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":132,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":133,"s":[540,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"t":133.999988401895,"s":[540,373.5,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":0,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":1,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":2,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":3,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":4,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":5,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":6,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":7,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":8,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":9,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":10,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":11,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":12,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":13,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":14,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":15,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":16,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":17,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":18,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":19,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":20,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":21,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":22,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":23,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":24,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":25,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":26,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":27,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":28,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":29,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":30,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":31,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":32,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":33,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":34,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":35,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":36,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":37,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":38,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":39,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":40,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":41,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":42,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":43,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":44,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":45,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":46,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":47,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":48,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":49,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":50,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":51,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":52,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":53,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":54,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":55,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":56,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":57,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":58,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":59,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":60,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":61,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":62,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":63,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":64,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":65,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":66,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":67,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":68,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":69,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":70,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":71,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":72,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":73,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":74,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":75,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":76,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":77,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":78,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":79,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":80,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":81,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":82,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":83,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":84,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":85,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":86,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":87,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":88,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":89,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":90,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":91,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":92,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":93,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":94,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":95,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":96,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":97,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":98,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":99,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":100,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":101,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":102,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":103,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":104,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":105,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":106,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":107,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":108,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":109,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":110,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":111,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":112,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":113,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":114,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":115,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":116,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":117,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":118,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":119,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":120,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":121,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":122,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":123,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":124,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":125,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":126,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":127,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":128,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":129,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":130,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":131,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":132,"s":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":133,"s":[100,100,100]},{"t":133.999988401895,"s":[100,100,100]}],"ix":6}},"ao":0,"ef":[{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.0]","np":3,"mn":"ADBE Layer Control","ix":1,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":175,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":2,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":177,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":3,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":176,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.1]","np":3,"mn":"ADBE Layer Control","ix":4,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":172,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":5,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":174,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":6,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":173,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.2]","np":3,"mn":"ADBE Layer Control","ix":7,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":169,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":8,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":171,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":9,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":170,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.3]","np":3,"mn":"ADBE Layer Control","ix":10,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":166,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":11,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":168,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [17.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":12,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":167,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.0]","np":3,"mn":"ADBE Layer Control","ix":13,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":163,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":14,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":165,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":15,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":164,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.1]","np":3,"mn":"ADBE Layer Control","ix":16,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":160,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":17,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":162,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":18,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":161,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.2]","np":3,"mn":"ADBE Layer Control","ix":19,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":157,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":20,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":159,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [16.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":21,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":158,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [15.1.0]","np":3,"mn":"ADBE Layer Control","ix":22,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":154,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [15.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":23,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":156,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [15.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":24,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":155,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [15.1.1]","np":3,"mn":"ADBE Layer Control","ix":25,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":151,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [15.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":26,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":153,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [15.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":27,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":152,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.0]","np":3,"mn":"ADBE Layer Control","ix":28,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":148,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":29,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":150,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":30,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":149,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.1]","np":3,"mn":"ADBE Layer Control","ix":31,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":145,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":32,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":147,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":33,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":146,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.2]","np":3,"mn":"ADBE Layer Control","ix":34,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":142,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":35,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":144,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":36,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":143,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.3]","np":3,"mn":"ADBE Layer Control","ix":37,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":139,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":38,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":141,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [14.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":39,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":140,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.0]","np":3,"mn":"ADBE Layer Control","ix":40,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":136,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":41,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":138,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":42,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":137,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.1]","np":3,"mn":"ADBE Layer Control","ix":43,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":133,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":44,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":135,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":45,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":134,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.2]","np":3,"mn":"ADBE Layer Control","ix":46,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":130,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":47,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":132,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":48,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":131,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.3]","np":3,"mn":"ADBE Layer Control","ix":49,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":127,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":50,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":129,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [13.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":51,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":128,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.0]","np":3,"mn":"ADBE Layer Control","ix":52,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":124,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":53,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":126,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":54,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":125,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.1]","np":3,"mn":"ADBE Layer Control","ix":55,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":121,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":56,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":123,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":57,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":122,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.2]","np":3,"mn":"ADBE Layer Control","ix":58,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":118,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":59,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":120,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":60,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":119,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.3]","np":3,"mn":"ADBE Layer Control","ix":61,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":115,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":62,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":117,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [11.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":63,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":116,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.0]","np":3,"mn":"ADBE Layer Control","ix":64,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":112,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":65,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":114,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":66,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":113,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.1]","np":3,"mn":"ADBE Layer Control","ix":67,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":109,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":68,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":111,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":69,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":110,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.2]","np":3,"mn":"ADBE Layer Control","ix":70,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":106,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":71,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":108,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [9.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":72,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":107,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.0]","np":3,"mn":"ADBE Layer Control","ix":73,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":103,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":74,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":105,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":75,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":104,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.1]","np":3,"mn":"ADBE Layer Control","ix":76,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":100,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":77,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":102,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":78,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":101,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.2]","np":3,"mn":"ADBE Layer Control","ix":79,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":97,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":80,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":99,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":81,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":98,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.3]","np":3,"mn":"ADBE Layer Control","ix":82,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":94,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":83,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":96,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":84,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":95,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.4]","np":3,"mn":"ADBE Layer Control","ix":85,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":91,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.4][In]","np":3,"mn":"ADBE Layer Control","ix":86,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":93,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [10.1.4][Out]","np":3,"mn":"ADBE Layer Control","ix":87,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":92,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.0]","np":3,"mn":"ADBE Layer Control","ix":88,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":88,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":89,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":90,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":90,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":89,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.1]","np":3,"mn":"ADBE Layer Control","ix":91,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":85,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":92,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":87,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":93,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":86,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.2]","np":3,"mn":"ADBE Layer Control","ix":94,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":82,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":95,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":84,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":96,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":83,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.3]","np":3,"mn":"ADBE Layer Control","ix":97,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":79,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":98,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":81,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":99,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":80,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.4]","np":3,"mn":"ADBE Layer Control","ix":100,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":76,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.4][In]","np":3,"mn":"ADBE Layer Control","ix":101,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":78,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.4][Out]","np":3,"mn":"ADBE Layer Control","ix":102,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":77,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.5]","np":3,"mn":"ADBE Layer Control","ix":103,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":73,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.5][In]","np":3,"mn":"ADBE Layer Control","ix":104,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":75,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [8.1.5][Out]","np":3,"mn":"ADBE Layer Control","ix":105,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":74,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.0]","np":3,"mn":"ADBE Layer Control","ix":106,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":70,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":107,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":72,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":108,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":71,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.1]","np":3,"mn":"ADBE Layer Control","ix":109,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":67,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":110,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":69,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":111,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":68,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.2]","np":3,"mn":"ADBE Layer Control","ix":112,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":64,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":113,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":66,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [7.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":114,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":65,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [6.1.0]","np":3,"mn":"ADBE Layer Control","ix":115,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":61,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [6.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":116,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":63,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [6.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":117,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":62,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [6.1.1]","np":3,"mn":"ADBE Layer Control","ix":118,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":58,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [6.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":119,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":60,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [6.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":120,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":59,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.0]","np":3,"mn":"ADBE Layer Control","ix":121,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":55,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":122,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":57,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":123,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":56,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.1]","np":3,"mn":"ADBE Layer Control","ix":124,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":52,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":125,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":54,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":126,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":53,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.2]","np":3,"mn":"ADBE Layer Control","ix":127,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":49,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":128,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":51,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":129,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":50,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.3]","np":3,"mn":"ADBE Layer Control","ix":130,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":46,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":131,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":48,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":132,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":47,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.4]","np":3,"mn":"ADBE Layer Control","ix":133,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":43,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.4][In]","np":3,"mn":"ADBE Layer Control","ix":134,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":45,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [5.1.4][Out]","np":3,"mn":"ADBE Layer Control","ix":135,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":44,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.0]","np":3,"mn":"ADBE Layer Control","ix":136,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":40,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":137,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":42,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":138,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":41,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.1]","np":3,"mn":"ADBE Layer Control","ix":139,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":37,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":140,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":39,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":141,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":38,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.2]","np":3,"mn":"ADBE Layer Control","ix":142,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":34,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":143,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":36,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":144,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":35,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.3]","np":3,"mn":"ADBE Layer Control","ix":145,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":31,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":146,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":33,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":147,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":32,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.4]","np":3,"mn":"ADBE Layer Control","ix":148,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":28,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.4][In]","np":3,"mn":"ADBE Layer Control","ix":149,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":30,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [4.1.4][Out]","np":3,"mn":"ADBE Layer Control","ix":150,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":29,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.0]","np":3,"mn":"ADBE Layer Control","ix":151,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":22,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":152,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":27,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":153,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":26,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.1]","np":3,"mn":"ADBE Layer Control","ix":154,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":19,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":155,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":21,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":156,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":20,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.2]","np":3,"mn":"ADBE Layer Control","ix":157,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":16,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":158,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":18,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":159,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":17,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.3]","np":3,"mn":"ADBE Layer Control","ix":160,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":13,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":161,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":15,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [2.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":162,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":14,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.0]","np":3,"mn":"ADBE Layer Control","ix":163,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":10,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.0][In]","np":3,"mn":"ADBE Layer Control","ix":164,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":12,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.0][Out]","np":3,"mn":"ADBE Layer Control","ix":165,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":11,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.1]","np":3,"mn":"ADBE Layer Control","ix":166,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":7,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.1][In]","np":3,"mn":"ADBE Layer Control","ix":167,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":9,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.1][Out]","np":3,"mn":"ADBE Layer Control","ix":168,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":8,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.2]","np":3,"mn":"ADBE Layer Control","ix":169,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":4,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.2][In]","np":3,"mn":"ADBE Layer Control","ix":170,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":6,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.2][Out]","np":3,"mn":"ADBE Layer Control","ix":171,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":5,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.3]","np":3,"mn":"ADBE Layer Control","ix":172,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":1,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.3][In]","np":3,"mn":"ADBE Layer Control","ix":173,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":3,"ix":1}}]},{"ty":5,"nm":"Shape Layer 1: Path 1 [1.1.3][Out]","np":3,"mn":"ADBE Layer Control","ix":174,"en":1,"ef":[{"ty":10,"nm":"Layer","mn":"ADBE Layer Control-0001","ix":1,"v":{"a":0,"k":2,"ix":1}}]}],"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[90.5,-65],[-22,-1.5],[-3,17],[-3.5,11.5]],"o":[[-90.5,65],[22,1.5],[-34,51.5],[3.5,-11.5]],"v":[[398.5,-134],[320.5,12],[364,-136],[342.5,-139]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [1.1.0]',\n 'Shape Layer 1: Path 1 [1.1.1]',\n 'Shape Layer 1: Path 1 [1.1.2]',\n 'Shape Layer 1: Path 1 [1.1.3]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [1.1.0][In]',\n 'Shape Layer 1: Path 1 [1.1.1][In]',\n 'Shape Layer 1: Path 1 [1.1.2][In]',\n 'Shape Layer 1: Path 1 [1.1.3][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [1.1.0][Out]',\n 'Shape Layer 1: Path 1 [1.1.1][Out]',\n 'Shape Layer 1: Path 1 [1.1.2][Out]',\n 'Shape Layer 1: Path 1 [1.1.3][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.4,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 17","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[38,-62.5],[1,12],[-13.5,32],[-3,-2]],"o":[[-38,62.5],[-6.5,15.5],[13.5,-32],[3,2]],"v":[[340.5,-129.5],[305,-123.5],[284,-114.5],[311,-130]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [2.1.0]',\n 'Shape Layer 1: Path 1 [2.1.1]',\n 'Shape Layer 1: Path 1 [2.1.2]',\n 'Shape Layer 1: Path 1 [2.1.3]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [2.1.0][In]',\n 'Shape Layer 1: Path 1 [2.1.1][In]',\n 'Shape Layer 1: Path 1 [2.1.2][In]',\n 'Shape Layer 1: Path 1 [2.1.3][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [2.1.0][Out]',\n 'Shape Layer 1: Path 1 [2.1.1][Out]',\n 'Shape Layer 1: Path 1 [2.1.2][Out]',\n 'Shape Layer 1: Path 1 [2.1.3][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.4,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 16","np":3,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3,-4]],"o":[[3,4]],"v":[[309.5,-129.5]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.4,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 15","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[6,1],[-10.5,-14.5],[-7.5,43.5],[0,-11]],"o":[[0,0],[-2,-32.5],[10.5,14.5],[7.5,-43.5],[0,11]],"v":[[265,-48],[257,-37],[295.5,-199.5],[239,-94],[264.5,-120.5]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [4.1.0]',\n 'Shape Layer 1: Path 1 [4.1.1]',\n 'Shape Layer 1: Path 1 [4.1.2]',\n 'Shape Layer 1: Path 1 [4.1.3]',\n 'Shape Layer 1: Path 1 [4.1.4]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [4.1.0][In]',\n 'Shape Layer 1: Path 1 [4.1.1][In]',\n 'Shape Layer 1: Path 1 [4.1.2][In]',\n 'Shape Layer 1: Path 1 [4.1.3][In]',\n 'Shape Layer 1: Path 1 [4.1.4][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [4.1.0][Out]',\n 'Shape Layer 1: Path 1 [4.1.1][Out]',\n 'Shape Layer 1: Path 1 [4.1.2][Out]',\n 'Shape Layer 1: Path 1 [4.1.3][Out]',\n 'Shape Layer 1: Path 1 [4.1.4][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.4,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 14","np":3,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[40,-57.5],[3.5,10],[13,-37],[-8,0],[0,0]],"o":[[-40,57.5],[-3.5,-10],[5.5,-57.5],[8,0],[0,0]],"v":[[243.5,-116.5],[211,-104.5],[181.5,-55],[223.5,-207.5],[199,-145.5]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [5.1.0]',\n 'Shape Layer 1: Path 1 [5.1.1]',\n 'Shape Layer 1: Path 1 [5.1.2]',\n 'Shape Layer 1: Path 1 [5.1.3]',\n 'Shape Layer 1: Path 1 [5.1.4]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [5.1.0][In]',\n 'Shape Layer 1: Path 1 [5.1.1][In]',\n 'Shape Layer 1: Path 1 [5.1.2][In]',\n 'Shape Layer 1: Path 1 [5.1.3][In]',\n 'Shape Layer 1: Path 1 [5.1.4][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [5.1.0][Out]',\n 'Shape Layer 1: Path 1 [5.1.1][Out]',\n 'Shape Layer 1: Path 1 [5.1.2][Out]',\n 'Shape Layer 1: Path 1 [5.1.3][Out]',\n 'Shape Layer 1: Path 1 [5.1.4][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.4,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 13","np":3,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,4.5],[0,0]],"o":[[0,-4.5],[0,0]],"v":[[272,-165],[133,-153]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [6.1.0]',\n 'Shape Layer 1: Path 1 [6.1.1]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [6.1.0][In]',\n 'Shape Layer 1: Path 1 [6.1.1][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [6.1.0][Out]',\n 'Shape Layer 1: Path 1 [6.1.1][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.4,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 12","np":3,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[7,-4.5],[-5,20]],"o":[[0,0],[-7,4.5],[5,-20]],"v":[[163,-17.5],[153.5,-6.5],[191,-192]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [7.1.0]',\n 'Shape Layer 1: Path 1 [7.1.1]',\n 'Shape Layer 1: Path 1 [7.1.2]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [7.1.0][In]',\n 'Shape Layer 1: Path 1 [7.1.1][In]',\n 'Shape Layer 1: Path 1 [7.1.2][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [7.1.0][Out]',\n 'Shape Layer 1: Path 1 [7.1.1][Out]',\n 'Shape Layer 1: Path 1 [7.1.2][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.4,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 11","np":3,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[14,-9.5],[-2,8],[-15.5,20],[35,-42],[-6,16.5]],"o":[[0,0],[-14,9.5],[-18.5,13.5],[15.5,-20],[-35,42],[6,-16.5]],"v":[[172,-115.5],[134,-62.5],[141.5,-114.5],[118.5,-127],[111,-95.5],[86,-105.5]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [8.1.0]',\n 'Shape Layer 1: Path 1 [8.1.1]',\n 'Shape Layer 1: Path 1 [8.1.2]',\n 'Shape Layer 1: Path 1 [8.1.3]',\n 'Shape Layer 1: Path 1 [8.1.4]',\n 'Shape Layer 1: Path 1 [8.1.5]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [8.1.0][In]',\n 'Shape Layer 1: Path 1 [8.1.1][In]',\n 'Shape Layer 1: Path 1 [8.1.2][In]',\n 'Shape Layer 1: Path 1 [8.1.3][In]',\n 'Shape Layer 1: Path 1 [8.1.4][In]',\n 'Shape Layer 1: Path 1 [8.1.5][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [8.1.0][Out]',\n 'Shape Layer 1: Path 1 [8.1.1][Out]',\n 'Shape Layer 1: Path 1 [8.1.2][Out]',\n 'Shape Layer 1: Path 1 [8.1.3][Out]',\n 'Shape Layer 1: Path 1 [8.1.4][Out]',\n 'Shape Layer 1: Path 1 [8.1.5][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.4,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 10","np":3,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[3.5,-2.5],[0,0]],"o":[[0,0],[-3.5,2.5],[0,0]],"v":[[-22,-7.5],[-31,4.5],[5,-203.5]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [9.1.0]',\n 'Shape Layer 1: Path 1 [9.1.1]',\n 'Shape Layer 1: Path 1 [9.1.2]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [9.1.0][In]',\n 'Shape Layer 1: Path 1 [9.1.1][In]',\n 'Shape Layer 1: Path 1 [9.1.2][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [9.1.0][Out]',\n 'Shape Layer 1: Path 1 [9.1.1][Out]',\n 'Shape Layer 1: Path 1 [9.1.2][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.4,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 9","np":3,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-129.5,39.5],[64.181,-31.033],[-24.445,17.232],[59,-3],[-2.5,-20.5]],"o":[[129.5,-39.5],[-45.5,22],[30.5,-21.5],[-59,3],[2.5,20.5]],"v":[[-15,-22],[6.5,-127],[16.5,-113.5],[23.5,-192.5],[-33.5,-132]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [10.1.0]',\n 'Shape Layer 1: Path 1 [10.1.1]',\n 'Shape Layer 1: Path 1 [10.1.2]',\n 'Shape Layer 1: Path 1 [10.1.3]',\n 'Shape Layer 1: Path 1 [10.1.4]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [10.1.0][In]',\n 'Shape Layer 1: Path 1 [10.1.1][In]',\n 'Shape Layer 1: Path 1 [10.1.2][In]',\n 'Shape Layer 1: Path 1 [10.1.3][In]',\n 'Shape Layer 1: Path 1 [10.1.4][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [10.1.0][Out]',\n 'Shape Layer 1: Path 1 [10.1.1][Out]',\n 'Shape Layer 1: Path 1 [10.1.2][Out]',\n 'Shape Layer 1: Path 1 [10.1.3][Out]',\n 'Shape Layer 1: Path 1 [10.1.4][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.4,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 8","np":3,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[90.5,-65],[-22,-1.5],[-3,17],[-3.5,11.5]],"o":[[-90.5,65],[22,1.5],[-34,51.5],[3.5,-11.5]],"v":[[-82,-91],[-160,55],[-116.5,-93],[-138,-96]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [11.1.0]',\n 'Shape Layer 1: Path 1 [11.1.1]',\n 'Shape Layer 1: Path 1 [11.1.2]',\n 'Shape Layer 1: Path 1 [11.1.3]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [11.1.0][In]',\n 'Shape Layer 1: Path 1 [11.1.1][In]',\n 'Shape Layer 1: Path 1 [11.1.2][In]',\n 'Shape Layer 1: Path 1 [11.1.3][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [11.1.0][Out]',\n 'Shape Layer 1: Path 1 [11.1.1][Out]',\n 'Shape Layer 1: Path 1 [11.1.2][Out]',\n 'Shape Layer 1: Path 1 [11.1.3][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.4,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 7","np":3,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-20,3],[22,4],[0,0],[0,0]],"o":[[20,-3],[-22,-4],[0,0],[0,0]],"v":[[-235.5,-50.5],[-202.5,-96.5],[-244.5,42],[-219,-109.5]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [13.1.0]',\n 'Shape Layer 1: Path 1 [13.1.1]',\n 'Shape Layer 1: Path 1 [13.1.2]',\n 'Shape Layer 1: Path 1 [13.1.3]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [13.1.0][In]',\n 'Shape Layer 1: Path 1 [13.1.1][In]',\n 'Shape Layer 1: Path 1 [13.1.2][In]',\n 'Shape Layer 1: Path 1 [13.1.3][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [13.1.0][Out]',\n 'Shape Layer 1: Path 1 [13.1.1][Out]',\n 'Shape Layer 1: Path 1 [13.1.2][Out]',\n 'Shape Layer 1: Path 1 [13.1.3][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.4,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[40,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 6","np":3,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-20,3],[22,4],[0,0],[0,0]],"o":[[20,-3],[-22,-4],[0,0],[0,0]],"v":[[-235.5,-50.5],[-202.5,-96.5],[-244.5,42],[-219,-109.5]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [13.1.0]',\n 'Shape Layer 1: Path 1 [13.1.1]',\n 'Shape Layer 1: Path 1 [13.1.2]',\n 'Shape Layer 1: Path 1 [13.1.3]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [13.1.0][In]',\n 'Shape Layer 1: Path 1 [13.1.1][In]',\n 'Shape Layer 1: Path 1 [13.1.2][In]',\n 'Shape Layer 1: Path 1 [13.1.3][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [13.1.0][Out]',\n 'Shape Layer 1: Path 1 [13.1.1][Out]',\n 'Shape Layer 1: Path 1 [13.1.2][Out]',\n 'Shape Layer 1: Path 1 [13.1.3][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.4,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 5","np":3,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[38,-62.5],[1,12],[-13.5,32],[-3,-2]],"o":[[-38,62.5],[-6.5,15.5],[13.5,-32],[3,2]],"v":[[-221.5,-80.5],[-257,-74.5],[-278,-65.5],[-251,-81]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [14.1.0]',\n 'Shape Layer 1: Path 1 [14.1.1]',\n 'Shape Layer 1: Path 1 [14.1.2]',\n 'Shape Layer 1: Path 1 [14.1.3]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [14.1.0][In]',\n 'Shape Layer 1: Path 1 [14.1.1][In]',\n 'Shape Layer 1: Path 1 [14.1.2][In]',\n 'Shape Layer 1: Path 1 [14.1.3][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [14.1.0][Out]',\n 'Shape Layer 1: Path 1 [14.1.1][Out]',\n 'Shape Layer 1: Path 1 [14.1.2][Out]',\n 'Shape Layer 1: Path 1 [14.1.3][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.4,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 4","np":3,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-324.5,-6],[-292,-169]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [15.1.0]',\n 'Shape Layer 1: Path 1 [15.1.1]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [15.1.0][In]',\n 'Shape Layer 1: Path 1 [15.1.1][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [15.1.0][Out]',\n 'Shape Layer 1: Path 1 [15.1.1][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.4,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3","np":3,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[29.5,-13],[-3,-3]],"o":[[0,0],[-29.5,13],[3,3]],"v":[[-274.5,-95],[-417,-38.5],[-431,-23.5]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [16.1.0]',\n 'Shape Layer 1: Path 1 [16.1.1]',\n 'Shape Layer 1: Path 1 [16.1.2]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [16.1.0][In]',\n 'Shape Layer 1: Path 1 [16.1.1][In]',\n 'Shape Layer 1: Path 1 [16.1.2][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [16.1.0][Out]',\n 'Shape Layer 1: Path 1 [16.1.1][Out]',\n 'Shape Layer 1: Path 1 [16.1.2][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.4,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2","np":3,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[8,-4.5],[0,5],[16.5,-26.5],[0,0]],"o":[[-8,4.5],[0,-5],[-16.5,26.5],[0,0]],"v":[[-383.5,39.5],[-352,-149.5],[-381.5,-118],[-375,-91]],"c":false},"ix":2,"x":"var $bm_rt;\nvar nullLayerNames = [\n 'Shape Layer 1: Path 1 [17.1.0]',\n 'Shape Layer 1: Path 1 [17.1.1]',\n 'Shape Layer 1: Path 1 [17.1.2]',\n 'Shape Layer 1: Path 1 [17.1.3]'\n ];\nvar nullLayerNamesIn = [\n 'Shape Layer 1: Path 1 [17.1.0][In]',\n 'Shape Layer 1: Path 1 [17.1.1][In]',\n 'Shape Layer 1: Path 1 [17.1.2][In]',\n 'Shape Layer 1: Path 1 [17.1.3][In]'\n ];\nvar nullLayerNamesOut = [\n 'Shape Layer 1: Path 1 [17.1.0][Out]',\n 'Shape Layer 1: Path 1 [17.1.1][Out]',\n 'Shape Layer 1: Path 1 [17.1.2][Out]',\n 'Shape Layer 1: Path 1 [17.1.3][Out]'\n ];\nvar origPath = thisProperty;\nvar origPoints = origPath.points();\nvar origInTang = origPath.inTangents();\nvar origOutTang = origPath.outTangents();\nvar getNullLayers = [];\nvar getNullLayersIn = [];\nvar getNullLayersOut = [];\nfor (var i = 0; i < nullLayerNames.length; i++) {\n try {\n getNullLayers.push(effect(nullLayerNames[i])('ADBE Layer Control-0001'));\n getNullLayersIn.push(effect(nullLayerNamesIn[i])('ADBE Layer Control-0001'));\n getNullLayersOut.push(effect(nullLayerNamesOut[i])('ADBE Layer Control-0001'));\n } catch (err) {\n getNullLayers.push(null);\n }\n}\nfor (var i = 0; i < getNullLayers.length; i++) {\n if (getNullLayers[i] != null && getNullLayers[i].index != thisLayer.index) {\n origPoints[i] = fromCompToSurface(getNullLayers[i].toComp(getNullLayers[i].anchorPoint));\n origInTang[i] = $bm_sub(fromCompToSurface(getNullLayersIn[i].toComp(getNullLayersIn[i].anchorPoint)), origPoints[i]);\n origOutTang[i] = $bm_sub(fromCompToSurface(getNullLayersOut[i].toComp(getNullLayersOut[i].anchorPoint)), origPoints[i]);\n }\n}\n$bm_rt = createPath(origPoints, origInTang, origOutTang, origPath.isClosed());"},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.4,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":100,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":4,"s":[100]},{"t":98.9999914312506,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":2,"ix":18,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":134.999988315342,"st":-43.9999961916669,"bm":0},{"ddd":0,"ind":37,"ty":3,"nm":"Shape Layer 1: Path 1 [4.1.1]","cl":"1 1","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":73,"s":[774,294.5,0],"to":[0.833,-2.5,0],"ti":[-0.833,2.5,0]},{"t":80.999992989205,"s":[779,279.5,0]}],"ix":2,"x":"var $bm_rt;\nvar amp, freq, decay, n, n, t, t, v;\ntry {\n amp = $bm_div(effect('Elastic: Position')(1), 200);\n freq = $bm_div(effect('Elastic: Position')(2), 30);\n decay = $bm_div(effect('Elastic: Position')(3), 10);\n $bm_rt = n = 0;\n if (numKeys > 0) {\n $bm_rt = n = nearestKey(time).index;\n if (key(n).time > time) {\n n--;\n }\n }\n if (n == 0) {\n $bm_rt = t = 0;\n } else {\n $bm_rt = t = $bm_sub(time, key(n).time);\n }\n if (n > 0) {\n v = velocityAtTime($bm_sub(key(n).time, $bm_div(thisComp.frameDuration, 10)));\n $bm_rt = $bm_sum(value, $bm_div($bm_mul($bm_mul(v, amp), Math.sin($bm_mul($bm_mul($bm_mul(freq, t), 2), Math.PI))), Math.exp($bm_mul(decay, t))));\n } else {\n $bm_rt = value;\n }\n} catch (e$$4) {\n $bm_rt = value = value;\n}"},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"ef":[{"ty":5,"nm":"Elastic: Position","np":5,"mn":"Pseudo/MDS Elastic Controller","ix":1,"en":1,"ef":[{"ty":0,"nm":"Amplitude","mn":"Pseudo/MDS Elastic Controller-0001","ix":1,"v":{"a":0,"k":20,"ix":1}},{"ty":0,"nm":"Frequency","mn":"Pseudo/MDS Elastic Controller-0002","ix":2,"v":{"a":0,"k":40,"ix":2}},{"ty":0,"nm":"Decay","mn":"Pseudo/MDS Elastic Controller-0003","ix":3,"v":{"a":0,"k":60,"ix":3}}]}],"ip":0,"op":134.999988315342,"st":-43.9999961916669,"bm":0},{"ddd":0,"ind":38,"ty":3,"nm":"Shape Layer 1: Path 1 [4.1.1][Out]","cl":"1 1","parent":37,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-7.5,43.5,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[50,50,100],"ix":6}},"ao":0,"ip":0,"op":134.999988315342,"st":-43.9999961916669,"bm":0},{"ddd":0,"ind":39,"ty":3,"nm":"Shape Layer 1: Path 1 [4.1.1][In]","cl":"1 1","parent":37,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[7.5,-43.5,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[50,50,100],"ix":6}},"ao":0,"ip":0,"op":134.999988315342,"st":-43.9999961916669,"bm":0},{"ddd":0,"ind":40,"ty":3,"nm":"Shape Layer 1: Path 1 [4.1.0]","cl":"1 0","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":72,"s":[814.5,262,0],"to":[-1.667,-1.5,0],"ti":[1.667,1.5,0]},{"t":79.999993075758,"s":[804.5,253,0]}],"ix":2,"x":"var $bm_rt;\nvar amp, freq, decay, n, n, t, t, v;\ntry {\n amp = $bm_div(effect('Elastic: Position')(1), 200);\n freq = $bm_div(effect('Elastic: Position')(2), 30);\n decay = $bm_div(effect('Elastic: Position')(3), 10);\n $bm_rt = n = 0;\n if (numKeys > 0) {\n $bm_rt = n = nearestKey(time).index;\n if (key(n).time > time) {\n n--;\n }\n }\n if (n == 0) {\n $bm_rt = t = 0;\n } else {\n $bm_rt = t = $bm_sub(time, key(n).time);\n }\n if (n > 0) {\n v = velocityAtTime($bm_sub(key(n).time, $bm_div(thisComp.frameDuration, 10)));\n $bm_rt = $bm_sum(value, $bm_div($bm_mul($bm_mul(v, amp), Math.sin($bm_mul($bm_mul($bm_mul(freq, t), 2), Math.PI))), Math.exp($bm_mul(decay, t))));\n } else {\n $bm_rt = value;\n }\n} catch (e$$4) {\n $bm_rt = value = value;\n}"},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"ef":[{"ty":5,"nm":"Elastic: Position","np":5,"mn":"Pseudo/MDS Elastic Controller","ix":1,"en":1,"ef":[{"ty":0,"nm":"Amplitude","mn":"Pseudo/MDS Elastic Controller-0001","ix":1,"v":{"a":0,"k":20,"ix":1}},{"ty":0,"nm":"Frequency","mn":"Pseudo/MDS Elastic Controller-0002","ix":2,"v":{"a":0,"k":40,"ix":2}},{"ty":0,"nm":"Decay","mn":"Pseudo/MDS Elastic Controller-0003","ix":3,"v":{"a":0,"k":60,"ix":3}}]}],"ip":0,"op":134.999988315342,"st":-43.9999961916669,"bm":0},{"ddd":0,"ind":41,"ty":3,"nm":"Shape Layer 1: Path 1 [4.1.0][Out]","cl":"1 0","parent":40,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,-11,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[50,50,100],"ix":6}},"ao":0,"ip":0,"op":134.999988315342,"st":-43.9999961916669,"bm":0},{"ddd":0,"ind":42,"ty":3,"nm":"Shape Layer 1: Path 1 [4.1.0][In]","cl":"1 0","parent":40,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[0,11,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[50,50,100],"ix":6}},"ao":0,"ip":0,"op":134.999988315342,"st":-43.9999961916669,"bm":0}],"markers":[]}
\ No newline at end of file
diff --git a/target/classes/static/assets/mobile/lottie/birthday/lihua.json b/target/classes/static/assets/mobile/lottie/birthday/lihua.json
new file mode 100644
index 0000000..b4e1e23
--- /dev/null
+++ b/target/classes/static/assets/mobile/lottie/birthday/lihua.json
@@ -0,0 +1 @@
+{"v":"5.5.7","meta":{"g":"LottieFiles AE 0.1.20","a":"","k":"","d":"","tc":""},"fr":25,"ip":0,"op":126,"w":1920,"h":1080,"nm":"ConfettiAnimation","ddd":1,"assets":[{"id":"comp_0","layers":[{"ddd":1,"ind":1,"ty":4,"nm":"Shape Layer 16","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 500);"},"ry":{"a":0,"k":0,"ix":9,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 300);"},"rz":{"a":0,"k":0,"ix":10,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 100);"},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":29,"s":[1664,-23,0],"to":[92,254.667,0],"ti":[168,-414.667,0]},{"t":104,"s":[1792,1185,0]}],"ix":2},"a":{"a":0,"k":[-248,-39,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-248,-52],[-247.885,-20.203]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.270588235294,0.909803981407,0.639215686275,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":29,"op":105,"st":29,"bm":0},{"ddd":1,"ind":2,"ty":4,"nm":"Shape Layer 15","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 500);"},"ry":{"a":0,"k":0,"ix":9,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 300);"},"rz":{"a":0,"k":0,"ix":10,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 100);"},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":12,"s":[1235,-59,0],"to":[96,526.667,0],"ti":[-104,-486.667,0]},{"t":87,"s":[1039,1237,0]}],"ix":2},"a":{"a":0,"k":[-248,-39,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-248,-52],[-247.885,-20.203]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.239215701234,0.419607873056,0.709803921569,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":12,"op":88,"st":12,"bm":0},{"ddd":1,"ind":3,"ty":4,"nm":"Shape Layer 14","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 500);"},"ry":{"a":0,"k":0,"ix":9,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 300);"},"rz":{"a":0,"k":0,"ix":10,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 100);"},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":18,"s":[528,-59,0],"to":[288,686.667,0],"ti":[-180,-406.667,0]},{"t":93,"s":[708,1377,0]}],"ix":2},"a":{"a":0,"k":[-248,-39,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-248,-52],[-247.885,-20.203]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.270588235294,0.909803981407,0.639215686275,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":18,"op":94,"st":18,"bm":0},{"ddd":1,"ind":4,"ty":4,"nm":"Shape Layer 13","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 500);"},"ry":{"a":0,"k":0,"ix":9,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 300);"},"rz":{"a":0,"k":0,"ix":10,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 100);"},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":15,"s":[292,-147,0],"to":[-90,314.667,0],"ti":[194,-532.667,0]},{"t":90,"s":[292,1213,0]}],"ix":2},"a":{"a":0,"k":[-248,-39,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-248,-52],[-248,-26]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.098039223166,0.694117647059,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":15,"op":91,"st":15,"bm":0},{"ddd":1,"ind":5,"ty":4,"nm":"Shape Layer 12","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 500);"},"ry":{"a":0,"k":0,"ix":9,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 300);"},"rz":{"a":0,"k":0,"ix":10,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 100);"},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":28,"s":[1128,-59,0],"to":[180,310.667,0],"ti":[-112,-490.667,0]},{"t":103,"s":[1088,1137,0]}],"ix":2},"a":{"a":0,"k":[-248,-39,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-248,-52],[-247.885,-20.203]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.290196078431,0.952941236309,0.968627510819,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":28,"op":104,"st":28,"bm":0},{"ddd":1,"ind":6,"ty":4,"nm":"Shape Layer 11","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 500);"},"ry":{"a":0,"k":0,"ix":9,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 300);"},"rz":{"a":0,"k":0,"ix":10,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 100);"},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":19,"s":[1455,-59,0],"to":[-184,406.667,0],"ti":[112,-438.667,0]},{"t":94,"s":[1459,1213,0]}],"ix":2},"a":{"a":0,"k":[-248,-39,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-248,-52],[-247.885,-20.203]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.705882352941,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":19,"op":95,"st":19,"bm":0},{"ddd":1,"ind":7,"ty":4,"nm":"Shape Layer 10","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 500);"},"ry":{"a":0,"k":0,"ix":9,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 300);"},"rz":{"a":0,"k":0,"ix":10,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 100);"},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":24,"s":[728,-59,0],"to":[388,434.667,0],"ti":[-584,-762.667,0]},{"t":99,"s":[732,1413,0]}],"ix":2},"a":{"a":0,"k":[-248,-39,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-248,-52],[-247.885,-20.203]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.282352941176,0.282352941176,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":24,"op":100,"st":24,"bm":0},{"ddd":1,"ind":8,"ty":4,"nm":"Shape Layer 9","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 500);"},"ry":{"a":0,"k":0,"ix":9,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 300);"},"rz":{"a":0,"k":0,"ix":10,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 100);"},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":19,"s":[232,-147,0],"to":[-200,554.667,0],"ti":[560,-378.667,0]},{"t":94,"s":[232,1213,0]}],"ix":2},"a":{"a":0,"k":[-248,-39,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-248,-52],[-248,-26]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.156862745098,0.215686289469,0.470588265213,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":19,"op":95,"st":19,"bm":0},{"ddd":1,"ind":9,"ty":4,"nm":"Shape Layer 8","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 500);"},"ry":{"a":0,"k":0,"ix":9,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 300);"},"rz":{"a":0,"k":0,"ix":10,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 100);"},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":21,"s":[1664,-23,0],"to":[108,234.667,0],"ti":[-336,-306.667,0]},{"t":96,"s":[1772,1177,0]}],"ix":2},"a":{"a":0,"k":[-248,-39,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-248,-52],[-247.885,-20.203]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.490196108351,0.231372563979,0.752941236309,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":21,"op":97,"st":21,"bm":0},{"ddd":1,"ind":10,"ty":4,"nm":"Shape Layer 7","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 500);"},"ry":{"a":0,"k":0,"ix":9,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 300);"},"rz":{"a":0,"k":0,"ix":10,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 100);"},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":0,"s":[1235,-59,0],"to":[96,526.667,0],"ti":[-104,-486.667,0]},{"t":75,"s":[1039,1237,0]}],"ix":2},"a":{"a":0,"k":[-248,-39,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-248,-52],[-247.885,-20.203]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.239215701234,0.419607873056,0.709803921569,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":76,"st":0,"bm":0},{"ddd":1,"ind":11,"ty":4,"nm":"Shape Layer 6","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 500);"},"ry":{"a":0,"k":0,"ix":9,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 300);"},"rz":{"a":0,"k":0,"ix":10,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 100);"},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":6,"s":[528,-59,0],"to":[-208,742.667,0],"ti":[216,-566.667,0]},{"t":81,"s":[532,1413,0]}],"ix":2},"a":{"a":0,"k":[-248,-39,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-248,-52],[-247.885,-20.203]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.270588235294,0.909803981407,0.639215686275,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":6,"op":82,"st":6,"bm":0},{"ddd":1,"ind":12,"ty":4,"nm":"Shape Layer 5","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 500);"},"ry":{"a":0,"k":0,"ix":9,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 300);"},"rz":{"a":0,"k":0,"ix":10,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 100);"},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":2,"s":[92,-147,0],"to":[-90,314.667,0],"ti":[194,-532.667,0]},{"t":77,"s":[92,1213,0]}],"ix":2},"a":{"a":0,"k":[-248,-39,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-248,-52],[-248,-26]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.098039223166,0.694117647059,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":2,"op":78,"st":2,"bm":0},{"ddd":1,"ind":13,"ty":4,"nm":"Shape Layer 4","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 500);"},"ry":{"a":0,"k":0,"ix":9,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 300);"},"rz":{"a":0,"k":0,"ix":10,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 100);"},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":16,"s":[1128,-59,0],"to":[-208,358.667,0],"ti":[-112,-490.667,0]},{"t":91,"s":[1088,1137,0]}],"ix":2},"a":{"a":0,"k":[-248,-39,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-248,-52],[-247.885,-20.203]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.490196108351,0.231372563979,0.752941236309,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":16,"op":92,"st":16,"bm":0},{"ddd":1,"ind":14,"ty":4,"nm":"Shape Layer 3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 500);"},"ry":{"a":0,"k":0,"ix":9,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 300);"},"rz":{"a":0,"k":0,"ix":10,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 100);"},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":7,"s":[1455,-59,0],"to":[-184,406.667,0],"ti":[112,-438.667,0]},{"t":82,"s":[1459,1213,0]}],"ix":2},"a":{"a":0,"k":[-248,-39,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-248,-52],[-247.885,-20.203]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.705882352941,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":7,"op":83,"st":7,"bm":0},{"ddd":1,"ind":15,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 500);"},"ry":{"a":0,"k":0,"ix":9,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 300);"},"rz":{"a":0,"k":0,"ix":10,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 100);"},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":13,"s":[728,-59,0],"to":[388,434.667,0],"ti":[-584,-762.667,0]},{"t":88,"s":[732,1413,0]}],"ix":2},"a":{"a":0,"k":[-248,-39,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-248,-52],[-247.885,-20.203]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.282352941176,0.282352941176,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":13,"op":89,"st":13,"bm":0},{"ddd":1,"ind":16,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 500);"},"ry":{"a":0,"k":0,"ix":9,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 300);"},"rz":{"a":0,"k":0,"ix":10,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 100);"},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":9,"s":[232,-147,0],"to":[368,422.667,0],"ti":[20,-326.667,0]},{"t":84,"s":[232,1213,0]}],"ix":2},"a":{"a":0,"k":[-248,-39,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-248,-52],[-248,-26]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.156862745098,0.215686289469,0.470588265213,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":9,"op":85,"st":9,"bm":0}]},{"id":"comp_1","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"blueCircle03","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":32,"s":[1453,-59,0],"to":[-116,296,0],"ti":[168,-388,0]},{"t":93,"s":[1413,1213,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[45.849,45.849,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.098039223166,0.694117647059,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":32,"op":93,"st":32,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"redCircle04","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[1132,-305,0],"to":[244,436,0],"ti":[-304,-272,0]},{"t":101,"s":[1200,1211,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[48.744,48.744,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.282352941176,0.282352941176,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":35,"op":101,"st":35,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"yellowCircle03","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":31,"s":[600,-110,0],"to":[-200,428,0],"ti":[244,-308,0]},{"t":101,"s":[600,1210,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[68.326,68.326,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.705882352941,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":31,"op":101,"st":31,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"purpleCircle04","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[926,-55,0],"to":[184,256,0],"ti":[-344,-344,0]},{"t":78,"s":[1054,1253,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[48,48,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.490196078431,0.23137254902,0.752941176471,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":28,"op":79,"st":28,"bm":0},{"ddd":0,"ind":5,"ty":0,"nm":"triangleComp01","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":27,"s":[1654,-58,0],"to":[-124,373.333,0],"ti":[168,-557.333,0]},{"t":99,"s":[1654,1222,0]}],"ix":2},"a":{"a":0,"k":[50,50,0],"ix":1},"s":{"a":0,"k":[60,60,100],"ix":6}},"ao":0,"ef":[{"ty":21,"nm":"Fill","np":9,"mn":"ADBE Fill","ix":1,"en":1,"ef":[{"ty":10,"nm":"Fill Mask","mn":"ADBE Fill-0001","ix":1,"v":{"a":0,"k":0,"ix":1}},{"ty":7,"nm":"All Masks","mn":"ADBE Fill-0007","ix":2,"v":{"a":0,"k":0,"ix":2}},{"ty":2,"nm":"Color","mn":"ADBE Fill-0002","ix":3,"v":{"a":0,"k":[1,0.705882370472,0,1],"ix":3}},{"ty":7,"nm":"Invert","mn":"ADBE Fill-0006","ix":4,"v":{"a":0,"k":0,"ix":4}},{"ty":0,"nm":"Horizontal Feather","mn":"ADBE Fill-0003","ix":5,"v":{"a":0,"k":0,"ix":5}},{"ty":0,"nm":"Vertical Feather","mn":"ADBE Fill-0004","ix":6,"v":{"a":0,"k":0,"ix":6}},{"ty":0,"nm":"Opacity","mn":"ADBE Fill-0005","ix":7,"v":{"a":0,"k":1,"ix":7}}]}],"w":100,"h":100,"ip":27,"op":115,"st":27,"bm":0},{"ddd":0,"ind":6,"ty":0,"nm":"triangleComp01","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":23,"s":[1414,-58,0],"to":[248,409.333,0],"ti":[-236,-493.333,0]},{"t":100,"s":[1414,1222,0]}],"ix":2},"a":{"a":0,"k":[50,50,0],"ix":1},"s":{"a":0,"k":[60,60,100],"ix":6}},"ao":0,"ef":[{"ty":21,"nm":"Fill","np":9,"mn":"ADBE Fill","ix":1,"en":1,"ef":[{"ty":10,"nm":"Fill Mask","mn":"ADBE Fill-0001","ix":1,"v":{"a":0,"k":0,"ix":1}},{"ty":7,"nm":"All Masks","mn":"ADBE Fill-0007","ix":2,"v":{"a":0,"k":0,"ix":2}},{"ty":2,"nm":"Color","mn":"ADBE Fill-0002","ix":3,"v":{"a":0,"k":[0.490196108818,0.231372565031,0.752941250801,1],"ix":3}},{"ty":7,"nm":"Invert","mn":"ADBE Fill-0006","ix":4,"v":{"a":0,"k":0,"ix":4}},{"ty":0,"nm":"Horizontal Feather","mn":"ADBE Fill-0003","ix":5,"v":{"a":0,"k":0,"ix":5}},{"ty":0,"nm":"Vertical Feather","mn":"ADBE Fill-0004","ix":6,"v":{"a":0,"k":0,"ix":6}},{"ty":0,"nm":"Opacity","mn":"ADBE Fill-0005","ix":7,"v":{"a":0,"k":1,"ix":7}}]}],"w":100,"h":100,"ip":23,"op":111,"st":23,"bm":0},{"ddd":0,"ind":7,"ty":0,"nm":"triangleComp01","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[1924,1216,0],"to":[0,0,0],"ti":[396,250.667,0]},{"t":18,"s":[1416,-248,0]}],"ix":2},"a":{"a":0,"k":[50,50,0],"ix":1},"s":{"a":0,"k":[90.321,90.321,100],"ix":6}},"ao":0,"ef":[{"ty":21,"nm":"Fill","np":9,"mn":"ADBE Fill","ix":1,"en":1,"ef":[{"ty":10,"nm":"Fill Mask","mn":"ADBE Fill-0001","ix":1,"v":{"a":0,"k":0,"ix":1}},{"ty":7,"nm":"All Masks","mn":"ADBE Fill-0007","ix":2,"v":{"a":0,"k":0,"ix":2}},{"ty":2,"nm":"Color","mn":"ADBE Fill-0002","ix":3,"v":{"a":0,"k":[0.098039224744,0.694117665291,1,1],"ix":3}},{"ty":7,"nm":"Invert","mn":"ADBE Fill-0006","ix":4,"v":{"a":0,"k":0,"ix":4}},{"ty":0,"nm":"Horizontal Feather","mn":"ADBE Fill-0003","ix":5,"v":{"a":0,"k":0,"ix":5}},{"ty":0,"nm":"Vertical Feather","mn":"ADBE Fill-0004","ix":6,"v":{"a":0,"k":0,"ix":6}},{"ty":0,"nm":"Opacity","mn":"ADBE Fill-0005","ix":7,"v":{"a":0,"k":1,"ix":7}}]}],"w":100,"h":100,"ip":8,"op":19,"st":8,"bm":0},{"ddd":0,"ind":8,"ty":0,"nm":"triangleComp01","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.17,"y":0.772},"o":{"x":0.167,"y":0.167},"t":26,"s":[1930,1130,0],"to":[-52.667,-198,0],"ti":[122.667,-28.333,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.72,"y":0.278},"t":51,"s":[1496,196,0],"to":[-122.667,28.333,0],"ti":[29.333,-462.667,0]},{"t":90,"s":[1194,1300,0]}],"ix":2},"a":{"a":0,"k":[50,50,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,1.111]},"t":26,"s":[30,30,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":51,"s":[50,50,100]},{"t":101,"s":[15,15,100]}],"ix":6}},"ao":0,"ef":[{"ty":21,"nm":"Fill","np":9,"mn":"ADBE Fill","ix":1,"en":1,"ef":[{"ty":10,"nm":"Fill Mask","mn":"ADBE Fill-0001","ix":1,"v":{"a":0,"k":0,"ix":1}},{"ty":7,"nm":"All Masks","mn":"ADBE Fill-0007","ix":2,"v":{"a":0,"k":0,"ix":2}},{"ty":2,"nm":"Color","mn":"ADBE Fill-0002","ix":3,"v":{"a":0,"k":[0.098039224744,0.694117665291,1,1],"ix":3}},{"ty":7,"nm":"Invert","mn":"ADBE Fill-0006","ix":4,"v":{"a":0,"k":0,"ix":4}},{"ty":0,"nm":"Horizontal Feather","mn":"ADBE Fill-0003","ix":5,"v":{"a":0,"k":0,"ix":5}},{"ty":0,"nm":"Vertical Feather","mn":"ADBE Fill-0004","ix":6,"v":{"a":0,"k":0,"ix":6}},{"ty":0,"nm":"Opacity","mn":"ADBE Fill-0005","ix":7,"v":{"a":0,"k":1,"ix":7}}]}],"w":100,"h":100,"ip":26,"op":101,"st":26,"bm":0},{"ddd":0,"ind":9,"ty":0,"nm":"triangleComp01","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.17,"y":0.801},"o":{"x":0.167,"y":0.167},"t":12,"s":[1940,1124,0],"to":[-108.333,-166,0],"ti":[149.333,-4,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.72,"y":0.297},"t":37,"s":[1290,128,0],"to":[-149.333,4,0],"ti":[-48.667,-412.667,0]},{"t":76,"s":[1044,1148,0]}],"ix":2},"a":{"a":0,"k":[50,50,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,-10]},"t":12,"s":[80,80,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":37,"s":[100,100,100]},{"t":87,"s":[50,50,100]}],"ix":6}},"ao":0,"ef":[{"ty":21,"nm":"Fill","np":9,"mn":"ADBE Fill","ix":1,"en":1,"ef":[{"ty":10,"nm":"Fill Mask","mn":"ADBE Fill-0001","ix":1,"v":{"a":0,"k":0,"ix":1}},{"ty":7,"nm":"All Masks","mn":"ADBE Fill-0007","ix":2,"v":{"a":0,"k":0,"ix":2}},{"ty":2,"nm":"Color","mn":"ADBE Fill-0002","ix":3,"v":{"a":0,"k":[1,0.705882370472,0,1],"ix":3}},{"ty":7,"nm":"Invert","mn":"ADBE Fill-0006","ix":4,"v":{"a":0,"k":0,"ix":4}},{"ty":0,"nm":"Horizontal Feather","mn":"ADBE Fill-0003","ix":5,"v":{"a":0,"k":0,"ix":5}},{"ty":0,"nm":"Vertical Feather","mn":"ADBE Fill-0004","ix":6,"v":{"a":0,"k":0,"ix":6}},{"ty":0,"nm":"Opacity","mn":"ADBE Fill-0005","ix":7,"v":{"a":0,"k":1,"ix":7}}]}],"w":100,"h":100,"ip":12,"op":88,"st":12,"bm":0},{"ddd":0,"ind":10,"ty":0,"nm":"triangleComp01","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[2004,1152,0],"to":[0,0,0],"ti":[98.667,749.333,0]},{"t":10,"s":[1060,-120,0]}],"ix":2},"a":{"a":0,"k":[50,50,0],"ix":1},"s":{"a":0,"k":[80,80,100],"ix":6}},"ao":0,"ef":[{"ty":21,"nm":"Fill","np":9,"mn":"ADBE Fill","ix":1,"en":1,"ef":[{"ty":10,"nm":"Fill Mask","mn":"ADBE Fill-0001","ix":1,"v":{"a":0,"k":0,"ix":1}},{"ty":7,"nm":"All Masks","mn":"ADBE Fill-0007","ix":2,"v":{"a":0,"k":0,"ix":2}},{"ty":2,"nm":"Color","mn":"ADBE Fill-0002","ix":3,"v":{"a":0,"k":[0.098039224744,0.694117665291,1,1],"ix":3}},{"ty":7,"nm":"Invert","mn":"ADBE Fill-0006","ix":4,"v":{"a":0,"k":0,"ix":4}},{"ty":0,"nm":"Horizontal Feather","mn":"ADBE Fill-0003","ix":5,"v":{"a":0,"k":0,"ix":5}},{"ty":0,"nm":"Vertical Feather","mn":"ADBE Fill-0004","ix":6,"v":{"a":0,"k":0,"ix":6}},{"ty":0,"nm":"Opacity","mn":"ADBE Fill-0005","ix":7,"v":{"a":0,"k":1,"ix":7}}]}],"w":100,"h":100,"ip":0,"op":11,"st":0,"bm":0},{"ddd":0,"ind":11,"ty":0,"nm":"triangleComp01","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.17,"y":0.756},"o":{"x":0.167,"y":0.167},"t":13,"s":[1930,1130,0],"to":[-52.667,-198,0],"ti":[140,-6.333,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.72,"y":0.386},"t":38,"s":[1308,398,0],"to":[-140,6.333,0],"ti":[13.333,-434.667,0]},{"t":77,"s":[1090,1168,0]}],"ix":2},"a":{"a":0,"k":[50,50,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,2.083]},"t":13,"s":[50,50,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":38,"s":[75,75,100]},{"t":88,"s":[30,30,100]}],"ix":6}},"ao":0,"ef":[{"ty":21,"nm":"Fill","np":9,"mn":"ADBE Fill","ix":1,"en":1,"ef":[{"ty":10,"nm":"Fill Mask","mn":"ADBE Fill-0001","ix":1,"v":{"a":0,"k":0,"ix":1}},{"ty":7,"nm":"All Masks","mn":"ADBE Fill-0007","ix":2,"v":{"a":0,"k":0,"ix":2}},{"ty":2,"nm":"Color","mn":"ADBE Fill-0002","ix":3,"v":{"a":0,"k":[0.490196108818,0.231372565031,0.752941250801,1],"ix":3}},{"ty":7,"nm":"Invert","mn":"ADBE Fill-0006","ix":4,"v":{"a":0,"k":0,"ix":4}},{"ty":0,"nm":"Horizontal Feather","mn":"ADBE Fill-0003","ix":5,"v":{"a":0,"k":0,"ix":5}},{"ty":0,"nm":"Vertical Feather","mn":"ADBE Fill-0004","ix":6,"v":{"a":0,"k":0,"ix":6}},{"ty":0,"nm":"Opacity","mn":"ADBE Fill-0005","ix":7,"v":{"a":0,"k":1,"ix":7}}]}],"w":100,"h":100,"ip":13,"op":89,"st":13,"bm":0},{"ddd":0,"ind":12,"ty":0,"nm":"triangleComp01","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.17,"y":0.819},"o":{"x":0.167,"y":0.167},"t":3,"s":[1924,1148,0],"to":[-72.667,-550,0],"ti":[137.333,-0.667,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.72,"y":0.293},"t":28,"s":[1216,80,0],"to":[-137.333,0.667,0],"ti":[-12.667,-380.667,0]},{"t":67,"s":[1100,1152,0]}],"ix":2},"a":{"a":0,"k":[50,50,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.833]},"t":3,"s":[60,60,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":28,"s":[80,80,100]},{"t":78,"s":[20,20,100]}],"ix":6}},"ao":0,"ef":[{"ty":21,"nm":"Fill","np":9,"mn":"ADBE Fill","ix":1,"en":1,"ef":[{"ty":10,"nm":"Fill Mask","mn":"ADBE Fill-0001","ix":1,"v":{"a":0,"k":0,"ix":1}},{"ty":7,"nm":"All Masks","mn":"ADBE Fill-0007","ix":2,"v":{"a":0,"k":0,"ix":2}},{"ty":2,"nm":"Color","mn":"ADBE Fill-0002","ix":3,"v":{"a":0,"k":[1,0.282352954149,0.282352954149,1],"ix":3}},{"ty":7,"nm":"Invert","mn":"ADBE Fill-0006","ix":4,"v":{"a":0,"k":0,"ix":4}},{"ty":0,"nm":"Horizontal Feather","mn":"ADBE Fill-0003","ix":5,"v":{"a":0,"k":0,"ix":5}},{"ty":0,"nm":"Vertical Feather","mn":"ADBE Fill-0004","ix":6,"v":{"a":0,"k":0,"ix":6}},{"ty":0,"nm":"Opacity","mn":"ADBE Fill-0005","ix":7,"v":{"a":0,"k":1,"ix":7}}]}],"w":100,"h":100,"ip":3,"op":79,"st":3,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"redCircle01","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":2,"s":[1920,1124,0],"to":[-156.667,-332.667,0],"ti":[0,0,0]},{"t":14,"s":[1652,-32,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.282352941176,0.282352941176,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":2,"op":15,"st":2,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"blueCircle02","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.17,"y":0.783},"o":{"x":0.167,"y":0.167},"t":6,"s":[1840,1196,0],"to":[-77.333,-182,0],"ti":[133.798,40.438,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.72,"y":0.359},"t":20,"s":[1410,770,0],"to":[-137.2,-41.466,0],"ti":[19.333,-100.667,0]},{"t":41,"s":[1208,1168,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,1.667]},"t":6,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":20,"s":[50,50,100]},{"t":41,"s":[30,30,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.098039223166,0.694117647059,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":6,"op":42,"st":6,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"redCircle03","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.17,"y":0.782},"o":{"x":0.167,"y":0.167},"t":15,"s":[1940,1168,0],"to":[-23.667,-194.667,0],"ti":[128.339,4.912,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.72,"y":0.29},"t":36,"s":[1606,328,0],"to":[-69.797,-2.671,0],"ti":[19.333,-210.667,0]},{"t":67,"s":[1410,1186,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.794]},"t":15,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":36,"s":[50,50,100]},{"t":67,"s":[20,20,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.282352941176,0.282352941176,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":15,"op":68,"st":15,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"yellowCircle02","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.17,"y":0.674},"o":{"x":0.167,"y":0.167},"t":11,"s":[1904,1140,0],"to":[3.333,-94,0],"ti":[163,8,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.72,"y":0.443},"t":32,"s":[1660,608,0],"to":[-71.027,-3.486,0],"ti":[-12.667,-150.667,0]},{"t":63,"s":[1530,1160,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,1.667]},"t":11,"s":[30,30,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":32,"s":[70,70,100]},{"t":63,"s":[50,50,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.490196108351,0.231372563979,0.752941236309,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":11,"op":64,"st":11,"bm":0},{"ddd":0,"ind":17,"ty":4,"nm":"purpleCircle03","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.17,"y":0.77},"o":{"x":0.167,"y":0.167},"t":6,"s":[1908,1116,0],"to":[-9.333,-174,0],"ti":[154.699,0.945,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.72,"y":0.302},"t":31,"s":[1588,152,0],"to":[-126.052,-0.77,0],"ti":[3.333,-368.667,0]},{"t":70,"s":[1392,1184,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,8.333]},"t":6,"s":[50,50,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":31,"s":[100,100,100]},{"t":81,"s":[50,50,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[20,20],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.705882352941,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":6,"op":71,"st":6,"bm":0},{"ddd":0,"ind":18,"ty":4,"nm":"blueCircle01","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.17,"y":0.796},"o":{"x":0.167,"y":0.167},"t":0,"s":[1920,1160,0],"to":[6.667,-266,0],"ti":[131.904,-46.241,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.72,"y":0.326},"t":25,"s":[1300,212,0],"to":[-201.2,70.534,0],"ti":[-4.667,-388.667,0]},{"t":64,"s":[1144,1156,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,1.667]},"t":0,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":25,"s":[50,50,100]},{"t":64,"s":[30,30,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.098039223166,0.694117647059,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":65,"st":0,"bm":0},{"ddd":0,"ind":19,"ty":4,"nm":"redCircle02","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.17,"y":0.79},"o":{"x":0.167,"y":0.167},"t":7,"s":[2072,1216,0],"to":[-99,-124.667,0],"ti":[111.667,12.667,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.72,"y":0.368},"t":28,"s":[1478,468,0],"to":[-111.667,-12.667,0],"ti":[-0.667,-122.667,0]},{"t":59,"s":[1402,1140,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.794]},"t":7,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":28,"s":[50,50,100]},{"t":59,"s":[20,20,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.282352941176,0.282352941176,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":7,"op":72,"st":7,"bm":0},{"ddd":0,"ind":20,"ty":4,"nm":"yellowCircle01","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.17,"y":0.716},"o":{"x":0.167,"y":0.167},"t":3,"s":[1972,1216,0],"to":[-72,-110.667,0],"ti":[136.12,-24.434,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.72,"y":0.457},"t":21.8,"s":[1540,552,0],"to":[-163.485,29.346,0],"ti":[-20.667,-116.667,0]},{"t":50,"s":[1336,1140,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,1.667]},"t":3,"s":[30,30,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":21.8,"s":[70,70,100]},{"t":50,"s":[50,50,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.705882352941,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":3,"op":51,"st":3,"bm":0},{"ddd":0,"ind":21,"ty":4,"nm":"purpleCircle01","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.17,"y":0.777},"o":{"x":0.167,"y":0.167},"t":0,"s":[1640,1140,0],"to":[-32.667,-164,0],"ti":[117.335,-17.843,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.72,"y":0.342},"t":25,"s":[1104,228,0],"to":[-144.667,22,0],"ti":[-24.667,-180.667,0]},{"t":64,"s":[1032,1148,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,-5.556]},"t":0,"s":[80,80,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":25,"s":[100,100,100]},{"t":75,"s":[50,50,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[15,15],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.490196078431,0.23137254902,0.752941176471,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":65,"st":0,"bm":0}]},{"id":"comp_2","layers":[{"ddd":1,"ind":1,"ty":4,"nm":"triangle","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"rx":{"a":0,"k":0,"ix":8,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 150);"},"ry":{"a":0,"k":0,"ix":9,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 50);"},"rz":{"a":0,"k":0,"ix":10,"x":"var $bm_rt;\n$bm_rt = $bm_mul(time, 10);"},"or":{"a":0,"k":[0,0,0],"ix":7},"p":{"a":0,"k":[50,57,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[80,80,80],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"sr","sy":2,"d":1,"pt":{"a":0,"k":3,"ix":3},"p":{"a":0,"k":[0,0],"ix":4},"r":{"a":0,"k":0,"ix":5},"or":{"a":0,"k":30,"ix":7},"os":{"a":0,"k":0,"ix":9},"ix":1,"nm":"Polystar Path 1","mn":"ADBE Vector Shape - Star","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Polystar 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":375,"st":0,"bm":0}]},{"id":"comp_3","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"blueCircle03","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[1773,-59,0],"to":[-116,296,0],"ti":[168,-388,0]},{"t":101,"s":[1733,1213,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[45.849,45.849,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.098039223166,0.694117647059,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":40,"op":101,"st":40,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"redCircle04","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35,"s":[1452,-305,0],"to":[244,436,0],"ti":[-304,-272,0]},{"t":101,"s":[1520,1211,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[48.744,48.744,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.282352941176,0.282352941176,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":35,"op":101,"st":35,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"yellowCircle03","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":31,"s":[920,-110,0],"to":[-200,428,0],"ti":[244,-308,0]},{"t":101,"s":[920,1210,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[68.326,68.326,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.705882352941,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":31,"op":101,"st":31,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"purpleCircle04","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":26,"s":[1246,-55,0],"to":[184,256,0],"ti":[-344,-344,0]},{"t":76,"s":[1374,1253,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[48,48,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.490196078431,0.23137254902,0.752941176471,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":26,"op":77,"st":26,"bm":0},{"ddd":0,"ind":5,"ty":0,"nm":"triangleComp01","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":27,"s":[1654,-58,0],"to":[-124,373.333,0],"ti":[168,-557.333,0]},{"t":99,"s":[1654,1222,0]}],"ix":2},"a":{"a":0,"k":[50,50,0],"ix":1},"s":{"a":0,"k":[60,60,100],"ix":6}},"ao":0,"ef":[{"ty":21,"nm":"Fill","np":9,"mn":"ADBE Fill","ix":1,"en":1,"ef":[{"ty":10,"nm":"Fill Mask","mn":"ADBE Fill-0001","ix":1,"v":{"a":0,"k":0,"ix":1}},{"ty":7,"nm":"All Masks","mn":"ADBE Fill-0007","ix":2,"v":{"a":0,"k":0,"ix":2}},{"ty":2,"nm":"Color","mn":"ADBE Fill-0002","ix":3,"v":{"a":0,"k":[1,0.705882370472,0,1],"ix":3}},{"ty":7,"nm":"Invert","mn":"ADBE Fill-0006","ix":4,"v":{"a":0,"k":0,"ix":4}},{"ty":0,"nm":"Horizontal Feather","mn":"ADBE Fill-0003","ix":5,"v":{"a":0,"k":0,"ix":5}},{"ty":0,"nm":"Vertical Feather","mn":"ADBE Fill-0004","ix":6,"v":{"a":0,"k":0,"ix":6}},{"ty":0,"nm":"Opacity","mn":"ADBE Fill-0005","ix":7,"v":{"a":0,"k":1,"ix":7}}]}],"w":100,"h":100,"ip":27,"op":115,"st":27,"bm":0},{"ddd":0,"ind":6,"ty":0,"nm":"triangleComp01","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":23,"s":[1414,-58,0],"to":[248,409.333,0],"ti":[-236,-493.333,0]},{"t":100,"s":[1414,1222,0]}],"ix":2},"a":{"a":0,"k":[50,50,0],"ix":1},"s":{"a":0,"k":[60,60,100],"ix":6}},"ao":0,"ef":[{"ty":21,"nm":"Fill","np":9,"mn":"ADBE Fill","ix":1,"en":1,"ef":[{"ty":10,"nm":"Fill Mask","mn":"ADBE Fill-0001","ix":1,"v":{"a":0,"k":0,"ix":1}},{"ty":7,"nm":"All Masks","mn":"ADBE Fill-0007","ix":2,"v":{"a":0,"k":0,"ix":2}},{"ty":2,"nm":"Color","mn":"ADBE Fill-0002","ix":3,"v":{"a":0,"k":[0.490196108818,0.231372565031,0.752941250801,1],"ix":3}},{"ty":7,"nm":"Invert","mn":"ADBE Fill-0006","ix":4,"v":{"a":0,"k":0,"ix":4}},{"ty":0,"nm":"Horizontal Feather","mn":"ADBE Fill-0003","ix":5,"v":{"a":0,"k":0,"ix":5}},{"ty":0,"nm":"Vertical Feather","mn":"ADBE Fill-0004","ix":6,"v":{"a":0,"k":0,"ix":6}},{"ty":0,"nm":"Opacity","mn":"ADBE Fill-0005","ix":7,"v":{"a":0,"k":1,"ix":7}}]}],"w":100,"h":100,"ip":23,"op":111,"st":23,"bm":0},{"ddd":0,"ind":7,"ty":0,"nm":"triangleComp01","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":13,"s":[1988,1208,0],"to":[0,0,0],"ti":[95.333,242.667,0]},{"t":23,"s":[1416,-248,0]}],"ix":2},"a":{"a":0,"k":[50,50,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,-10]},"t":13,"s":[80,80,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":38,"s":[100,100,100]},{"t":88,"s":[50,50,100]}],"ix":6}},"ao":0,"ef":[{"ty":21,"nm":"Fill","np":9,"mn":"ADBE Fill","ix":1,"en":1,"ef":[{"ty":10,"nm":"Fill Mask","mn":"ADBE Fill-0001","ix":1,"v":{"a":0,"k":0,"ix":1}},{"ty":7,"nm":"All Masks","mn":"ADBE Fill-0007","ix":2,"v":{"a":0,"k":0,"ix":2}},{"ty":2,"nm":"Color","mn":"ADBE Fill-0002","ix":3,"v":{"a":0,"k":[0.098039224744,0.694117665291,1,1],"ix":3}},{"ty":7,"nm":"Invert","mn":"ADBE Fill-0006","ix":4,"v":{"a":0,"k":0,"ix":4}},{"ty":0,"nm":"Horizontal Feather","mn":"ADBE Fill-0003","ix":5,"v":{"a":0,"k":0,"ix":5}},{"ty":0,"nm":"Vertical Feather","mn":"ADBE Fill-0004","ix":6,"v":{"a":0,"k":0,"ix":6}},{"ty":0,"nm":"Opacity","mn":"ADBE Fill-0005","ix":7,"v":{"a":0,"k":1,"ix":7}}]}],"w":100,"h":100,"ip":13,"op":101,"st":13,"bm":0},{"ddd":0,"ind":8,"ty":0,"nm":"triangleComp01","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.17,"y":0.81},"o":{"x":0.167,"y":0.167},"t":26,"s":[1930,1130,0],"to":[-52.667,-198,0],"ti":[171.333,-3,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.72,"y":0.262},"t":51,"s":[1360,32,0],"to":[-171.333,3,0],"ti":[61.333,-430.667,0]},{"t":90,"s":[902,1148,0]}],"ix":2},"a":{"a":0,"k":[50,50,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,1.111]},"t":26,"s":[30,30,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":51,"s":[50,50,100]},{"t":101,"s":[15,15,100]}],"ix":6}},"ao":0,"ef":[{"ty":21,"nm":"Fill","np":9,"mn":"ADBE Fill","ix":1,"en":1,"ef":[{"ty":10,"nm":"Fill Mask","mn":"ADBE Fill-0001","ix":1,"v":{"a":0,"k":0,"ix":1}},{"ty":7,"nm":"All Masks","mn":"ADBE Fill-0007","ix":2,"v":{"a":0,"k":0,"ix":2}},{"ty":2,"nm":"Color","mn":"ADBE Fill-0002","ix":3,"v":{"a":0,"k":[0.098039224744,0.694117665291,1,1],"ix":3}},{"ty":7,"nm":"Invert","mn":"ADBE Fill-0006","ix":4,"v":{"a":0,"k":0,"ix":4}},{"ty":0,"nm":"Horizontal Feather","mn":"ADBE Fill-0003","ix":5,"v":{"a":0,"k":0,"ix":5}},{"ty":0,"nm":"Vertical Feather","mn":"ADBE Fill-0004","ix":6,"v":{"a":0,"k":0,"ix":6}},{"ty":0,"nm":"Opacity","mn":"ADBE Fill-0005","ix":7,"v":{"a":0,"k":1,"ix":7}}]}],"w":100,"h":100,"ip":26,"op":101,"st":26,"bm":0},{"ddd":0,"ind":9,"ty":0,"nm":"triangleComp01","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.17,"y":0.801},"o":{"x":0.167,"y":0.167},"t":16,"s":[1940,1124,0],"to":[-108.333,-166,0],"ti":[149.333,-4,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.72,"y":0.297},"t":41,"s":[1290,128,0],"to":[-149.333,4,0],"ti":[-48.667,-412.667,0]},{"t":80,"s":[1044,1148,0]}],"ix":2},"a":{"a":0,"k":[50,50,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,-10]},"t":16,"s":[80,80,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":41,"s":[100,100,100]},{"t":91,"s":[50,50,100]}],"ix":6}},"ao":0,"ef":[{"ty":21,"nm":"Fill","np":9,"mn":"ADBE Fill","ix":1,"en":1,"ef":[{"ty":10,"nm":"Fill Mask","mn":"ADBE Fill-0001","ix":1,"v":{"a":0,"k":0,"ix":1}},{"ty":7,"nm":"All Masks","mn":"ADBE Fill-0007","ix":2,"v":{"a":0,"k":0,"ix":2}},{"ty":2,"nm":"Color","mn":"ADBE Fill-0002","ix":3,"v":{"a":0,"k":[1,0.705882370472,0,1],"ix":3}},{"ty":7,"nm":"Invert","mn":"ADBE Fill-0006","ix":4,"v":{"a":0,"k":0,"ix":4}},{"ty":0,"nm":"Horizontal Feather","mn":"ADBE Fill-0003","ix":5,"v":{"a":0,"k":0,"ix":5}},{"ty":0,"nm":"Vertical Feather","mn":"ADBE Fill-0004","ix":6,"v":{"a":0,"k":0,"ix":6}},{"ty":0,"nm":"Opacity","mn":"ADBE Fill-0005","ix":7,"v":{"a":0,"k":1,"ix":7}}]}],"w":100,"h":100,"ip":16,"op":101,"st":16,"bm":0},{"ddd":0,"ind":10,"ty":0,"nm":"triangleComp01","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[1988,1208,0],"to":[0,0,0],"ti":[154.667,221.333,0]},{"t":10,"s":[1060,-120,0]}],"ix":2},"a":{"a":0,"k":[50,50,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,-10]},"t":0,"s":[80,80,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":25,"s":[100,100,100]},{"t":75,"s":[50,50,100]}],"ix":6}},"ao":0,"ef":[{"ty":21,"nm":"Fill","np":9,"mn":"ADBE Fill","ix":1,"en":1,"ef":[{"ty":10,"nm":"Fill Mask","mn":"ADBE Fill-0001","ix":1,"v":{"a":0,"k":0,"ix":1}},{"ty":7,"nm":"All Masks","mn":"ADBE Fill-0007","ix":2,"v":{"a":0,"k":0,"ix":2}},{"ty":2,"nm":"Color","mn":"ADBE Fill-0002","ix":3,"v":{"a":0,"k":[0.098039224744,0.694117665291,1,1],"ix":3}},{"ty":7,"nm":"Invert","mn":"ADBE Fill-0006","ix":4,"v":{"a":0,"k":0,"ix":4}},{"ty":0,"nm":"Horizontal Feather","mn":"ADBE Fill-0003","ix":5,"v":{"a":0,"k":0,"ix":5}},{"ty":0,"nm":"Vertical Feather","mn":"ADBE Fill-0004","ix":6,"v":{"a":0,"k":0,"ix":6}},{"ty":0,"nm":"Opacity","mn":"ADBE Fill-0005","ix":7,"v":{"a":0,"k":1,"ix":7}}]}],"w":100,"h":100,"ip":0,"op":101,"st":0,"bm":0},{"ddd":0,"ind":11,"ty":0,"nm":"triangleComp01","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.17,"y":0.754},"o":{"x":0.167,"y":0.167},"t":13,"s":[1930,1130,0],"to":[-52.667,-198,0],"ti":[171.333,-3,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.72,"y":0.328},"t":38,"s":[1396,346,0],"to":[-171.333,3,0],"ti":[61.333,-430.667,0]},{"t":77,"s":[902,1148,0]}],"ix":2},"a":{"a":0,"k":[50,50,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,2.083]},"t":13,"s":[50,50,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":38,"s":[75,75,100]},{"t":88,"s":[30,30,100]}],"ix":6}},"ao":0,"ef":[{"ty":21,"nm":"Fill","np":9,"mn":"ADBE Fill","ix":1,"en":1,"ef":[{"ty":10,"nm":"Fill Mask","mn":"ADBE Fill-0001","ix":1,"v":{"a":0,"k":0,"ix":1}},{"ty":7,"nm":"All Masks","mn":"ADBE Fill-0007","ix":2,"v":{"a":0,"k":0,"ix":2}},{"ty":2,"nm":"Color","mn":"ADBE Fill-0002","ix":3,"v":{"a":0,"k":[0.490196108818,0.231372565031,0.752941250801,1],"ix":3}},{"ty":7,"nm":"Invert","mn":"ADBE Fill-0006","ix":4,"v":{"a":0,"k":0,"ix":4}},{"ty":0,"nm":"Horizontal Feather","mn":"ADBE Fill-0003","ix":5,"v":{"a":0,"k":0,"ix":5}},{"ty":0,"nm":"Vertical Feather","mn":"ADBE Fill-0004","ix":6,"v":{"a":0,"k":0,"ix":6}},{"ty":0,"nm":"Opacity","mn":"ADBE Fill-0005","ix":7,"v":{"a":0,"k":1,"ix":7}}]}],"w":100,"h":100,"ip":13,"op":101,"st":13,"bm":0},{"ddd":0,"ind":12,"ty":0,"nm":"triangleComp01","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.17,"y":0.816},"o":{"x":0.167,"y":0.167},"t":3,"s":[1940,1124,0],"to":[-120.667,-178,0],"ti":[149.333,-4,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.72,"y":0.284},"t":28,"s":[1216,56,0],"to":[-149.333,4,0],"ti":[-48.667,-412.667,0]},{"t":67,"s":[1044,1148,0]}],"ix":2},"a":{"a":0,"k":[50,50,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.833]},"t":3,"s":[60,60,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":28,"s":[80,80,100]},{"t":78,"s":[20,20,100]}],"ix":6}},"ao":0,"ef":[{"ty":21,"nm":"Fill","np":9,"mn":"ADBE Fill","ix":1,"en":1,"ef":[{"ty":10,"nm":"Fill Mask","mn":"ADBE Fill-0001","ix":1,"v":{"a":0,"k":0,"ix":1}},{"ty":7,"nm":"All Masks","mn":"ADBE Fill-0007","ix":2,"v":{"a":0,"k":0,"ix":2}},{"ty":2,"nm":"Color","mn":"ADBE Fill-0002","ix":3,"v":{"a":0,"k":[1,0.282352954149,0.282352954149,1],"ix":3}},{"ty":7,"nm":"Invert","mn":"ADBE Fill-0006","ix":4,"v":{"a":0,"k":0,"ix":4}},{"ty":0,"nm":"Horizontal Feather","mn":"ADBE Fill-0003","ix":5,"v":{"a":0,"k":0,"ix":5}},{"ty":0,"nm":"Vertical Feather","mn":"ADBE Fill-0004","ix":6,"v":{"a":0,"k":0,"ix":6}},{"ty":0,"nm":"Opacity","mn":"ADBE Fill-0005","ix":7,"v":{"a":0,"k":1,"ix":7}}]}],"w":100,"h":100,"ip":3,"op":79,"st":3,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"redCircle01","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":1,"s":[1920,1124,0],"to":[-121.333,-216.667,0],"ti":[0,0,0]},{"t":13,"s":[1192,-176,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.282352941176,0.282352941176,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":1,"op":14,"st":1,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"blueCircle02","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.17,"y":0.779},"o":{"x":0.167,"y":0.167},"t":6,"s":[1920,1160,0],"to":[6.667,-266,0],"ti":[131.904,-46.241,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.72,"y":0.326},"t":31,"s":[1434,234,0],"to":[-201.2,70.534,0],"ti":[39.333,-396.667,0]},{"t":70,"s":[1208,1168,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,1.667]},"t":6,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":31,"s":[50,50,100]},{"t":70,"s":[30,30,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.098039223166,0.694117647059,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":6,"op":71,"st":6,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"redCircle03","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.17,"y":0.761},"o":{"x":0.167,"y":0.167},"t":15,"s":[1992,1216,0],"to":[-89,-107.333,0],"ti":[106.333,12.333,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.72,"y":0.427},"t":36,"s":[1458,572,0],"to":[-106.333,-12.333,0],"ti":[-0.667,-122.667,0]},{"t":67,"s":[1354,1142,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.794]},"t":15,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":36,"s":[50,50,100]},{"t":67,"s":[20,20,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.282352941176,0.282352941176,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":15,"op":80,"st":15,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"yellowCircle02","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.17,"y":0.711},"o":{"x":0.167,"y":0.167},"t":11,"s":[1820,1152,0],"to":[-69.333,-91.333,0],"ti":[97,-0.667,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.72,"y":0.436},"t":32,"s":[1404,604,0],"to":[-97,0.667,0],"ti":[27.333,-98.667,0]},{"t":63,"s":[1238,1156,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,1.667]},"t":11,"s":[30,30,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":32,"s":[70,70,100]},{"t":63,"s":[50,50,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.490196108351,0.231372563979,0.752941236309,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":11,"op":76,"st":11,"bm":0},{"ddd":0,"ind":17,"ty":4,"nm":"purpleCircle03","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.17,"y":0.824},"o":{"x":0.167,"y":0.167},"t":6,"s":[1944,1104,0],"to":[-154,-164.667,0],"ti":[169.333,-8,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.72,"y":0.302},"t":31,"s":[1020,116,0],"to":[-169.333,8,0],"ti":[175.333,-340.667,0]},{"t":70,"s":[928,1152,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,8.333]},"t":6,"s":[50,50,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":31,"s":[100,100,100]},{"t":81,"s":[50,50,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[20,20],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.705882352941,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":6,"op":71,"st":6,"bm":0},{"ddd":0,"ind":18,"ty":4,"nm":"blueCircle01","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.17,"y":0.796},"o":{"x":0.167,"y":0.167},"t":0,"s":[1920,1160,0],"to":[6.667,-266,0],"ti":[131.904,-46.241,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.72,"y":0.326},"t":25,"s":[1300,212,0],"to":[-201.2,70.534,0],"ti":[-4.667,-388.667,0]},{"t":64,"s":[1144,1156,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,1.667]},"t":0,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":25,"s":[50,50,100]},{"t":64,"s":[30,30,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.098039223166,0.694117647059,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":65,"st":0,"bm":0},{"ddd":0,"ind":19,"ty":4,"nm":"redCircle02","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.17,"y":0.79},"o":{"x":0.167,"y":0.167},"t":9,"s":[1992,1216,0],"to":[-99,-124.667,0],"ti":[111.667,12.667,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.72,"y":0.368},"t":30,"s":[1398,468,0],"to":[-111.667,-12.667,0],"ti":[-0.667,-122.667,0]},{"t":61,"s":[1322,1140,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.794]},"t":9,"s":[20,20,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":30,"s":[50,50,100]},{"t":61,"s":[20,20,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.282352941176,0.282352941176,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":9,"op":74,"st":9,"bm":0},{"ddd":0,"ind":20,"ty":4,"nm":"yellowCircle01","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.17,"y":0.748},"o":{"x":0.167,"y":0.167},"t":5,"s":[1732,1216,0],"to":[-72,-110.667,0],"ti":[106,12.667,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.72,"y":0.398},"t":26,"s":[1300,552,0],"to":[-106,-12.667,0],"ti":[-20.667,-116.667,0]},{"t":57,"s":[1096,1140,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,1.667]},"t":5,"s":[30,30,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":26,"s":[70,70,100]},{"t":57,"s":[50,50,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.705882352941,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":5,"op":70,"st":5,"bm":0},{"ddd":0,"ind":21,"ty":4,"nm":"purpleCircle01","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.17,"y":0.824},"o":{"x":0.167,"y":0.167},"t":0,"s":[1944,1104,0],"to":[-154,-164.667,0],"ti":[169.333,-8,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.72,"y":0.302},"t":25,"s":[1020,116,0],"to":[-169.333,8,0],"ti":[175.333,-340.667,0]},{"t":64,"s":[928,1152,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,8.333]},"t":0,"s":[50,50,100]},{"i":{"x":[0.833,0.833,0.833],"y":[1,1,1]},"o":{"x":[0.695,0.695,0.333],"y":[0,0,0]},"t":25,"s":[100,100,100]},{"t":75,"s":[50,50,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[15,15],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.490196078431,0.23137254902,0.752941176471,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":65,"st":0,"bm":0}]},{"id":"comp_4","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"ribbonRed02","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":8.9,"ix":10},"p":{"a":0,"k":[655.204,920.201,0],"ix":2},"a":{"a":0,"k":[787.204,316.201,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[65.331,101.626],[52.275,60.987],[18,-36],[-30,-2],[100.811,137.103],[-12,136],[-54,80]],"o":[[0,0],[-54,-84],[-24,-28],[-26.593,53.186],[147.726,9.848],[-100,-136],[10.968,-124.305],[51.52,-76.326]],"v":[[736,520],[810,346],[830,138],[716,140],[780,226],[836,-92],[656,-334],[887.095,-676.42]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.156862745098,0.215686289469,0.470588265213,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":15,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.18],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":11,"s":[0]},{"t":44,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.18],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":4,"s":[0]},{"t":37,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":4,"op":45,"st":4,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"ribbonPurple02","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[960,540,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-7.674,145.812],[-56.367,71.74],[-43.907,167.129],[8,194],[-62,210]],"o":[[0,0],[8,-151.999],[110,-140.001],[62,-236],[-13.292,-322.34],[26.075,-88.318]],"v":[[524,624],[370,412],[544,236.001],[462,-40],[48,-256],[-174,-752]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.270588235294,0.909803981407,0.639215686275,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[3.615]},"t":10,"s":[20]},{"t":39,"s":[15]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.18],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":10,"s":[0]},{"t":43,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.18],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":3,"s":[0]},{"t":36,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":3,"op":44,"st":3,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"ribbonRed01","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[960,540,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[65.331,101.626],[-26,76],[32,-58],[-148,4],[100.811,137.103],[16,156],[-92,4]],"o":[[0,0],[-54,-84],[36.079,-105.462],[-42.346,76.752],[148,-4],[-100,-136],[-16,-156],[92,-4]],"v":[[1006,496],[688,340],[704,96],[568,46],[738,200],[832,-158],[600,-414],[832,-664]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.282352911257,0.282352911257,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":15,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.18],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":9,"s":[0]},{"t":42,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.18],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":2,"s":[0]},{"t":35,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":2,"op":43,"st":2,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"ribbonBlue01","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[960,540,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-140,200],[-170.503,113.669],[-133.881,0],[41.726,121.7],[-224,52]],"o":[[0,0],[140,-200],[138,-92],[178,0],[-24,-70],[224,-52]],"v":[[-1072,420],[-688,316],[-484,-136],[18,-62],[178,-370],[308,-692]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.239215701234,0.823529471603,0.976470648074,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[2]},"t":12,"s":[25]},{"t":28,"s":[15]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.18],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":8,"s":[0]},{"t":41,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.18],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":1,"s":[0]},{"t":34,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":1,"op":42,"st":1,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"ribbonPurple01","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[960,540,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-92,162],[-114.383,228.764],[-106,-10],[56.871,70.411],[-98,116],[-28.331,59.644],[-90,44],[182,50]],"o":[[112.375,-197.878],[56,-111.999],[155.323,14.654],[-42,-52],[79.909,-94.586],[38,-80],[92.11,-45.031],[-107.186,-29.447]],"v":[[-596,612],[-704,247.999],[-446,120],[-298,-16],[-430,-158],[-482,-330],[-246,-366],[-308,-652]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.488552078546,0.230311404957,0.752941176471,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.17],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":8,"s":[35]},{"t":38,"s":[10]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.18],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":8,"s":[0]},{"t":41,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.18],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":5,"s":[0]},{"t":38,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":42,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"ribbonYellow01","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[960,540,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-15.347,130.161],[-186.562,101.072],[112.01,0.14],[-68.075,42.572],[-51.603,62.412],[43.211,79.208],[219.412,-10.282]],"o":[[0,0],[15.347,-130.162],[180.162,-97.604],[-112.01,-0.142],[88.184,-55.147],[57.188,-69.166],[-43.211,-79.208],[-190.794,8.941]],"v":[[-996.479,553.827],[-814.281,359.159],[-768.857,64.753],[-717.951,160.649],[-716.405,-79.549],[-503.734,-159.43],[-491.038,-358.543],[-963.412,-597.718]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.706519751455,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":1,"k":[{"i":{"x":[0.17],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[25]},{"t":33,"s":[10]}],"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.18],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":7,"s":[0]},{"t":40,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.18],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":0,"s":[0]},{"t":33,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":41,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"frills","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[960,540,0],"ix":2},"a":{"a":0,"k":[960,540,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"w":1920,"h":1080,"ip":16,"op":166,"st":16,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"blueCircle04","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":32,"s":[1186.352,-230.499,0],"to":[-144,723.333,0],"ti":[272,-583.333,0]},{"t":83,"s":[1186.352,1205.501,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[45.849,45.849,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.098039223166,0.694117647059,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":32,"op":83,"st":32,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"redCircle05","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":19,"s":[794.727,-24.984,0],"to":[224,403.333,0],"ti":[-284,-435.333,0]},{"t":76,"s":[794.727,1411.016,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[48.744,48.744,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.282352941176,0.282352941176,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":19,"op":77,"st":19,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"yellowCircle04","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":26,"s":[108.041,-39.458,0],"to":[-76,411.333,0],"ti":[184,-591.333,0]},{"t":71,"s":[108.041,1396.542,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[68.326,68.326,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.705882352941,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":26,"op":73,"st":26,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"purpleCircle05","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":32,"s":[448.767,-228.23,0],"to":[236,683.333,0],"ti":[-160,-439.333,0]},{"t":89,"s":[448.767,1207.77,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[48,48,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.490196078431,0.23137254902,0.752941176471,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":32,"op":90,"st":32,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"blueCircle03","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":39,"s":[1430.352,-242.499,0],"to":[-144,723.333,0],"ti":[272,-583.333,0]},{"t":88,"s":[1430.352,1193.501,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[45.849,45.849,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.098039223166,0.694117647059,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":39,"op":90,"st":39,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"redCircle04","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":16,"s":[1038.727,-36.984,0],"to":[224,403.333,0],"ti":[-284,-435.333,0]},{"t":73,"s":[1038.727,1399.016,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[48.744,48.744,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.282352941176,0.282352941176,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":16,"op":74,"st":16,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"yellowCircle03","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":30,"s":[352.041,-51.458,0],"to":[-76,411.333,0],"ti":[184,-591.333,0]},{"t":87,"s":[352.041,1384.542,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[68.326,68.326,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.705882352941,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":30,"op":88,"st":30,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"purpleCircle04","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":23,"s":[692.767,-240.23,0],"to":[236,683.333,0],"ti":[-160,-439.333,0]},{"t":80,"s":[692.767,1195.77,0]}],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[48,48,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[30,30],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.490196078431,0.23137254902,0.752941176471,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,-0.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":23,"op":81,"st":23,"bm":0},{"ddd":0,"ind":10,"ty":0,"nm":"Particles02","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[960,540,0],"ix":2},"a":{"a":0,"k":[960,540,0],"ix":1},"s":{"a":0,"k":[-100,100,100],"ix":6}},"ao":0,"w":1920,"h":1080,"ip":0,"op":101,"st":0,"bm":0},{"ddd":0,"ind":11,"ty":0,"nm":"Particles02","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[960,540,0],"ix":2},"a":{"a":0,"k":[960,540,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"w":1920,"h":1080,"ip":3,"op":104,"st":3,"bm":0},{"ddd":0,"ind":12,"ty":0,"nm":"Particles01","refId":"comp_3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[960,540,0],"ix":2},"a":{"a":0,"k":[960,540,0],"ix":1},"s":{"a":0,"k":[-100,100,100],"ix":6}},"ao":0,"w":1920,"h":1080,"ip":7,"op":108,"st":7,"bm":0},{"ddd":0,"ind":13,"ty":0,"nm":"Particles01","refId":"comp_3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[960,540,0],"ix":2},"a":{"a":0,"k":[960,540,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"w":1920,"h":1080,"ip":14,"op":115,"st":14,"bm":0},{"ddd":0,"ind":14,"ty":0,"nm":"ribbons","refId":"comp_4","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[960,540,0],"ix":2},"a":{"a":0,"k":[960,540,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"w":1920,"h":1080,"ip":0,"op":44,"st":0,"bm":0}],"markers":[]}
\ No newline at end of file
diff --git a/target/classes/static/assets/mobile/music/birthday/birthdaySong.mp3 b/target/classes/static/assets/mobile/music/birthday/birthdaySong.mp3
new file mode 100644
index 0000000..e19e73c
Binary files /dev/null and b/target/classes/static/assets/mobile/music/birthday/birthdaySong.mp3 differ
diff --git a/target/classes/static/assets/platform/css/h5.css b/target/classes/static/assets/platform/css/h5.css
index f129def..2bed696 100644
--- a/target/classes/static/assets/platform/css/h5.css
+++ b/target/classes/static/assets/platform/css/h5.css
@@ -124,11 +124,71 @@ body {
}
.custom-list-loading {
- background-color: unset;
+ min-width: 132px;
+ padding: 15px 12px 12px;
+ border-radius: 14px;
+ color: #666;
+ background-color: rgba(255, 255, 255, 0.98);
+ box-shadow: 0 6px 22px rgba(128, 72, 72, 0.08);
}
.custom-list-loading .van-icon {
- font-size: 108px;
+ position: relative;
+ width: 88px;
+ height: 88px;
+ overflow: visible;
+ font-size: 88px;
+}
+
+.custom-list-loading .van-icon::before {
+ position: absolute;
+ inset: 6px;
+ border: 1px solid rgba(255, 112, 103, 0.24);
+ border-radius: 50%;
+ content: "";
+}
+
+.custom-list-loading .van-icon::after {
+ position: absolute;
+ top: 2px;
+ left: 41px;
+ width: 6px;
+ height: 6px;
+ border-radius: 50%;
+ background: #ff8c83;
+ box-shadow: 33px 37px 0 #ff6f68, -35px 21px 0 #ffb0a9;
+ content: "";
+ transform-origin: 3px 42px;
+ animation: smart-union-loading-orbit 1.8s linear infinite;
+}
+
+.custom-list-loading .van-icon__image {
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ box-sizing: border-box;
+ width: 54px;
+ height: 54px;
+ padding: 5px;
+ border-radius: 50%;
+ background: rgba(255, 238, 236, 0.92);
+ object-fit: contain;
+ transform: translate(-50%, -50%);
+}
+
+@keyframes smart-union-loading-orbit {
+ to {
+ transform: rotate(360deg);
+ }
+}
+
+.custom-list-loading .van-toast__text {
+ margin-top: 4px;
+ color: #707070;
+ font-size: 11px;
+ font-weight: 500;
+ line-height: 18px;
+ white-space: pre-line;
}
.list-card {
diff --git a/target/classes/static/assets/platform/img/spread-bg.png b/target/classes/static/assets/platform/img/spread-bg.png
new file mode 100644
index 0000000..ac3ce63
Binary files /dev/null and b/target/classes/static/assets/platform/img/spread-bg.png differ
diff --git a/target/classes/static/assets/platform/js/util/commonUtil.js b/target/classes/static/assets/platform/js/util/commonUtil.js
index 02b9bf4..af6f72a 100644
--- a/target/classes/static/assets/platform/js/util/commonUtil.js
+++ b/target/classes/static/assets/platform/js/util/commonUtil.js
@@ -8,6 +8,10 @@ const commonUtil = {
"x-requested-with": "XMLHttpRequest"
}
})
+ // H5 页面按需注入统一的 Loading 与请求延迟处理,其他端保持原有行为。
+ if (typeof window !== "undefined" && typeof window.bindH5AxiosLoading === "function") {
+ window.bindH5AxiosLoading(axiosService)
+ }
//axios拦截器
axiosService.interceptors.response.use(
(response) => {
diff --git a/target/classes/static/assets/platform/js/util/h5PopupHistory.js b/target/classes/static/assets/platform/js/util/h5PopupHistory.js
new file mode 100644
index 0000000..674cd82
--- /dev/null
+++ b/target/classes/static/assets/platform/js/util/h5PopupHistory.js
@@ -0,0 +1,79 @@
+/**
+ * H5 弹框浏览器历史栈管理器。
+ * 页面只注册关闭回调;本文件全局统一监听 popstate,避免每个页面重复绑定返回事件。
+ */
+;((global) => {
+ const callbacks = new Map()
+ const popupStack = []
+ let tokenSeed = 0
+ let stateSeed = 0
+ let pendingClear = null
+
+ const invokeClose = (entry) => {
+ const callback = callbacks.get(entry.token)
+ if (callback) callback(entry.popupKey)
+ }
+
+ global.addEventListener("popstate", (event) => {
+ if (pendingClear) {
+ event.stopImmediatePropagation()
+ const clear = pendingClear
+ pendingClear = null
+ clear.resolve()
+ return
+ }
+ if (!popupStack.length) return
+
+ // 有弹框历史时消费本次返回事件,阻止 PJAX 将页面直接切回上一个业务页面。
+ event.stopImmediatePropagation()
+ const entry = popupStack.pop()
+ invokeClose(entry)
+ }, true)
+
+ global.h5PopupHistory = {
+ register(closeCallback) {
+ tokenSeed += 1
+ const token = "h5-popup-page-" + tokenSeed
+ callbacks.set(token, closeCallback)
+ return token
+ },
+ unregister(token) {
+ callbacks.delete(token)
+ for (let index = popupStack.length - 1; index >= 0; index -= 1) {
+ if (popupStack[index].token === token) popupStack.splice(index, 1)
+ }
+ },
+ open(token, popupKey) {
+ if (!callbacks.has(token)) return
+ const current = popupStack[popupStack.length - 1]
+ if (current && current.token === token && current.popupKey === popupKey) return
+
+ stateSeed += 1
+ const entry = {token:token,popupKey:popupKey,stateId:stateSeed}
+ popupStack.push(entry)
+ const state = Object.assign({}, global.history.state || {}, {
+ __h5PopupHistory: {token:token,popupKey:popupKey,stateId:stateSeed}
+ })
+ global.history.pushState(state, global.document.title, global.location.href)
+ },
+ close(token, popupKey) {
+ const current = popupStack[popupStack.length - 1]
+ if (!current || current.token !== token || current.popupKey !== popupKey) return false
+ global.history.back()
+ return true
+ },
+ clear(token) {
+ const entries = popupStack.filter((entry) => entry.token === token)
+ if (!entries.length) return Promise.resolve()
+
+ entries.forEach((entry) => invokeClose(entry))
+ for (let index = popupStack.length - 1; index >= 0; index -= 1) {
+ if (popupStack[index].token === token) popupStack.splice(index, 1)
+ }
+ return new Promise((resolve) => {
+ pendingClear = {resolve:resolve}
+ global.history.go(-entries.length)
+ })
+ }
+ }
+})(window)
diff --git a/target/classes/static/assets/platform/plugins/lottie/lottie.min.js b/target/classes/static/assets/platform/plugins/lottie/lottie.min.js
new file mode 100644
index 0000000..be2618e
--- /dev/null
+++ b/target/classes/static/assets/platform/plugins/lottie/lottie.min.js
@@ -0,0 +1 @@
+"undefined"!=typeof navigator&&function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).lottie=e()}(this,(function(){"use strict";var svgNS="http://www.w3.org/2000/svg",locationHref="",_useWebWorker=!1,initialDefaultFrame=-999999,setWebWorker=function(t){_useWebWorker=!!t},getWebWorker=function(){return _useWebWorker},setLocationHref=function(t){locationHref=t},getLocationHref=function(){return locationHref};function createTag(t){return document.createElement(t)}function extendPrototype(t,e){var r,i,s=t.length;for(r=0;r
1?r[1]=1:r[1]<=0&&(r[1]=0),HSVtoRGB(r[0],r[1],r[2])}function addBrightnessToRGB(t,e){var r=RGBtoHSV(255*t[0],255*t[1],255*t[2]);return r[2]+=e,r[2]>1?r[2]=1:r[2]<0&&(r[2]=0),HSVtoRGB(r[0],r[1],r[2])}function addHueToRGB(t,e){var r=RGBtoHSV(255*t[0],255*t[1],255*t[2]);return r[0]+=e/360,r[0]>1?r[0]-=1:r[0]<0&&(r[0]+=1),HSVtoRGB(r[0],r[1],r[2])}var rgbToHex=function(){var t,e,r=[];for(t=0;t<256;t+=1)e=t.toString(16),r[t]=1===e.length?"0"+e:e;return function(t,e,i){return t<0&&(t=0),e<0&&(e=0),i<0&&(i=0),"#"+r[t]+r[e]+r[i]}}(),setSubframeEnabled=function(t){subframeEnabled=!!t},getSubframeEnabled=function(){return subframeEnabled},setExpressionsPlugin=function(t){expressionsPlugin=t},getExpressionsPlugin=function(){return expressionsPlugin},setDefaultCurveSegments=function(t){defaultCurveSegments=t},getDefaultCurveSegments=function(){return defaultCurveSegments},setIdPrefix=function(t){idPrefix=t},getIdPrefix=function(){return idPrefix};function createNS(t){return document.createElementNS(svgNS,t)}function _typeof$5(t){return _typeof$5="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},_typeof$5(t)}var dataManager=function(){var t,e,r=1,i=[],s={onmessage:function(){},postMessage:function(e){t({data:e})}},a={postMessage:function(t){s.onmessage({data:t})}};function n(){e||(e=function(e){if(window.Worker&&window.Blob&&getWebWorker()){var r=new Blob(["var _workerSelf = self; self.onmessage = ",e.toString()],{type:"text/javascript"}),i=URL.createObjectURL(r);return new Worker(i)}return t=e,s}((function(t){if(a.dataManager||(a.dataManager=function(){function t(s,a){var n,o,h,l,p,m,c=s.length;for(o=0;o=0;e-=1)if("sh"===t[e].ty)if(t[e].ks.k.i)i(t[e].ks.k);else for(a=t[e].ks.k.length,s=0;sr[0]||!(r[0]>t[0])&&(t[1]>r[1]||!(r[1]>t[1])&&(t[2]>r[2]||!(r[2]>t[2])&&null))}var a,n=function(){var t=[4,4,14];function e(t){var e,r,i,s=t.length;for(e=0;e=0;r-=1)if("sh"===t[r].ty)if(t[r].ks.k.i)t[r].ks.k.c=t[r].closed;else for(s=t[r].ks.k.length,i=0;i500)&&(this._imageLoaded(),clearInterval(r)),e+=1}.bind(this),50)}function a(t){var e={assetData:t},r=i(t,this.assetsPath,this.path);return dataManager.loadData(r,function(t){e.img=t,this._footageLoaded()}.bind(this),function(){e.img={},this._footageLoaded()}.bind(this)),e}function n(){this._imageLoaded=e.bind(this),this._footageLoaded=r.bind(this),this.testImageLoaded=s.bind(this),this.createFootageData=a.bind(this),this.assetsPath="",this.path="",this.totalImages=0,this.totalFootages=0,this.loadedAssets=0,this.loadedFootagesCount=0,this.imagesLoadedCb=null,this.images=[]}return n.prototype={loadAssets:function(t,e){var r;this.imagesLoadedCb=e;var i=t.length;for(r=0;rthis.animationData.op&&(this.animationData.op=t.op,this.totalFrames=Math.floor(t.op-this.animationData.ip));var e,r,i=this.animationData.layers,s=i.length,a=t.layers,n=a.length;for(r=0;rthis.timeCompleted&&(this.currentFrame=this.timeCompleted),this.trigger("enterFrame"),this.renderFrame(),this.trigger("drawnFrame")},AnimationItem.prototype.renderFrame=function(){if(!1!==this.isLoaded&&this.renderer)try{this.renderer.renderFrame(this.currentFrame+this.firstFrame)}catch(t){this.triggerRenderFrameError(t)}},AnimationItem.prototype.play=function(t){t&&this.name!==t||!0===this.isPaused&&(this.isPaused=!1,this.audioController.resume(),this._idle&&(this._idle=!1,this.trigger("_active")))},AnimationItem.prototype.pause=function(t){t&&this.name!==t||!1===this.isPaused&&(this.isPaused=!0,this._idle=!0,this.trigger("_idle"),this.audioController.pause())},AnimationItem.prototype.togglePause=function(t){t&&this.name!==t||(!0===this.isPaused?this.play():this.pause())},AnimationItem.prototype.stop=function(t){t&&this.name!==t||(this.pause(),this.playCount=0,this._completedLoop=!1,this.setCurrentRawFrameValue(0))},AnimationItem.prototype.getMarkerData=function(t){for(var e,r=0;r=this.totalFrames-1&&this.frameModifier>0?this.loop&&this.playCount!==this.loop?e>=this.totalFrames?(this.playCount+=1,this.checkSegments(e%this.totalFrames)||(this.setCurrentRawFrameValue(e%this.totalFrames),this._completedLoop=!0,this.trigger("loopComplete"))):this.setCurrentRawFrameValue(e):this.checkSegments(e>this.totalFrames?e%this.totalFrames:0)||(r=!0,e=this.totalFrames-1):e<0?this.checkSegments(e%this.totalFrames)||(!this.loop||this.playCount--<=0&&!0!==this.loop?(r=!0,e=0):(this.setCurrentRawFrameValue(this.totalFrames+e%this.totalFrames),this._completedLoop?this.trigger("loopComplete"):this._completedLoop=!0)):this.setCurrentRawFrameValue(e),r&&(this.setCurrentRawFrameValue(e),this.pause(),this.trigger("complete"))}},AnimationItem.prototype.adjustSegment=function(t,e){this.playCount=0,t[1]0&&(this.playSpeed<0?this.setSpeed(-this.playSpeed):this.setDirection(-1)),this.totalFrames=t[0]-t[1],this.timeCompleted=this.totalFrames,this.firstFrame=t[1],this.setCurrentRawFrameValue(this.totalFrames-.001-e)):t[1]>t[0]&&(this.frameModifier<0&&(this.playSpeed<0?this.setSpeed(-this.playSpeed):this.setDirection(1)),this.totalFrames=t[1]-t[0],this.timeCompleted=this.totalFrames,this.firstFrame=t[0],this.setCurrentRawFrameValue(.001+e)),this.trigger("segmentStart")},AnimationItem.prototype.setSegment=function(t,e){var r=-1;this.isPaused&&(this.currentRawFrame+this.firstFramee&&(r=e-t)),this.firstFrame=t,this.totalFrames=e-t,this.timeCompleted=this.totalFrames,-1!==r&&this.goToAndStop(r,!0)},AnimationItem.prototype.playSegments=function(t,e){if(e&&(this.segments.length=0),"object"===_typeof$4(t[0])){var r,i=t.length;for(r=0;r=0;r-=1)e[r].animation.destroy(t)},t.freeze=function(){n=!0},t.unfreeze=function(){n=!1,d()},t.setVolume=function(t,r){var s;for(s=0;s=.001?function(t,e,r,i){for(var s=0;s<4;++s){var a=h(e,r,i);if(0===a)return e;e-=(o(e,r,i)-t)/a}return e}(t,l,e,i):0===p?l:function(t,e,r,i,s){var a,n,h=0;do{(a=o(n=e+(r-e)/2,i,s)-t)>0?r=n:e=n}while(Math.abs(a)>1e-7&&++h<10);return n}(t,a,a+r,e,i)}},t}(),pooling={double:function(t){return t.concat(createSizedArray(t.length))}},poolFactory=function(t,e,r){var i=0,s=t,a=createSizedArray(s);return{newElement:function(){return i?a[i-=1]:e()},release:function(t){i===s&&(a=pooling.double(a),s*=2),r&&r(t),a[i]=t,i+=1}}},bezierLengthPool=poolFactory(8,(function(){return{addedLength:0,percents:createTypedArray("float32",getDefaultCurveSegments()),lengths:createTypedArray("float32",getDefaultCurveSegments())}})),segmentsLengthPool=poolFactory(8,(function(){return{lengths:[],totalLength:0}}),(function(t){var e,r=t.lengths.length;for(e=0;e-.001&&n<.001}var r=function(t,e,r,i){var s,a,n,o,h,l,p=getDefaultCurveSegments(),f=0,m=[],c=[],d=bezierLengthPool.newElement();for(n=r.length,s=0;sn?-1:1,l=!0;l;)if(i[a]<=n&&i[a+1]>n?(o=(n-i[a])/(i[a+1]-i[a]),l=!1):a+=h,a<0||a>=s-1){if(a===s-1)return r[a];l=!1}return r[a]+(r[a+1]-r[a])*o}var h=createTypedArray("float32",8);return{getSegmentsLength:function(t){var e,i=segmentsLengthPool.newElement(),s=t.c,a=t.v,n=t.o,o=t.i,h=t._length,l=i.lengths,p=0;for(e=0;e1&&(a=1);var p,f=o(a,l),m=o(n=n>1?1:n,l),c=e.length,d=1-f,u=1-m,y=d*d*d,g=f*d*d*3,v=f*f*d*3,b=f*f*f,P=d*d*u,E=f*d*u+d*f*u+d*d*m,x=f*f*u+d*f*m+f*d*m,S=f*f*m,C=d*u*u,A=f*u*u+d*m*u+d*u*m,_=f*m*u+d*m*m+f*u*m,T=f*m*m,k=u*u*u,D=m*u*u+u*m*u+u*u*m,M=m*m*u+u*m*m+m*u*m,F=m*m*m;for(p=0;pc?m>d?m-c-d:d-c-m:d>c?d-c-m:c-m-d)>-1e-4&&f<1e-4}}}var bez=bezFunction(),PropertyFactory=function(){var t=initialDefaultFrame,e=Math.abs;function r(t,e){var r,s=this.offsetTime;"multidimensional"===this.propType&&(r=createTypedArray("float32",this.pv.length));for(var a,n,o,h,l,p,f,m,c,d=e.lastIndex,u=d,y=this.keyframes.length-1,g=!0;g;){if(a=this.keyframes[u],n=this.keyframes[u+1],u===y-1&&t>=n.t-s){a.h&&(a=n),d=0;break}if(n.t-s>t){d=u;break}u=k||t=k?M.points.length-1:0;for(l=M.points[F].point.length,h=0;h=V&&I=k)r[0]=v[0],r[1]=v[1],r[2]=v[2];else if(t<=D)r[0]=a.s[0],r[1]=a.s[1],r[2]=a.s[2];else{var N=i(a.s),O=i(v);b=r,P=function(t,e,r){var i,s,a,n,o,h=[],l=t[0],p=t[1],f=t[2],m=t[3],c=e[0],d=e[1],u=e[2],y=e[3];return(s=l*c+p*d+f*u+m*y)<0&&(s=-s,c=-c,d=-d,u=-u,y=-y),1-s>1e-6?(i=Math.acos(s),a=Math.sin(i),n=Math.sin((1-r)*i)/a,o=Math.sin(r*i)/a):(n=1-r,o=r),h[0]=n*l+o*c,h[1]=n*p+o*d,h[2]=n*f+o*u,h[3]=n*m+o*y,h}(N,O,(t-D)/(k-D)),E=P[0],x=P[1],S=P[2],C=P[3],A=Math.atan2(2*x*C-2*E*S,1-2*x*x-2*S*S),_=Math.asin(2*E*x+2*S*C),T=Math.atan2(2*E*C-2*x*S,1-2*E*E-2*S*S),b[0]=A/degToRads,b[1]=_/degToRads,b[2]=T/degToRads}else for(u=0;u=k?p=1:t=i&&e>=i||this._caching.lastFrame=e&&(this._caching._lastKeyframeIndex=-1,this._caching.lastIndex=0);var s=this.interpolateValue(e,this._caching);this.pv=s}return this._caching.lastFrame=e,this.pv}function a(t){var r;if("unidimensional"===this.propType)r=t*this.mult,e(this.v-r)>1e-5&&(this.v=r,this._mdf=!0);else for(var i=0,s=this.v.length;i1e-5&&(this.v[i]=r,this._mdf=!0),i+=1}function n(){if(this.elem.globalData.frameId!==this.frameId&&this.effectsSequence.length)if(this.lock)this.setVValue(this.pv);else{var t;this.lock=!0,this._mdf=this._isFirstFrame;var e=this.effectsSequence.length,r=this.kf?this.pv:this.data.k;for(t=0;t=this._maxLength&&this.doubleArrayLength(),r){case"v":a=this.v;break;case"i":a=this.i;break;case"o":a=this.o;break;default:a=[]}(!a[i]||a[i]&&!s)&&(a[i]=pointPool.newElement()),a[i][0]=t,a[i][1]=e},ShapePath.prototype.setTripleAt=function(t,e,r,i,s,a,n,o){this.setXYAt(t,e,"v",n,o),this.setXYAt(r,i,"o",n,o),this.setXYAt(s,a,"i",n,o)},ShapePath.prototype.reverse=function(){var t=new ShapePath;t.setPathData(this.c,this._length);var e=this.v,r=this.o,i=this.i,s=0;this.c&&(t.setTripleAt(e[0][0],e[0][1],i[0][0],i[0][1],r[0][0],r[0][1],0,!1),s=1);var a,n=this._length-1,o=this._length;for(a=s;a=c[c.length-1].t-this.offsetTime)i=c[c.length-1].s?c[c.length-1].s[0]:c[c.length-2].e[0],a=!0;else{for(var d,u,y,g=m,v=c.length-1,b=!0;b&&(d=c[g],!((u=c[g+1]).t-this.offsetTime>t));)g=u.t-this.offsetTime)p=1;else if(ti&&e>i)||(this._caching.lastIndex=s0||t>-1e-6&&t<0?i(1e4*t)/1e4:t}function w(){var t=this.props;return"matrix("+F(t[0])+","+F(t[1])+","+F(t[4])+","+F(t[5])+","+F(t[12])+","+F(t[13])+")"}return function(){this.reset=s,this.rotate=a,this.rotateX=n,this.rotateY=o,this.rotateZ=h,this.skew=p,this.skewFromAxis=f,this.shear=l,this.scale=m,this.setTransform=c,this.translate=d,this.transform=u,this.applyToPoint=P,this.applyToX=E,this.applyToY=x,this.applyToZ=S,this.applyToPointArray=k,this.applyToTriplePoints=T,this.applyToPointStringified=D,this.toCSS=M,this.to2dCSS=w,this.clone=v,this.cloneFromProps=b,this.equals=g,this.inversePoints=_,this.inversePoint=A,this.getInverseMatrix=C,this._t=this.transform,this.isIdentity=y,this._identity=!0,this._identityCalculated=!1,this.props=createTypedArray("float32",16),this.reset()}}();function _typeof$3(t){return _typeof$3="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},_typeof$3(t)}var lottie={},standalone="__[STANDALONE]__",animationData="__[ANIMATIONDATA]__",renderer="",queryString;function setLocation(t){setLocationHref(t)}function searchAnimations(){!0===standalone?animationManager.searchAnimations(animationData,standalone,renderer):animationManager.searchAnimations()}function setSubframeRendering(t){setSubframeEnabled(t)}function setPrefix(t){setIdPrefix(t)}function loadAnimation(t){return!0===standalone&&(t.animationData=JSON.parse(animationData)),animationManager.loadAnimation(t)}function setQuality(t){if("string"==typeof t)switch(t){case"high":setDefaultCurveSegments(200);break;default:case"medium":setDefaultCurveSegments(50);break;case"low":setDefaultCurveSegments(10)}else!isNaN(t)&&t>1&&setDefaultCurveSegments(t);getDefaultCurveSegments()>=50?roundValues(!1):roundValues(!0)}function inBrowser(){return"undefined"!=typeof navigator}function installPlugin(t,e){"expressions"===t&&setExpressionsPlugin(e)}function getFactory(t){switch(t){case"propertyFactory":return PropertyFactory;case"shapePropertyFactory":return ShapePropertyFactory;case"matrix":return Matrix;default:return null}}function checkReady(){"complete"===document.readyState&&(clearInterval(readyStateCheckInterval),searchAnimations())}function getQueryVariable(t){for(var e=queryString.split("&"),r=0;r=1?a.push({s:t-1,e:e-1}):(a.push({s:t,e:1}),a.push({s:0,e:e-1}));var n,o,h=[],l=a.length;for(n=0;ni+r))p=o.s*s<=i?0:(o.s*s-i)/r,f=o.e*s>=i+r?1:(o.e*s-i)/r,h.push([p,f])}return h.length||h.push([0,0]),h},TrimModifier.prototype.releasePathsData=function(t){var e,r=t.length;for(e=0;e1?1+a:this.s.v<0?0+a:this.s.v+a)>(r=this.e.v>1?1+a:this.e.v<0?0+a:this.e.v+a)){var n=e;e=r,r=n}e=1e-4*Math.round(1e4*e),r=1e-4*Math.round(1e4*r),this.sValue=e,this.eValue=r}else e=this.sValue,r=this.eValue;var o,h,l,p,f,m=this.shapes.length,c=0;if(r===e)for(s=0;s=0;s-=1)if((d=this.shapes[s]).shape._mdf){for((u=d.localShapeCollection).releaseShapes(),2===this.m&&m>1?(g=this.calculateShapeEdges(e,r,d.totalShapeLength,P,c),P+=d.totalShapeLength):g=[[v,b]],h=g.length,o=0;o=1?y.push({s:d.totalShapeLength*(v-1),e:d.totalShapeLength*(b-1)}):(y.push({s:d.totalShapeLength*v,e:d.totalShapeLength}),y.push({s:0,e:d.totalShapeLength*(b-1)}));var E=this.addShapes(d,y[0]);if(y[0].s!==y[0].e){if(y.length>1)if(d.shape.paths.shapes[d.shape.paths._length-1].c){var x=E.pop();this.addPaths(E,u),E=this.addShapes(d,y[1],x)}else this.addPaths(E,u),E=this.addShapes(d,y[1]);this.addPaths(E,u)}}d.shape.paths=u}}},TrimModifier.prototype.addPaths=function(t,e){var r,i=t.length;for(r=0;re.e){r.c=!1;break}e.s<=d&&e.e>=d+n.addedLength?(this.addSegment(m[i].v[s-1],m[i].o[s-1],m[i].i[s],m[i].v[s],r,o,y),y=!1):(l=bez.getNewSegment(m[i].v[s-1],m[i].v[s],m[i].o[s-1],m[i].i[s],(e.s-d)/n.addedLength,(e.e-d)/n.addedLength,h[s-1]),this.addSegmentFromArray(l,r,o,y),y=!1,r.c=!1),d+=n.addedLength,o+=1}if(m[i].c&&h.length){if(n=h[s-1],d<=e.e){var g=h[s-1].addedLength;e.s<=d&&e.e>=d+g?(this.addSegment(m[i].v[s-1],m[i].o[s-1],m[i].i[0],m[i].v[0],r,o,y),y=!1):(l=bez.getNewSegment(m[i].v[s-1],m[i].v[0],m[i].o[s-1],m[i].i[0],(e.s-d)/g,(e.e-d)/g,h[s-1]),this.addSegmentFromArray(l,r,o,y),y=!1,r.c=!1)}else r.c=!1;d+=n.addedLength,o+=1}if(r._length&&(r.setXYAt(r.v[p][0],r.v[p][1],"i",p),r.setXYAt(r.v[r._length-1][0],r.v[r._length-1][1],"o",r._length-1)),d>e.e)break;i=this.p.keyframes[this.p.keyframes.length-1].t?(i=this.p.getValueAtTime(this.p.keyframes[this.p.keyframes.length-1].t/r,0),s=this.p.getValueAtTime((this.p.keyframes[this.p.keyframes.length-1].t-.05)/r,0)):(i=this.p.pv,s=this.p.getValueAtTime((this.p._caching.lastFrame+this.p.offsetTime-.01)/r,this.p.offsetTime));else if(this.px&&this.px.keyframes&&this.py.keyframes&&this.px.getValueAtTime&&this.py.getValueAtTime){i=[],s=[];var a=this.px,n=this.py;a._caching.lastFrame+a.offsetTime<=a.keyframes[0].t?(i[0]=a.getValueAtTime((a.keyframes[0].t+.01)/r,0),i[1]=n.getValueAtTime((n.keyframes[0].t+.01)/r,0),s[0]=a.getValueAtTime(a.keyframes[0].t/r,0),s[1]=n.getValueAtTime(n.keyframes[0].t/r,0)):a._caching.lastFrame+a.offsetTime>=a.keyframes[a.keyframes.length-1].t?(i[0]=a.getValueAtTime(a.keyframes[a.keyframes.length-1].t/r,0),i[1]=n.getValueAtTime(n.keyframes[n.keyframes.length-1].t/r,0),s[0]=a.getValueAtTime((a.keyframes[a.keyframes.length-1].t-.01)/r,0),s[1]=n.getValueAtTime((n.keyframes[n.keyframes.length-1].t-.01)/r,0)):(i=[a.pv,n.pv],s[0]=a.getValueAtTime((a._caching.lastFrame+a.offsetTime-.01)/r,a.offsetTime),s[1]=n.getValueAtTime((n._caching.lastFrame+n.offsetTime-.01)/r,n.offsetTime))}else i=s=t;this.v.rotate(-Math.atan2(i[1]-s[1],i[0]-s[0]))}this.data.p&&this.data.p.s?this.data.p.z?this.v.translate(this.px.v,this.py.v,-this.pz.v):this.v.translate(this.px.v,this.py.v,0):this.v.translate(this.p.v[0],this.p.v[1],-this.p.v[2])}this.frameId=this.elem.globalData.frameId}},precalculateMatrix:function(){if(!this.a.k&&(this.pre.translate(-this.a.v[0],-this.a.v[1],this.a.v[2]),this.appliedTransformations=1,!this.s.effectsSequence.length)){if(this.pre.scale(this.s.v[0],this.s.v[1],this.s.v[2]),this.appliedTransformations=2,this.sk){if(this.sk.effectsSequence.length||this.sa.effectsSequence.length)return;this.pre.skewFromAxis(-this.sk.v,this.sa.v),this.appliedTransformations=3}this.r?this.r.effectsSequence.length||(this.pre.rotate(-this.r.v),this.appliedTransformations=4):this.rz.effectsSequence.length||this.ry.effectsSequence.length||this.rx.effectsSequence.length||this.or.effectsSequence.length||(this.pre.rotateZ(-this.rz.v).rotateY(this.ry.v).rotateX(this.rx.v).rotateZ(-this.or.v[2]).rotateY(this.or.v[1]).rotateX(this.or.v[0]),this.appliedTransformations=4)}},autoOrient:function(){}},extendPrototype([DynamicPropertyContainer],e),e.prototype.addDynamicProperty=function(t){this._addDynamicProperty(t),this.elem.addDynamicProperty(t),this._isDirty=!0},e.prototype._addDynamicProperty=DynamicPropertyContainer.prototype.addDynamicProperty,{getTransformProperty:function(t,r,i){return new e(t,r,i)}}}();function RepeaterModifier(){}function RoundCornersModifier(){}function getFontProperties(t){for(var e=t.fStyle?t.fStyle.split(" "):[],r="normal",i="normal",s=e.length,a=0;a0;)r-=1,this._elements.unshift(e[r]);this.dynamicProperties.length?this.k=!0:this.getValue(!0)},RepeaterModifier.prototype.resetElements=function(t){var e,r=t.length;for(e=0;e0?Math.floor(m):Math.ceil(m),u=this.pMatrix.props,y=this.rMatrix.props,g=this.sMatrix.props;this.pMatrix.reset(),this.rMatrix.reset(),this.sMatrix.reset(),this.tMatrix.reset(),this.matrix.reset();var v,b,P=0;if(m>0){for(;Pd;)this.applyTransforms(this.pMatrix,this.rMatrix,this.sMatrix,this.tr,1,!0),P-=1;c&&(this.applyTransforms(this.pMatrix,this.rMatrix,this.sMatrix,this.tr,-c,!0),P-=c)}for(i=1===this.data.m?0:this._currentCopies-1,s=1===this.data.m?1:-1,a=this._currentCopies;a;){if(b=(r=(e=this.elemsData[i].it)[e.length-1].transform.mProps.v.props).length,e[e.length-1].transform.mProps._mdf=!0,e[e.length-1].transform.op._mdf=!0,e[e.length-1].transform.op.v=1===this._currentCopies?this.so.v:this.so.v+(this.eo.v-this.so.v)*(i/(this._currentCopies-1)),0!==P){for((0!==i&&1===s||i!==this._currentCopies-1&&-1===s)&&this.applyTransforms(this.pMatrix,this.rMatrix,this.sMatrix,this.tr,1,!1),this.matrix.transform(y[0],y[1],y[2],y[3],y[4],y[5],y[6],y[7],y[8],y[9],y[10],y[11],y[12],y[13],y[14],y[15]),this.matrix.transform(g[0],g[1],g[2],g[3],g[4],g[5],g[6],g[7],g[8],g[9],g[10],g[11],g[12],g[13],g[14],g[15]),this.matrix.transform(u[0],u[1],u[2],u[3],u[4],u[5],u[6],u[7],u[8],u[9],u[10],u[11],u[12],u[13],u[14],u[15]),v=0;v0&&(p=!1),p){var f=createTag("style");f.setAttribute("f-forigin",i[r].fOrigin),f.setAttribute("f-origin",i[r].origin),f.setAttribute("f-family",i[r].fFamily),f.type="text/css",f.innerText="@font-face {font-family: "+i[r].fFamily+"; font-style: normal; src: url('"+i[r].fPath+"');}",e.appendChild(f)}}else if("g"===i[r].fOrigin||1===i[r].origin){for(h=document.querySelectorAll('link[f-forigin="g"], link[f-origin="1"]'),l=0;lt?!0!==this.isInRange&&(this.globalData._mdf=!0,this._mdf=!0,this.isInRange=!0,this.show()):!1!==this.isInRange&&(this.globalData._mdf=!0,this.isInRange=!1,this.hide())},renderRenderable:function(){var t,e=this.renderableComponents.length;for(t=0;t0&&(this.maskElement.setAttribute("id",y),this.element.maskedElement.setAttribute(v,"url("+getLocationHref()+"#"+y+")"),a.appendChild(this.maskElement)),this.viewData.length&&this.element.addRenderableComponent(this)}FootageElement.prototype.prepareFrame=function(){},extendPrototype([RenderableElement,BaseElement,FrameElement],FootageElement),FootageElement.prototype.getBaseElement=function(){return null},FootageElement.prototype.renderFrame=function(){},FootageElement.prototype.destroy=function(){},FootageElement.prototype.initExpressions=function(){this.layerInterface=FootageInterface(this)},FootageElement.prototype.getFootageData=function(){return this.footageData},AudioElement.prototype.prepareFrame=function(t){if(this.prepareRenderableFrame(t,!0),this.prepareProperties(t,!0),this.tm._placeholder)this._currentTime=t/this.data.sr;else{var e=this.tm.v;this._currentTime=e}},extendPrototype([RenderableElement,BaseElement,FrameElement],AudioElement),AudioElement.prototype.renderFrame=function(){this.isInRange&&this._canPlay&&(this._isPlaying?(!this.audio.playing()||Math.abs(this._currentTime/this.globalData.frameRate-this.audio.seek())>.1)&&this.audio.seek(this._currentTime/this.globalData.frameRate):(this.audio.play(),this.audio.seek(this._currentTime/this.globalData.frameRate),this._isPlaying=!0))},AudioElement.prototype.show=function(){},AudioElement.prototype.hide=function(){this.audio.pause(),this._isPlaying=!1},AudioElement.prototype.pause=function(){this.audio.pause(),this._isPlaying=!1,this._canPlay=!1},AudioElement.prototype.resume=function(){this._canPlay=!0},AudioElement.prototype.setRate=function(t){this.audio.rate(t)},AudioElement.prototype.volume=function(t){this.audio.volume(t)},AudioElement.prototype.getBaseElement=function(){return null},AudioElement.prototype.destroy=function(){},AudioElement.prototype.sourceRectAtTime=function(){},AudioElement.prototype.initExpressions=function(){},BaseRenderer.prototype.checkLayers=function(t){var e,r,i=this.layers.length;for(this.completeLayers=!0,e=i-1;e>=0;e-=1)this.elements[e]||(r=this.layers[e]).ip-r.st<=t-this.layers[e].st&&r.op-r.st>t-this.layers[e].st&&this.buildItem(e),this.completeLayers=!!this.elements[e]&&this.completeLayers;this.checkPendingElements()},BaseRenderer.prototype.createItem=function(t){switch(t.ty){case 2:return this.createImage(t);case 0:return this.createComp(t);case 1:return this.createSolid(t);case 3:default:return this.createNull(t);case 4:return this.createShape(t);case 5:return this.createText(t);case 6:return this.createAudio(t);case 13:return this.createCamera(t);case 15:return this.createFootage(t)}},BaseRenderer.prototype.createCamera=function(){throw new Error("You're using a 3d camera. Try the html renderer.")},BaseRenderer.prototype.createAudio=function(t){return new AudioElement(t,this.globalData,this)},BaseRenderer.prototype.createFootage=function(t){return new FootageElement(t,this.globalData,this)},BaseRenderer.prototype.buildAllItems=function(){var t,e=this.layers.length;for(t=0;t1&&(a+=" C"+e.o[i-1][0]+","+e.o[i-1][1]+" "+e.i[0][0]+","+e.i[0][1]+" "+e.v[0][0]+","+e.v[0][1]),r.lastPath!==a){var n="";r.elem&&(e.c&&(n=t.inv?this.solidPath+a:a),r.elem.setAttribute("d",n)),r.lastPath=a}},MaskElement.prototype.destroy=function(){this.element=null,this.globalData=null,this.maskElement=null,this.data=null,this.masksProperties=null};var filtersFactory=function(){var t={};return t.createFilter=function(t,e){var r=createNS("filter");r.setAttribute("id",t),!0!==e&&(r.setAttribute("filterUnits","objectBoundingBox"),r.setAttribute("x","0%"),r.setAttribute("y","0%"),r.setAttribute("width","100%"),r.setAttribute("height","100%"));return r},t.createAlphaToLuminanceFilter=function(){var t=createNS("feColorMatrix");return t.setAttribute("type","matrix"),t.setAttribute("color-interpolation-filters","sRGB"),t.setAttribute("values","0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 1"),t},t}(),featureSupport=function(){var t={maskType:!0};return(/MSIE 10/i.test(navigator.userAgent)||/MSIE 9/i.test(navigator.userAgent)||/rv:11.0/i.test(navigator.userAgent)||/Edge\/\d./i.test(navigator.userAgent))&&(t.maskType=!1),t}();function SVGTintFilter(t,e){this.filterManager=e;var r=createNS("feColorMatrix");if(r.setAttribute("type","matrix"),r.setAttribute("color-interpolation-filters","linearRGB"),r.setAttribute("values","0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0"),r.setAttribute("result","f1"),t.appendChild(r),(r=createNS("feColorMatrix")).setAttribute("type","matrix"),r.setAttribute("color-interpolation-filters","sRGB"),r.setAttribute("values","1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"),r.setAttribute("result","f2"),t.appendChild(r),this.matrixFilter=r,100!==e.effectElements[2].p.v||e.effectElements[2].p.k){var i,s=createNS("feMerge");t.appendChild(s),(i=createNS("feMergeNode")).setAttribute("in","SourceGraphic"),s.appendChild(i),(i=createNS("feMergeNode")).setAttribute("in","f2"),s.appendChild(i)}}function SVGFillFilter(t,e){this.filterManager=e;var r=createNS("feColorMatrix");r.setAttribute("type","matrix"),r.setAttribute("color-interpolation-filters","sRGB"),r.setAttribute("values","1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0"),t.appendChild(r),this.matrixFilter=r}function SVGStrokeEffect(t,e){this.initialized=!1,this.filterManager=e,this.elem=t,this.paths=[]}function SVGTritoneFilter(t,e){this.filterManager=e;var r=createNS("feColorMatrix");r.setAttribute("type","matrix"),r.setAttribute("color-interpolation-filters","linearRGB"),r.setAttribute("values","0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0"),r.setAttribute("result","f1"),t.appendChild(r);var i=createNS("feComponentTransfer");i.setAttribute("color-interpolation-filters","sRGB"),t.appendChild(i),this.matrixFilter=i;var s=createNS("feFuncR");s.setAttribute("type","table"),i.appendChild(s),this.feFuncR=s;var a=createNS("feFuncG");a.setAttribute("type","table"),i.appendChild(a),this.feFuncG=a;var n=createNS("feFuncB");n.setAttribute("type","table"),i.appendChild(n),this.feFuncB=n}function SVGProLevelsFilter(t,e){this.filterManager=e;var r=this.filterManager.effectElements,i=createNS("feComponentTransfer");(r[10].p.k||0!==r[10].p.v||r[11].p.k||1!==r[11].p.v||r[12].p.k||1!==r[12].p.v||r[13].p.k||0!==r[13].p.v||r[14].p.k||1!==r[14].p.v)&&(this.feFuncR=this.createFeFunc("feFuncR",i)),(r[17].p.k||0!==r[17].p.v||r[18].p.k||1!==r[18].p.v||r[19].p.k||1!==r[19].p.v||r[20].p.k||0!==r[20].p.v||r[21].p.k||1!==r[21].p.v)&&(this.feFuncG=this.createFeFunc("feFuncG",i)),(r[24].p.k||0!==r[24].p.v||r[25].p.k||1!==r[25].p.v||r[26].p.k||1!==r[26].p.v||r[27].p.k||0!==r[27].p.v||r[28].p.k||1!==r[28].p.v)&&(this.feFuncB=this.createFeFunc("feFuncB",i)),(r[31].p.k||0!==r[31].p.v||r[32].p.k||1!==r[32].p.v||r[33].p.k||1!==r[33].p.v||r[34].p.k||0!==r[34].p.v||r[35].p.k||1!==r[35].p.v)&&(this.feFuncA=this.createFeFunc("feFuncA",i)),(this.feFuncR||this.feFuncG||this.feFuncB||this.feFuncA)&&(i.setAttribute("color-interpolation-filters","sRGB"),t.appendChild(i),i=createNS("feComponentTransfer")),(r[3].p.k||0!==r[3].p.v||r[4].p.k||1!==r[4].p.v||r[5].p.k||1!==r[5].p.v||r[6].p.k||0!==r[6].p.v||r[7].p.k||1!==r[7].p.v)&&(i.setAttribute("color-interpolation-filters","sRGB"),t.appendChild(i),this.feFuncRComposed=this.createFeFunc("feFuncR",i),this.feFuncGComposed=this.createFeFunc("feFuncG",i),this.feFuncBComposed=this.createFeFunc("feFuncB",i))}function SVGDropShadowEffect(t,e){var r=e.container.globalData.renderConfig.filterSize;t.setAttribute("x",r.x),t.setAttribute("y",r.y),t.setAttribute("width",r.width),t.setAttribute("height",r.height),this.filterManager=e;var i=createNS("feGaussianBlur");i.setAttribute("in","SourceAlpha"),i.setAttribute("result","drop_shadow_1"),i.setAttribute("stdDeviation","0"),this.feGaussianBlur=i,t.appendChild(i);var s=createNS("feOffset");s.setAttribute("dx","25"),s.setAttribute("dy","0"),s.setAttribute("in","drop_shadow_1"),s.setAttribute("result","drop_shadow_2"),this.feOffset=s,t.appendChild(s);var a=createNS("feFlood");a.setAttribute("flood-color","#00ff00"),a.setAttribute("flood-opacity","1"),a.setAttribute("result","drop_shadow_3"),this.feFlood=a,t.appendChild(a);var n=createNS("feComposite");n.setAttribute("in","drop_shadow_3"),n.setAttribute("in2","drop_shadow_2"),n.setAttribute("operator","in"),n.setAttribute("result","drop_shadow_4"),t.appendChild(n);var o,h=createNS("feMerge");t.appendChild(h),o=createNS("feMergeNode"),h.appendChild(o),(o=createNS("feMergeNode")).setAttribute("in","SourceGraphic"),this.feMergeNode=o,this.feMerge=h,this.originalNodeAdded=!1,h.appendChild(o)}SVGTintFilter.prototype.renderFrame=function(t){if(t||this.filterManager._mdf){var e=this.filterManager.effectElements[0].p.v,r=this.filterManager.effectElements[1].p.v,i=this.filterManager.effectElements[2].p.v/100;this.matrixFilter.setAttribute("values",r[0]-e[0]+" 0 0 0 "+e[0]+" "+(r[1]-e[1])+" 0 0 0 "+e[1]+" "+(r[2]-e[2])+" 0 0 0 "+e[2]+" 0 0 0 "+i+" 0")}},SVGFillFilter.prototype.renderFrame=function(t){if(t||this.filterManager._mdf){var e=this.filterManager.effectElements[2].p.v,r=this.filterManager.effectElements[6].p.v;this.matrixFilter.setAttribute("values","0 0 0 0 "+e[0]+" 0 0 0 0 "+e[1]+" 0 0 0 0 "+e[2]+" 0 0 0 "+r+" 0")}},SVGStrokeEffect.prototype.initialize=function(){var t,e,r,i,s=this.elem.layerElement.children||this.elem.layerElement.childNodes;for(1===this.filterManager.effectElements[1].p.v?(i=this.elem.maskManager.masksProperties.length,r=0):i=(r=this.filterManager.effectElements[0].p.v-1)+1,(e=createNS("g")).setAttribute("fill","none"),e.setAttribute("stroke-linecap","round"),e.setAttribute("stroke-dashoffset",1);r=l?c<0?i:s:i+m*Math.pow((a-t)/c,1/r),p[f]=n,f+=1,o+=256/255;return p.join(" ")},SVGProLevelsFilter.prototype.renderFrame=function(t){if(t||this.filterManager._mdf){var e,r=this.filterManager.effectElements;this.feFuncRComposed&&(t||r[3].p._mdf||r[4].p._mdf||r[5].p._mdf||r[6].p._mdf||r[7].p._mdf)&&(e=this.getTableValue(r[3].p.v,r[4].p.v,r[5].p.v,r[6].p.v,r[7].p.v),this.feFuncRComposed.setAttribute("tableValues",e),this.feFuncGComposed.setAttribute("tableValues",e),this.feFuncBComposed.setAttribute("tableValues",e)),this.feFuncR&&(t||r[10].p._mdf||r[11].p._mdf||r[12].p._mdf||r[13].p._mdf||r[14].p._mdf)&&(e=this.getTableValue(r[10].p.v,r[11].p.v,r[12].p.v,r[13].p.v,r[14].p.v),this.feFuncR.setAttribute("tableValues",e)),this.feFuncG&&(t||r[17].p._mdf||r[18].p._mdf||r[19].p._mdf||r[20].p._mdf||r[21].p._mdf)&&(e=this.getTableValue(r[17].p.v,r[18].p.v,r[19].p.v,r[20].p.v,r[21].p.v),this.feFuncG.setAttribute("tableValues",e)),this.feFuncB&&(t||r[24].p._mdf||r[25].p._mdf||r[26].p._mdf||r[27].p._mdf||r[28].p._mdf)&&(e=this.getTableValue(r[24].p.v,r[25].p.v,r[26].p.v,r[27].p.v,r[28].p.v),this.feFuncB.setAttribute("tableValues",e)),this.feFuncA&&(t||r[31].p._mdf||r[32].p._mdf||r[33].p._mdf||r[34].p._mdf||r[35].p._mdf)&&(e=this.getTableValue(r[31].p.v,r[32].p.v,r[33].p.v,r[34].p.v,r[35].p.v),this.feFuncA.setAttribute("tableValues",e))}},SVGDropShadowEffect.prototype.renderFrame=function(t){if(t||this.filterManager._mdf){if((t||this.filterManager.effectElements[4].p._mdf)&&this.feGaussianBlur.setAttribute("stdDeviation",this.filterManager.effectElements[4].p.v/4),t||this.filterManager.effectElements[0].p._mdf){var e=this.filterManager.effectElements[0].p.v;this.feFlood.setAttribute("flood-color",rgbToHex(Math.round(255*e[0]),Math.round(255*e[1]),Math.round(255*e[2])))}if((t||this.filterManager.effectElements[1].p._mdf)&&this.feFlood.setAttribute("flood-opacity",this.filterManager.effectElements[1].p.v/255),t||this.filterManager.effectElements[2].p._mdf||this.filterManager.effectElements[3].p._mdf){var r=this.filterManager.effectElements[3].p.v,i=(this.filterManager.effectElements[2].p.v-90)*degToRads,s=r*Math.cos(i),a=r*Math.sin(i);this.feOffset.setAttribute("dx",s),this.feOffset.setAttribute("dy",a)}}};var _svgMatteSymbols=[];function SVGMatte3Effect(t,e,r){this.initialized=!1,this.filterManager=e,this.filterElem=t,this.elem=r,r.matteElement=createNS("g"),r.matteElement.appendChild(r.layerElement),r.matteElement.appendChild(r.transformedElement),r.baseElement=r.matteElement}function SVGGaussianBlurEffect(t,e){t.setAttribute("x","-100%"),t.setAttribute("y","-100%"),t.setAttribute("width","300%"),t.setAttribute("height","300%"),this.filterManager=e;var r=createNS("feGaussianBlur");t.appendChild(r),this.feGaussianBlur=r}SVGMatte3Effect.prototype.findSymbol=function(t){for(var e=0,r=_svgMatteSymbols.length;e=0&&!this.shapeModifiers[t].processShapes(this._isFirstFrame);t-=1);}},searchProcessedElement:function(t){for(var e=this.processedElements,r=0,i=e.length;r.01)return!1;r+=1}return!0},GradientProperty.prototype.checkCollapsable=function(){if(this.o.length/2!=this.c.length/4)return!1;if(this.data.k.k[0].s)for(var t=0,e=this.data.k.k.length;t0;)h=i.transformers[u].mProps._mdf||h,d-=1,u-=1;if(h)for(d=g-i.styles[p].lvl,u=i.transformers.length-1;d>0;)c=i.transformers[u].mProps.v.props,m.transform(c[0],c[1],c[2],c[3],c[4],c[5],c[6],c[7],c[8],c[9],c[10],c[11],c[12],c[13],c[14],c[15]),d-=1,u-=1}else m=t;if(n=(f=i.sh.paths)._length,h){for(o="",a=0;a=1?v=.99:v<=-1&&(v=-.99);var b=o*v,P=Math.cos(g+e.a.v)*b+p[0],E=Math.sin(g+e.a.v)*b+p[1];h.setAttribute("fx",P),h.setAttribute("fy",E),l&&!e.g._collapsable&&(e.of.setAttribute("fx",P),e.of.setAttribute("fy",E))}}function h(t,e,r){var i=e.style,s=e.d;s&&(s._mdf||r)&&s.dashStr&&(i.pElem.setAttribute("stroke-dasharray",s.dashStr),i.pElem.setAttribute("stroke-dashoffset",s.dashoffset[0])),e.c&&(e.c._mdf||r)&&i.pElem.setAttribute("stroke","rgb("+bmFloor(e.c.v[0])+","+bmFloor(e.c.v[1])+","+bmFloor(e.c.v[2])+")"),(e.o._mdf||r)&&i.pElem.setAttribute("stroke-opacity",e.o.v),(e.w._mdf||r)&&(i.pElem.setAttribute("stroke-width",e.w.v),i.msElem&&i.msElem.setAttribute("stroke-width",e.w.v))}return{createRenderFunction:function(t){switch(t.ty){case"fl":return a;case"gf":return o;case"gs":return n;case"st":return h;case"sh":case"el":case"rc":case"sr":return s;case"tr":return r;case"no":return i;default:return null}}}}();function SVGShapeElement(t,e,r){this.shapes=[],this.shapesData=t.shapes,this.stylesList=[],this.shapeModifiers=[],this.itemsData=[],this.processedElements=[],this.animatedContents=[],this.initElement(t,e,r),this.prevViewData=[]}function LetterProps(t,e,r,i,s,a){this.o=t,this.sw=e,this.sc=r,this.fc=i,this.m=s,this.p=a,this._mdf={o:!0,sw:!!e,sc:!!r,fc:!!i,m:!0,p:!0}}function TextProperty(t,e){this._frameId=initialDefaultFrame,this.pv="",this.v="",this.kf=!1,this._isFirstFrame=!0,this._mdf=!1,this.data=e,this.elem=t,this.comp=this.elem.comp,this.keysIndex=0,this.canResize=!1,this.minimumFontSize=1,this.effectsSequence=[],this.currentData={ascent:0,boxWidth:this.defaultBoxWidth,f:"",fStyle:"",fWeight:"",fc:"",j:"",justifyOffset:"",l:[],lh:0,lineWidths:[],ls:"",of:"",s:"",sc:"",sw:0,t:0,tr:0,sz:0,ps:null,fillColorAnim:!1,strokeColorAnim:!1,strokeWidthAnim:!1,yOffset:0,finalSize:0,finalText:[],finalLineHeight:0,__complete:!1},this.copyData(this.currentData,this.data.d.k[0].s),this.searchProperty()||this.completeTextData(this.currentData)}extendPrototype([BaseElement,TransformElement,SVGBaseElement,IShapeElement,HierarchyElement,FrameElement,RenderableDOMElement],SVGShapeElement),SVGShapeElement.prototype.initSecondaryElement=function(){},SVGShapeElement.prototype.identityMatrix=new Matrix,SVGShapeElement.prototype.buildExpressionInterface=function(){},SVGShapeElement.prototype.createContent=function(){this.searchShapes(this.shapesData,this.itemsData,this.prevViewData,this.layerElement,0,[],!0),this.filterUniqueShapes()},SVGShapeElement.prototype.filterUniqueShapes=function(){var t,e,r,i,s=this.shapes.length,a=this.stylesList.length,n=[],o=!1;for(r=0;r1&&o&&this.setShapesAsAnimated(n)}},SVGShapeElement.prototype.setShapesAsAnimated=function(t){var e,r=t.length;for(e=0;e=0;o-=1){if((m=this.searchProcessedElement(t[o]))?e[o]=r[m-1]:t[o]._render=n,"fl"===t[o].ty||"st"===t[o].ty||"gf"===t[o].ty||"gs"===t[o].ty||"no"===t[o].ty)m?e[o].style.closed=!1:e[o]=this.createStyleElement(t[o],s),t[o]._render&&e[o].style.pElem.parentNode!==i&&i.appendChild(e[o].style.pElem),u.push(e[o].style);else if("gr"===t[o].ty){if(m)for(l=e[o].it.length,h=0;h1,this.kf&&this.addEffect(this.getKeyframeValue.bind(this)),this.kf},TextProperty.prototype.addEffect=function(t){this.effectsSequence.push(t),this.elem.addDynamicProperty(this)},TextProperty.prototype.getValue=function(t){if(this.elem.globalData.frameId!==this.frameId&&this.effectsSequence.length||t){this.currentData.t=this.data.d.k[this.keysIndex].s.t;var e=this.currentData,r=this.keysIndex;if(this.lock)this.setCurrentData(this.currentData);else{var i;this.lock=!0,this._mdf=!1;var s=this.effectsSequence.length,a=t||this.data.d.k[this.keysIndex].s;for(i=0;ie);)r+=1;return this.keysIndex!==r&&(this.keysIndex=r),this.data.d.k[this.keysIndex].s},TextProperty.prototype.buildFinalText=function(t){for(var e,r,i=[],s=0,a=t.length,n=!1;s=55296&&e<=56319?(r=t.charCodeAt(s+1))>=56320&&r<=57343?(n||FontManager.isModifier(e,r)?(i[i.length-1]+=t.substr(s,2),n=!1):i.push(t.substr(s,2)),s+=1):i.push(t.charAt(s)):e>56319?(r=t.charCodeAt(s+1),FontManager.isZeroWidthJoiner(e,r)?(n=!0,i[i.length-1]+=t.substr(s,2),s+=1):i.push(t.charAt(s))):FontManager.isZeroWidthJoiner(e)?(i[i.length-1]+=t.charAt(s),n=!0):i.push(t.charAt(s)),s+=1;return i},TextProperty.prototype.completeTextData=function(t){t.__complete=!0;var e,r,i,s,a,n,o,h=this.elem.globalData.fontManager,l=this.data,p=[],f=0,m=l.m.g,c=0,d=0,u=0,y=[],g=0,v=0,b=h.getFontByName(t.f),P=0,E=getFontProperties(b);t.fWeight=E.weight,t.fStyle=E.style,t.finalSize=t.s,t.finalText=this.buildFinalText(t.t),r=t.finalText.length,t.finalLineHeight=t.lh;var x,S=t.tr/1e3*t.finalSize;if(t.sz)for(var C,A,_=!0,T=t.sz[0],k=t.sz[1];_;){C=0,g=0,r=(A=this.buildFinalText(t.t)).length,S=t.tr/1e3*t.finalSize;var D=-1;for(e=0;eT&&" "!==A[e]?(-1===D?r+=1:e=D,C+=t.finalLineHeight||1.2*t.finalSize,A.splice(e,D===e?1:0,"\r"),D=-1,g=0):(g+=P,g+=S);C+=b.ascent*t.finalSize/100,this.canResize&&t.finalSize>this.minimumFontSize&&kv?g:v,g=-2*S,s="",i=!0,u+=1):s=M,h.chars?(o=h.getCharData(M,b.fStyle,h.getFontByName(t.f).fFamily),P=i?0:o.w*t.finalSize/100):P=h.measureText(s,t.f,t.finalSize)," "===M?F+=P+S:(g+=P+S+F,F=0),p.push({l:P,an:P,add:c,n:i,anIndexes:[],val:s,line:u,animatorJustifyOffset:0}),2==m){if(c+=P,""===s||" "===s||e===r-1){for(""!==s&&" "!==s||(c-=P);d<=e;)p[d].an=c,p[d].ind=f,p[d].extra=P,d+=1;f+=1,c=0}}else if(3==m){if(c+=P,""===s||e===r-1){for(""===s&&(c-=P);d<=e;)p[d].an=c,p[d].ind=f,p[d].extra=P,d+=1;c=0,f+=1}}else p[f].ind=f,p[f].extra=0,f+=1;if(t.l=p,v=g>v?g:v,y.push(g),t.sz)t.boxWidth=t.sz[0],t.justifyOffset=0;else switch(t.boxWidth=v,t.j){case 1:t.justifyOffset=-t.boxWidth;break;case 2:t.justifyOffset=-t.boxWidth/2;break;default:t.justifyOffset=0}t.lineWidths=y;var w,I,V,B,R=l.a;n=R.length;var L=[];for(a=0;a0?s=this.ne.v/100:a=-this.ne.v/100,this.xe.v>0?n=1-this.xe.v/100:o=1+this.xe.v/100;var h=BezierFactory.getBezierEasing(s,a,n,o).get,l=0,p=this.finalS,f=this.finalE,m=this.data.sh;if(2===m)l=h(l=f===p?i>=f?1:0:t(0,e(.5/(f-p)+(i-p)/(f-p),1)));else if(3===m)l=h(l=f===p?i>=f?0:1:1-t(0,e(.5/(f-p)+(i-p)/(f-p),1)));else if(4===m)f===p?l=0:(l=t(0,e(.5/(f-p)+(i-p)/(f-p),1)))<.5?l*=2:l=1-2*(l-.5),l=h(l);else if(5===m){if(f===p)l=0;else{var c=f-p,d=-c/2+(i=e(t(0,i+.5-p),f-p)),u=c/2;l=Math.sqrt(1-d*d/(u*u))}l=h(l)}else 6===m?(f===p?l=0:(i=e(t(0,i+.5-p),f-p),l=(1+Math.cos(Math.PI+2*Math.PI*i/(f-p)))/2),l=h(l)):(i>=r(p)&&(l=t(0,e(i-p<0?e(f,1)-(p-i):f-i,1))),l=h(l));if(100!==this.sm.v){var y=.01*this.sm.v;0===y&&(y=1e-8);var g=.5-.5*y;l1&&(l=1)}return l*this.a.v},getValue:function(t){this.iterateDynamicProperties(),this._mdf=t||this._mdf,this._currentTextLength=this.elem.textProperty.currentData.l.length||0,t&&2===this.data.r&&(this.e.v=this._currentTextLength);var e=2===this.data.r?1:100/this.data.totalChars,r=this.o.v/e,i=this.s.v/e+r,s=this.e.v/e+r;if(i>s){var a=i;i=s,s=a}this.finalS=i,this.finalE=s}},extendPrototype([DynamicPropertyContainer],i),{getTextSelectorProp:function(t,e,r){return new i(t,e,r)}}}();function TextAnimatorDataProperty(t,e,r){var i={propType:!1},s=PropertyFactory.getProp,a=e.a;this.a={r:a.r?s(t,a.r,0,degToRads,r):i,rx:a.rx?s(t,a.rx,0,degToRads,r):i,ry:a.ry?s(t,a.ry,0,degToRads,r):i,sk:a.sk?s(t,a.sk,0,degToRads,r):i,sa:a.sa?s(t,a.sa,0,degToRads,r):i,s:a.s?s(t,a.s,1,.01,r):i,a:a.a?s(t,a.a,1,0,r):i,o:a.o?s(t,a.o,0,.01,r):i,p:a.p?s(t,a.p,1,0,r):i,sw:a.sw?s(t,a.sw,0,0,r):i,sc:a.sc?s(t,a.sc,1,0,r):i,fc:a.fc?s(t,a.fc,1,0,r):i,fh:a.fh?s(t,a.fh,0,0,r):i,fs:a.fs?s(t,a.fs,0,.01,r):i,fb:a.fb?s(t,a.fb,0,.01,r):i,t:a.t?s(t,a.t,0,0,r):i},this.s=TextSelectorProp.getTextSelectorProp(t,e.s,r),this.s.t=e.s.t}function TextAnimatorProperty(t,e,r){this._isFirstFrame=!0,this._hasMaskedPath=!1,this._frameId=-1,this._textData=t,this._renderType=e,this._elem=r,this._animatorsData=createSizedArray(this._textData.a.length),this._pathData={},this._moreOptions={alignment:{}},this.renderedLetters=[],this.lettersChangedFlag=!1,this.initDynamicPropertyContainer(r)}function ITextElement(){}TextAnimatorProperty.prototype.searchProperties=function(){var t,e,r=this._textData.a.length,i=PropertyFactory.getProp;for(t=0;t=o+ot||!d?(v=(o+ot-l)/h.partialLength,G=c.point[0]+(h.point[0]-c.point[0])*v,z=c.point[1]+(h.point[1]-c.point[1])*v,C.translate(-E[0]*T[s].an*.005,-E[1]*B*.01),p=!1):d&&(l+=h.partialLength,(f+=1)>=d.length&&(f=0,u[m+=1]?d=u[m].points:P.v.c?(f=0,d=u[m=0].points):(l-=h.partialLength,d=null)),d&&(c=h,y=(h=d[f]).partialLength));L=T[s].an/2-T[s].add,C.translate(-L,0,0)}else L=T[s].an/2-T[s].add,C.translate(-L,0,0),C.translate(-E[0]*T[s].an*.005,-E[1]*B*.01,0);for(F=0;Ft?this.textSpans[t].span:createNS(h?"g":"text"),y<=t){if(n.setAttribute("stroke-linecap","butt"),n.setAttribute("stroke-linejoin","round"),n.setAttribute("stroke-miterlimit","4"),this.textSpans[t].span=n,h){var g=createNS("g");n.appendChild(g),this.textSpans[t].childSpan=g}this.textSpans[t].span=n,this.layerElement.appendChild(n)}n.style.display="inherit"}if(l.reset(),l.scale(r.finalSize/100,r.finalSize/100),p&&(o[t].n&&(f=-d,m+=r.yOffset,m+=c?1:0,c=!1),this.applyTextPropertiesToMatrix(r,l,o[t].line,f,m),f+=o[t].l||0,f+=d),h){var v;if(1===(u=this.globalData.fontManager.getCharData(r.finalText[t],i.fStyle,this.globalData.fontManager.getFontByName(r.f).fFamily)).t)v=new SVGCompElement(u.data,this.globalData,this);else{var b=emptyShapeData;u.data&&u.data.shapes&&(b=u.data),v=new SVGShapeElement(b,this.globalData,this)}this.textSpans[t].glyph=v,v._debug=!0,v.prepareFrame(0),v.renderFrame(),this.textSpans[t].childSpan.appendChild(v.layerElement),this.textSpans[t].childSpan.setAttribute("transform","scale("+r.finalSize/100+","+r.finalSize/100+")")}else p&&n.setAttribute("transform","translate("+l.props[12]+","+l.props[13]+")"),n.textContent=o[t].val,n.setAttributeNS("http://www.w3.org/XML/1998/namespace","xml:space","preserve")}p&&n&&n.setAttribute("d","")}else{var P=this.textContainer,E="start";switch(r.j){case 1:E="end";break;case 2:E="middle";break;default:E="start"}P.setAttribute("text-anchor",E),P.setAttribute("letter-spacing",d);var x=this.buildTextContents(r.finalText);for(e=x.length,m=r.ps?r.ps[1]+r.ascent:0,t=0;t=0;e-=1)(this.completeLayers||this.elements[e])&&this.elements[e].prepareFrame(t-this.layers[e].st);if(this.globalData._mdf)for(e=0;e=0;r-=1)(this.completeLayers||this.elements[r])&&(this.elements[r].prepareFrame(this.renderedFrame-this.layers[r].st),this.elements[r]._mdf&&(this._mdf=!0))}},ICompElement.prototype.renderInnerContent=function(){var t,e=this.layers.length;for(t=0;t=0;i-=1)r=t.transforms[i].transform.mProps.v.props,t.finalTransform.transform(r[0],r[1],r[2],r[3],r[4],r[5],r[6],r[7],r[8],r[9],r[10],r[11],r[12],r[13],r[14],r[15]);t._mdf=a},processSequences:function(t){var e,r=this.sequenceList.length;for(e=0;e=0;a-=1){if((h=this.searchProcessedElement(t[a]))?e[a]=r[h-1]:t[a]._shouldRender=i,"fl"===t[a].ty||"st"===t[a].ty||"gf"===t[a].ty||"gs"===t[a].ty)h?e[a].style.closed=!1:e[a]=this.createStyleElement(t[a],d),m.push(e[a].style);else if("gr"===t[a].ty){if(h)for(o=e[a].it.length,n=0;n=0;s-=1)"tr"===e[s].ty?(a=r[s].transform,this.renderShapeTransform(t,a)):"sh"===e[s].ty||"el"===e[s].ty||"rc"===e[s].ty||"sr"===e[s].ty?this.renderPath(e[s],r[s]):"fl"===e[s].ty?this.renderFill(e[s],r[s],a):"st"===e[s].ty?this.renderStroke(e[s],r[s],a):"gf"===e[s].ty||"gs"===e[s].ty?this.renderGradientFill(e[s],r[s],a):"gr"===e[s].ty?this.renderShape(a,e[s].it,r[s].it):e[s].ty;i&&this.drawLayer()},CVShapeElement.prototype.renderStyledShape=function(t,e){if(this._isFirstFrame||e._mdf||t.transforms._mdf){var r,i,s,a=t.trNodes,n=e.paths,o=n._length;a.length=0;var h=t.transforms.finalTransform;for(s=0;s=1?f=.99:f<=-1&&(f=-.99);var m=l*f,c=Math.cos(p+e.a.v)*m+o[0],d=Math.sin(p+e.a.v)*m+o[1];i=n.createRadialGradient(c,d,0,o[0],o[1],l)}var u=t.g.p,y=e.g.c,g=1;for(a=0;ao&&"xMidYMid slice"===h||nr&&"meet"===a||ir&&"slice"===a)?(t-this.transformCanvas.w*(e/this.transformCanvas.h))/2*this.renderConfig.dpr:"xMax"===o&&(ir&&"slice"===a)?(t-this.transformCanvas.w*(e/this.transformCanvas.h))*this.renderConfig.dpr:0,this.transformCanvas.ty="YMid"===h&&(i>r&&"meet"===a||ir&&"meet"===a||i=0;t-=1)this.elements[t]&&this.elements[t].destroy();this.elements.length=0,this.globalData.canvasContext=null,this.animationItem.container=null,this.destroyed=!0},CanvasRendererBase.prototype.renderFrame=function(t,e){if((this.renderedFrame!==t||!0!==this.renderConfig.clearCanvas||e)&&!this.destroyed&&-1!==t){var r;this.renderedFrame=t,this.globalData.frameNum=t-this.animationItem._isFirstFrame,this.globalData.frameId+=1,this.globalData._mdf=!this.renderConfig.clearCanvas||e,this.globalData.projectInterface.currentFrame=t;var i=this.layers.length;for(this.completeLayers||this.checkLayers(t),r=0;r=0;r-=1)(this.completeLayers||this.elements[r])&&this.elements[r].renderFrame();!0!==this.renderConfig.clearCanvas&&this.restore()}}},CanvasRendererBase.prototype.buildItem=function(t){var e=this.elements;if(!e[t]&&99!==this.layers[t].ty){var r=this.createItem(this.layers[t],this,this.globalData);e[t]=r,r.initExpressions()}},CanvasRendererBase.prototype.checkPendingElements=function(){for(;this.pendingElements.length;){this.pendingElements.pop().checkParenting()}},CanvasRendererBase.prototype.hide=function(){this.animationItem.container.style.display="none"},CanvasRendererBase.prototype.show=function(){this.animationItem.container.style.display="block"},extendPrototype([CanvasRendererBase,ICompElement,CVBaseElement],CVCompElement),CVCompElement.prototype.renderInnerContent=function(){var t,e=this.canvasContext;for(e.beginPath(),e.moveTo(0,0),e.lineTo(this.data.w,0),e.lineTo(this.data.w,this.data.h),e.lineTo(0,this.data.h),e.lineTo(0,0),e.clip(),t=this.layers.length-1;t>=0;t-=1)(this.completeLayers||this.elements[t])&&this.elements[t].renderFrame()},CVCompElement.prototype.destroy=function(){var t;for(t=this.layers.length-1;t>=0;t-=1)this.elements[t]&&this.elements[t].destroy();this.layers=null,this.elements=null},CVCompElement.prototype.createComp=function(t){return new CVCompElement(t,this.globalData,this)},extendPrototype([CanvasRendererBase],CanvasRenderer),CanvasRenderer.prototype.createComp=function(t){return new CVCompElement(t,this.globalData,this)},HBaseElement.prototype={checkBlendMode:function(){},initRendererElement:function(){this.baseElement=createTag(this.data.tg||"div"),this.data.hasMask?(this.svgElement=createNS("svg"),this.layerElement=createNS("g"),this.maskedElement=this.layerElement,this.svgElement.appendChild(this.layerElement),this.baseElement.appendChild(this.svgElement)):this.layerElement=this.baseElement,styleDiv(this.baseElement)},createContainerElements:function(){this.renderableEffectsManager=new CVEffects(this),this.transformedElement=this.baseElement,this.maskedElement=this.layerElement,this.data.ln&&this.layerElement.setAttribute("id",this.data.ln),this.data.cl&&this.layerElement.setAttribute("class",this.data.cl),0!==this.data.bm&&this.setBlendMode()},renderElement:function(){var t=this.transformedElement?this.transformedElement.style:{};if(this.finalTransform._matMdf){var e=this.finalTransform.mat.toCSS();t.transform=e,t.webkitTransform=e}this.finalTransform._opMdf&&(t.opacity=this.finalTransform.mProp.o.v)},renderFrame:function(){this.data.hd||this.hidden||(this.renderTransform(),this.renderRenderable(),this.renderElement(),this.renderInnerContent(),this._isFirstFrame&&(this._isFirstFrame=!1))},destroy:function(){this.layerElement=null,this.transformedElement=null,this.matteElement&&(this.matteElement=null),this.maskManager&&(this.maskManager.destroy(),this.maskManager=null)},createRenderableComponents:function(){this.maskManager=new MaskElement(this.data,this,this.globalData)},addEffects:function(){},setMatte:function(){}},HBaseElement.prototype.getBaseElement=SVGBaseElement.prototype.getBaseElement,HBaseElement.prototype.destroyBaseElement=HBaseElement.prototype.destroy,HBaseElement.prototype.buildElementParenting=BaseRenderer.prototype.buildElementParenting,extendPrototype([BaseElement,TransformElement,HBaseElement,HierarchyElement,FrameElement,RenderableDOMElement],HSolidElement),HSolidElement.prototype.createContent=function(){var t;this.data.hasMask?((t=createNS("rect")).setAttribute("width",this.data.sw),t.setAttribute("height",this.data.sh),t.setAttribute("fill",this.data.sc),this.svgElement.setAttribute("width",this.data.sw),this.svgElement.setAttribute("height",this.data.sh)):((t=createTag("div")).style.width=this.data.sw+"px",t.style.height=this.data.sh+"px",t.style.backgroundColor=this.data.sc),this.layerElement.appendChild(t)},extendPrototype([BaseElement,TransformElement,HSolidElement,SVGShapeElement,HBaseElement,HierarchyElement,FrameElement,RenderableElement],HShapeElement),HShapeElement.prototype._renderShapeFrame=HShapeElement.prototype.renderInnerContent,HShapeElement.prototype.createContent=function(){var t;if(this.baseElement.style.fontSize=0,this.data.hasMask)this.layerElement.appendChild(this.shapesContainer),t=this.svgElement;else{t=createNS("svg");var e=this.comp.data?this.comp.data:this.globalData.compSize;t.setAttribute("width",e.w),t.setAttribute("height",e.h),t.appendChild(this.shapesContainer),this.layerElement.appendChild(t)}this.searchShapes(this.shapesData,this.itemsData,this.prevViewData,this.shapesContainer,0,[],!0),this.filterUniqueShapes(),this.shapeCont=t},HShapeElement.prototype.getTransformedPoint=function(t,e){var r,i=t.length;for(r=0;r0&&o<1&&f[m].push(this.calculateF(o,t,e,r,i,m)):(h=a*a-4*n*s)>=0&&((l=(-a+bmSqrt(h))/(2*s))>0&&l<1&&f[m].push(this.calculateF(l,t,e,r,i,m)),(p=(-a-bmSqrt(h))/(2*s))>0&&p<1&&f[m].push(this.calculateF(p,t,e,r,i,m))));this.shapeBoundingBox.left=bmMin.apply(null,f[0]),this.shapeBoundingBox.top=bmMin.apply(null,f[1]),this.shapeBoundingBox.right=bmMax.apply(null,f[0]),this.shapeBoundingBox.bottom=bmMax.apply(null,f[1])},HShapeElement.prototype.calculateF=function(t,e,r,i,s,a){return bmPow(1-t,3)*e[a]+3*bmPow(1-t,2)*t*r[a]+3*(1-t)*bmPow(t,2)*i[a]+bmPow(t,3)*s[a]},HShapeElement.prototype.calculateBoundingBox=function(t,e){var r,i=t.length;for(r=0;r=t.x+t.width&&this.currentBBox.height+this.currentBBox.y>=t.y+t.height},HShapeElement.prototype.renderInnerContent=function(){if(this._renderShapeFrame(),!this.hidden&&(this._isFirstFrame||this._mdf)){var t=this.tempBoundingBox,e=999999;if(t.x=e,t.xMax=-e,t.y=e,t.yMax=-e,this.calculateBoundingBox(this.itemsData,t),t.width=t.xMax=0;t-=1){var i=this.hierarchy[t].finalTransform.mProp;this.mat.translate(-i.p.v[0],-i.p.v[1],i.p.v[2]),this.mat.rotateX(-i.or.v[0]).rotateY(-i.or.v[1]).rotateZ(i.or.v[2]),this.mat.rotateX(-i.rx.v).rotateY(-i.ry.v).rotateZ(i.rz.v),this.mat.scale(1/i.s.v[0],1/i.s.v[1],1/i.s.v[2]),this.mat.translate(i.a.v[0],i.a.v[1],i.a.v[2])}if(this.p?this.mat.translate(-this.p.v[0],-this.p.v[1],this.p.v[2]):this.mat.translate(-this.px.v,-this.py.v,this.pz.v),this.a){var s;s=this.p?[this.p.v[0]-this.a.v[0],this.p.v[1]-this.a.v[1],this.p.v[2]-this.a.v[2]]:[this.px.v-this.a.v[0],this.py.v-this.a.v[1],this.pz.v-this.a.v[2]];var a=Math.sqrt(Math.pow(s[0],2)+Math.pow(s[1],2)+Math.pow(s[2],2)),n=[s[0]/a,s[1]/a,s[2]/a],o=Math.sqrt(n[2]*n[2]+n[0]*n[0]),h=Math.atan2(n[1],o),l=Math.atan2(n[0],-n[2]);this.mat.rotateY(l).rotateX(-h)}this.mat.rotateX(-this.rx.v).rotateY(-this.ry.v).rotateZ(this.rz.v),this.mat.rotateX(-this.or.v[0]).rotateY(-this.or.v[1]).rotateZ(this.or.v[2]),this.mat.translate(this.globalData.compSize.w/2,this.globalData.compSize.h/2,0),this.mat.translate(0,0,this.pe.v);var p=!this._prevMat.equals(this.mat);if((p||this.pe._mdf)&&this.comp.threeDElements){var f,m,c;for(e=this.comp.threeDElements.length,t=0;t=t)return this.threeDElements[e].perspectiveElem;e+=1}return null},HybridRendererBase.prototype.createThreeDContainer=function(t,e){var r,i,s=createTag("div");styleDiv(s);var a=createTag("div");if(styleDiv(a),"3d"===e){(r=s.style).width=this.globalData.compSize.w+"px",r.height=this.globalData.compSize.h+"px";var n="50% 50%";r.webkitTransformOrigin=n,r.mozTransformOrigin=n,r.transformOrigin=n;var o="matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1)";(i=a.style).transform=o,i.webkitTransform=o}s.appendChild(a);var h={container:a,perspectiveElem:s,startPos:t,endPos:t,type:e};return this.threeDElements.push(h),h},HybridRendererBase.prototype.build3dContainers=function(){var t,e,r=this.layers.length,i="";for(t=0;t=0;t-=1)this.resizerElem.appendChild(this.threeDElements[t].perspectiveElem)},HybridRendererBase.prototype.addTo3dContainer=function(t,e){for(var r=0,i=this.threeDElements.length;rn?(t=s/this.globalData.compSize.w,e=s/this.globalData.compSize.w,r=0,i=(a-this.globalData.compSize.h*(s/this.globalData.compSize.w))/2):(t=a/this.globalData.compSize.h,e=a/this.globalData.compSize.h,r=(s-this.globalData.compSize.w*(a/this.globalData.compSize.h))/2,i=0);var o=this.resizerElem.style;o.webkitTransform="matrix3d("+t+",0,0,0,0,"+e+",0,0,0,0,1,0,"+r+","+i+",0,1)",o.transform=o.webkitTransform},HybridRendererBase.prototype.renderFrame=SVGRenderer.prototype.renderFrame,HybridRendererBase.prototype.hide=function(){this.resizerElem.style.display="none"},HybridRendererBase.prototype.show=function(){this.resizerElem.style.display="block"},HybridRendererBase.prototype.initItems=function(){if(this.buildAllItems(),this.camera)this.camera.setup();else{var t,e=this.globalData.compSize.w,r=this.globalData.compSize.h,i=this.threeDElements.length;for(t=0;t=o;)t/=2,e/=2,r>>>=1;return(t+r)/e};return b.int32=function(){return 0|v.g(4)},b.quick=function(){return v.g(4)/4294967296},b.double=b,m(c(v.S),t),(d.pass||u||function(t,r,i,s){return s&&(s.S&&p(s,v),t.state=function(){return p(v,{})}),i?(e.random=t,r):t})(b,g,"global"in d?d.global:this==e,d.state)},m(e.random(),t)}function initialize$2(t){seedRandom([],t)}var propTypes={SHAPE:"shape"};function _typeof(t){return _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},_typeof(t)}var ExpressionManager=function(){var ob={},Math=BMMath,window=null,document=null,XMLHttpRequest=null,fetch=null,frames=null;function $bm_isInstanceOfArray(t){return t.constructor===Array||t.constructor===Float32Array}function isNumerable(t,e){return"number"===t||"boolean"===t||"string"===t||e instanceof Number}function $bm_neg(t){var e=_typeof(t);if("number"===e||"boolean"===e||t instanceof Number)return-t;if($bm_isInstanceOfArray(t)){var r,i=t.length,s=[];for(r=0;rr){var i=r;r=e,e=i}return Math.min(Math.max(t,e),r)}function radiansToDegrees(t){return t/degToRads}var radians_to_degrees=radiansToDegrees;function degreesToRadians(t){return t*degToRads}var degrees_to_radians=radiansToDegrees,helperLengthArray=[0,0,0,0,0,0];function length(t,e){if("number"==typeof t||t instanceof Number)return e=e||0,Math.abs(t-e);var r;e||(e=helperLengthArray);var i=Math.min(t.length,e.length),s=0;for(r=0;r.5?l/(2-n-o):l/(n+o),n){case i:e=(s-a)/l+(s1&&(r-=1),r<1/6?t+6*(e-t)*r:r<.5?e:r<2/3?t+(e-t)*(2/3-r)*6:t}function hslToRgb(t){var e,r,i,s=t[0],a=t[1],n=t[2];if(0===a)e=n,i=n,r=n;else{var o=n<.5?n*(1+a):n+a-n*a,h=2*n-o;e=hue2rgb(h,o,s+1/3),r=hue2rgb(h,o,s),i=hue2rgb(h,o,s-1/3)}return[e,r,i,t[3]]}function linear(t,e,r,i,s){if(void 0!==i&&void 0!==s||(i=e,s=r,e=0,r=1),r=r)return s;var n,o=r===e?0:(t-e)/(r-e);if(!i.length)return i+(s-i)*o;var h=i.length,l=createTypedArray("float32",h);for(n=0;n1){for(i=0;i1?e=1:e<0&&(e=0);var n=t(e);if($bm_isInstanceOfArray(s)){var o,h=s.length,l=createTypedArray("float32",h);for(o=0;odata.k[e].t&&tdata.k[e+1].t-t?(r=e+2,i=data.k[e+1].t):(r=e+1,i=data.k[e].t);break}}-1===r&&(r=e+1,i=data.k[e].t)}else r=0,i=0;var a={};return a.index=r,a.time=i/elem.comp.globalData.frameRate,a}function key(t){var e,r,i;if(!data.k.length||"number"==typeof data.k[0])throw new Error("The property has no keyframe at index "+t);t-=1,e={time:data.k[t].t/elem.comp.globalData.frameRate,value:[]};var s=Object.prototype.hasOwnProperty.call(data.k[t],"s")?data.k[t].s:data.k[t-1].e;for(i=s.length,r=0;rl.length-1)&&(e=l.length-1),i=p-(s=l[l.length-1-e].t)),"pingpong"===t){if(Math.floor((h-s)/i)%2!=0)return this.getValueAtTime((i-(h-s)%i+s)/this.comp.globalData.frameRate,0)}else{if("offset"===t){var f=this.getValueAtTime(s/this.comp.globalData.frameRate,0),m=this.getValueAtTime(p/this.comp.globalData.frameRate,0),c=this.getValueAtTime(((h-s)%i+s)/this.comp.globalData.frameRate,0),d=Math.floor((h-s)/i);if(this.pv.length){for(n=(o=new Array(f.length)).length,a=0;a=p)return this.pv;if(r?s=p+(i=e?Math.abs(this.elem.comp.globalData.frameRate*e):Math.max(0,this.elem.data.op-p)):((!e||e>l.length-1)&&(e=l.length-1),i=(s=l[e].t)-p),"pingpong"===t){if(Math.floor((p-h)/i)%2==0)return this.getValueAtTime(((p-h)%i+p)/this.comp.globalData.frameRate,0)}else{if("offset"===t){var f=this.getValueAtTime(p/this.comp.globalData.frameRate,0),m=this.getValueAtTime(s/this.comp.globalData.frameRate,0),c=this.getValueAtTime((i-(p-h)%i+p)/this.comp.globalData.frameRate,0),d=Math.floor((p-h)/i)+1;if(this.pv.length){for(n=(o=new Array(f.length)).length,a=0;a1?(s+t-a)/(e-1):1,o=0,h=0;for(r=this.pv.length?createTypedArray("float32",this.pv.length):0;on){var p=o,f=r.c&&o===h-1?0:o+1,m=(n-l)/a[o].addedLength;i=bez.getPointInSegment(r.v[p],r.v[f],r.o[p],r.i[f],m,a[o]);break}l+=a[o].addedLength,o+=1}return i||(i=r.c?[r.v[0][0],r.v[0][1]]:[r.v[r._length-1][0],r.v[r._length-1][1]]),i},vectorOnPath:function(t,e,r){1==t?t=this.v.c:0==t&&(t=.999);var i=this.pointOnPath(t,e),s=this.pointOnPath(t+.001,e),a=s[0]-i[0],n=s[1]-i[1],o=Math.sqrt(Math.pow(a,2)+Math.pow(n,2));return 0===o?[0,0]:"tangent"===r?[a/o,n/o]:[-n/o,a/o]},tangentOnPath:function(t,e){return this.vectorOnPath(t,e,"tangent")},normalOnPath:function(t,e){return this.vectorOnPath(t,e,"normal")},setGroupProperty:expressionHelpers.setGroupProperty,getValueAtTime:expressionHelpers.getStaticValueAtTime},extendPrototype([l],o),extendPrototype([l],h),h.prototype.getValueAtTime=function(t){return this._cachingAtTime||(this._cachingAtTime={shapeValue:shapePool.clone(this.pv),lastIndex:0,lastTime:initialDefaultFrame}),t*=this.elem.globalData.frameRate,(t-=this.offsetTime)!==this._cachingAtTime.lastTime&&(this._cachingAtTime.lastIndex=this._cachingAtTime.lastTime
+
+
+
+
+
+
{{ currentYear }}年{{ currentMonth }}月
+
+
+
+
+ {{ item }}
+
+
+
+
+
+
+ 已签到
+ 可签到
+ 未开始
+
+
+
+
+
+
+ {{ selectedDate ? selectedDate + ' 的活动时段' : '活动时段' }}
+
+
+
+
+
+
+
+ {{ formatTime(item.courseStartTime) }} - {{ formatTime(item.courseEndTime) }}
+
+
+
+ {{ row.courseLocation }}
+
+
+
+
已签到
+
+
+ {{ getScheduleStatus(item) }}
+
+
+
+
+

+
当天暂无签到时段
+
当前日期没有需要签到的活动安排
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/target/classes/static/components/plugins/h5/TableColumn.vue b/target/classes/static/components/plugins/h5/TableColumn.vue
index d486646..3fff8e3 100644
--- a/target/classes/static/components/plugins/h5/TableColumn.vue
+++ b/target/classes/static/components/plugins/h5/TableColumn.vue
@@ -37,26 +37,32 @@ module.exports = {
diff --git a/target/classes/static/components/plugins/h5/TableList.vue b/target/classes/static/components/plugins/h5/TableList.vue
index 1de0240..cc20e4a 100644
--- a/target/classes/static/components/plugins/h5/TableList.vue
+++ b/target/classes/static/components/plugins/h5/TableList.vue
@@ -1,7 +1,9 @@
-
+
-
+
+
+
-
+
-
-
![]()
+
-
@@ -66,6 +69,10 @@ module.exports = {
img: {
type: String,
default: ""
+ },
+ show_loading_overlay: {
+ type: Boolean,
+ default: true
}
},
watch: {
@@ -87,6 +94,33 @@ module.exports = {
}
},
methods: {
+ /**
+ * 获取当前列表快照。
+ * 返回值包含已加载记录、分页参数和加载完成状态,供业务页面在进入详情前暂存列表现场。
+ */
+ getListState() {
+ return {
+ tableData: JSON.parse(JSON.stringify(this.tableData)),
+ localPageForm: JSON.parse(JSON.stringify(this.localPageForm)),
+ tableFinished: this.tableFinished
+ }
+ },
+
+ /**
+ * 恢复列表快照。
+ * state 应包含 tableData、localPageForm 和 tableFinished;返回 true 表示恢复成功。
+ */
+ restoreListState(state) {
+ if (!state || !Array.isArray(state.tableData)) return false
+ this.$set(this, "tableData", state.tableData)
+ this.$set(this, "localPageForm", {...this.localPageForm, ...(state.localPageForm || {})})
+ this.$set(this, "tableFinished", !!state.tableFinished)
+ this.$set(this, "tableLoading", false)
+ this.$set(this, "tableRefreshing", false)
+ this.$emit("update:page_form", {...this.localPageForm})
+ return true
+ },
+
calcTitle(row) {
if (!this.title) return ""
// 处理key1.key2.key3 这样的形式
@@ -111,9 +145,15 @@ module.exports = {
pageData() {
this.tableLoading = true
+ const isInitialLoad = this.tableData.length === 0
+ this.$emit("loading-change", {loading: true, initial: isInitialLoad})
- const loading = createListLoading()
- this.$axios.post(this.api, this.json ? ({pageForm: JSON.stringify(this.localPageForm)}) : this.localPageForm).then((res) => {
+ const loading = this.show_loading_overlay ? createListLoading() : null
+ this.$axios.post(
+ this.api,
+ this.json ? ({pageForm: JSON.stringify(this.localPageForm)}) : this.localPageForm,
+ {h5SkeletonLoading: !this.show_loading_overlay}
+ ).then((res) => {
if (res.code === 0) {
this.tableData = this.tableData.concat(res.data.list)
this.localPageForm.totalCount = res.data.totalCount
@@ -123,11 +163,10 @@ module.exports = {
this.$emit("update:page_form", {...this.localPageForm})
}
}).finally(() => {
- loading.close()
- console.log(this.tableLoading)
+ if (loading) loading.close()
this.tableLoading = false
- console.log(this.tableLoading)
this.tableRefreshing = false
+ this.$emit("loading-change", {loading: false, initial: isInitialLoad})
})
},
doSearch() {
@@ -152,33 +191,36 @@ module.exports = {
diff --git a/target/classes/static/components/plugins/sysSignature/index.vue b/target/classes/static/components/plugins/sysSignature/index.vue
index 4a8ae75..056717a 100644
--- a/target/classes/static/components/plugins/sysSignature/index.vue
+++ b/target/classes/static/components/plugins/sysSignature/index.vue
@@ -57,7 +57,16 @@ module.exports = {
},
save() {
if (signature.isEmpty()) {
- alert("请签字后再保存")
+ // H5 页面使用统一的 Vant 提示;未加载 Vant 的独立签字页保留原生提示作为兼容兜底。
+ if (typeof this.$toast === "function") {
+ this.$toast({
+ message: "请先完成手写签名",
+ icon: "edit",
+ duration: 2000
+ })
+ } else {
+ alert("请先完成手写签名")
+ }
return
}
// const png = signature.getPNG()
diff --git a/target/classes/static/components/plugins/vantMore/yearVanDropDownItem.vue b/target/classes/static/components/plugins/vantMore/yearVanDropDownItem.vue
index 62ff48a..e7d8a98 100644
--- a/target/classes/static/components/plugins/vantMore/yearVanDropDownItem.vue
+++ b/target/classes/static/components/plugins/vantMore/yearVanDropDownItem.vue
@@ -1,5 +1,11 @@
-
+
+
@@ -95,6 +96,152 @@
// toast多例模式
vant.Toast.allowMultiple()
+ /**
+ * H5 弹层历史管理器。
+ * 页面通过 register 注册页面标识和弹层状态回调,通过 open/close/closeAll 维护浏览器历史;
+ * popstate 返回 true 表示本次返回仅用于同步弹层,PJAX 不再执行页面跳转。
+ */
+ window.h5HistoryLayerManager = {
+ pageKey: "",
+ stack: [],
+ onChange: null,
+ afterClose: null,
+ subscribers: [],
+ pendingNavigation: null,
+ register(pageKey, onChange) {
+ const currentState = window.history.state || {}
+ this.pageKey = pageKey
+ this.stack = []
+ this.onChange = onChange
+ this.afterClose = null
+ this.pendingNavigation = null
+ window.history.replaceState({
+ ...currentState,
+ url: currentState.url || window.location.href,
+ h5HistoryLayerPage: pageKey,
+ h5HistoryLayerStack: []
+ }, "", window.location.href)
+ this.notify()
+ },
+ /**
+ * 确保当前页面已初始化弹层历史。
+ * pageKey 传当前页面的稳定标识;返回 boolean,true 表示已有或已完成页面注册。
+ */
+ ensureRegistered(pageKey) {
+ if (this.pageKey) return true
+ this.register(pageKey, null)
+ return true
+ },
+ /**
+ * 订阅全局弹层栈变化。
+ * onChange 接收当前弹层名称数组;返回 Function 类型的注销方法,组件销毁时必须调用。
+ */
+ subscribe(onChange) {
+ if (typeof onChange !== "function") return () => {}
+ this.subscribers.push(onChange)
+ onChange(this.stack.slice())
+ return () => {
+ const index = this.subscribers.indexOf(onChange)
+ if (index !== -1) this.subscribers.splice(index, 1)
+ }
+ },
+ unregister(pageKey) {
+ if (pageKey && this.pageKey !== pageKey) return
+ this.reset()
+ },
+ open(layerName) {
+ if (!this.pageKey || !layerName) return false
+ const currentLayer = this.stack[this.stack.length - 1]
+ if (currentLayer === layerName) return true
+ const nextStack = this.stack.concat(layerName)
+ window.history.pushState({
+ ...(window.history.state || {}),
+ url: window.location.href,
+ h5HistoryLayerPage: this.pageKey,
+ h5HistoryLayerStack: nextStack
+ }, "", window.location.href)
+ this.stack = nextStack
+ this.notify()
+ return true
+ },
+ close(layerName, afterClose = null) {
+ if (!this.stack.length) {
+ if (typeof afterClose === "function") afterClose()
+ return false
+ }
+ const currentLayer = this.stack[this.stack.length - 1]
+ if (layerName && currentLayer !== layerName) return false
+ this.afterClose = afterClose
+ window.history.back()
+ return true
+ },
+ closeAll(afterClose = null) {
+ if (!this.stack.length) {
+ if (typeof afterClose === "function") afterClose()
+ return false
+ }
+ this.afterClose = afterClose
+ window.history.go(-this.stack.length)
+ return true
+ },
+ /**
+ * 关闭当前页面全部弹层后跳转业务页面。
+ * url 传目标页面地址,data 传可选的 PJAX 请求参数;返回 boolean,true 表示已接管本次跳转。
+ */
+ closeAllAndNavigate(url, data = null) {
+ if (!url) return false
+ if (!this.stack.length) {
+ pjaxReplace(url, data)
+ return true
+ }
+ this.pendingNavigation = {url: url, data: data}
+ this.afterClose = null
+ window.history.go(-this.stack.length)
+ return true
+ },
+ handlePopState(nativeEvent) {
+ const state = nativeEvent && nativeEvent.state ? nativeEvent.state : {}
+ const targetStack = state.h5HistoryLayerPage === this.pageKey && Array.isArray(state.h5HistoryLayerStack)
+ ? state.h5HistoryLayerStack.slice()
+ : []
+ const stackChanged = this.stack.length !== targetStack.length ||
+ this.stack.some((layerName, index) => layerName !== targetStack[index])
+ if (!stackChanged) return false
+ if (!this.stack.length && !targetStack.length) return false
+ this.stack = targetStack
+ this.notify()
+ const callback = this.afterClose
+ const navigation = this.pendingNavigation
+ this.afterClose = null
+ this.pendingNavigation = null
+ if (navigation && navigation.url) {
+ pjaxReplace(navigation.url, navigation.data)
+ return true
+ }
+ if (typeof callback === "function") {
+ setTimeout(() => callback(), 0)
+ }
+ return true
+ },
+ notify() {
+ if (typeof this.onChange === "function") {
+ this.onChange(this.stack.slice())
+ }
+ this.subscribers.slice().forEach((subscriber) => {
+ subscriber(this.stack.slice())
+ })
+ },
+ reset() {
+ this.stack = []
+ this.notify()
+ this.pageKey = ""
+ this.onChange = null
+ this.afterClose = null
+ this.subscribers = []
+ this.pendingNavigation = null
+ }
+ }
+
//初始化pjax
;(function initPjax() {
if ($.support.pjax) {
@@ -106,14 +253,19 @@
timeout: 8000
})
$(document).on("pjax:send", function () {
+ window.h5HistoryLayerManager.reset()
NProgress.start()
window.customStyleList = document.querySelectorAll('style[id^="style-"]')
})
$(document).on("pjax:complete", function () {
+ // PJAX 替换 #container 时可能已经移除旧样式节点,清理前需兼容节点脱离 DOM 的情况。
if (window.customStyleList) {
window.customStyleList.forEach((style) => {
- style.parentNode.removeChild(style)
+ if (style.parentNode) {
+ style.parentNode.removeChild(style)
+ }
})
+ window.customStyleList = null
}
NProgress.done()
toggleShowBar()
@@ -121,6 +273,9 @@
// 监听浏览器的前进和后退操作
$(window).on("popstate", function (event) {
+ if (window.h5HistoryLayerManager.handlePopState(event.originalEvent)) {
+ return
+ }
if (event.originalEvent.state) {
// 如果存在历史记录状态,触发 Pjax 加载对应内容
$.pjax({
@@ -137,7 +292,7 @@
})()
function pjaxReplace(url, data = null) {
- $.pjax({
+ return $.pjax({
url: url,
container: "#container",
maxCacheLength: 0,
@@ -149,14 +304,72 @@
})
}
- function createListLoading(icon = "https://preview.qiantucdn.com/58pic/35/39/61/62K58PICb88i68HEwVnm5_PIC2018.gif!qt480") {
- return vant.Toast.loading({
- icon: icon,
- forbidClick: true,
- loadingType: "spinner",
- duration: 0,
- className: "custom-list-loading"
+ let h5GlobalLoading = null
+ let h5PendingRequestCount = 0
+
+ function showH5GlobalLoading(icon = "/assets/mobile/img/common/smart-union-loading-red.svg") {
+ if (!h5GlobalLoading) {
+ h5GlobalLoading = vant.Toast.loading({
+ icon: icon,
+ message: "加载中...",
+ forbidClick: true,
+ loadingType: "spinner",
+ duration: 0,
+ className: "custom-list-loading"
+ })
+ }
+ }
+
+ function closeH5GlobalLoading() {
+ if (h5PendingRequestCount > 0 || !h5GlobalLoading) return
+ h5GlobalLoading.clear()
+ h5GlobalLoading = null
+ }
+
+ // 所有 H5 Axios 请求先展示 Loading,等待 200ms 后再真正发出请求。
+ window.bindH5AxiosLoading = function(axiosService) {
+ axiosService.interceptors.request.use((config) => {
+ // 页面自行展示骨架屏时保留请求延迟,但不叠加全局 Loading 遮罩。
+ if (config.h5SkeletonLoading) {
+ return new Promise((resolve) => {
+ setTimeout(() => resolve(config), 200)
+ })
+ }
+ h5PendingRequestCount++
+ showH5GlobalLoading()
+ return new Promise((resolve) => {
+ setTimeout(() => resolve(config), 200)
+ })
+ }, (error) => {
+ return Promise.reject(error)
})
+
+ axiosService.interceptors.response.use((response) => {
+ if (!response.config || !response.config.h5SkeletonLoading) {
+ h5PendingRequestCount = Math.max(0, h5PendingRequestCount - 1)
+ closeH5GlobalLoading()
+ }
+ return response
+ }, (error) => {
+ if (!error.config || !error.config.h5SkeletonLoading) {
+ h5PendingRequestCount = Math.max(0, h5PendingRequestCount - 1)
+ closeH5GlobalLoading()
+ }
+ return Promise.reject(error)
+ })
+ }
+
+ function createListLoading(icon = "/assets/mobile/img/common/smart-union-loading-red.svg") {
+ showH5GlobalLoading(icon)
+
+ const closeLoading = function() {
+ closeH5GlobalLoading()
+ }
+
+ return {
+ clear: closeLoading,
+ close: closeLoading
+ }
}
function historyBack(func) {
@@ -408,7 +621,7 @@
diff --git a/target/classes/views/platform/zhgh/spread/category/index.html b/target/classes/views/platform/zhgh/spread/category/index.html
new file mode 100644
index 0000000..5eec9da
--- /dev/null
+++ b/target/classes/views/platform/zhgh/spread/category/index.html
@@ -0,0 +1,194 @@
+
+
+
+
+
+ 新增栏目
+ 展开全部
+ 折叠全部
+
+
+
+
+
+
+
+
+
+
+
+
+ {{row.slider === 1 ? '开启' : '关闭'}}
+
+
+
+
+
+ 编辑
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 显示
+ 隐藏
+
+
+
+
+ 开启
+ 关闭
+
+ 子栏目开启轮播后,其上级栏目会自动开启。
+
+
+
+ 取消
+ 确定
+
+
+
+
+
+
diff --git a/target/classes/views/platform/zhgh/spread/creation/index.html b/target/classes/views/platform/zhgh/spread/creation/index.html
new file mode 100644
index 0000000..f06e37a
--- /dev/null
+++ b/target/classes/views/platform/zhgh/spread/creation/index.html
@@ -0,0 +1,381 @@
+
+
+
+
+
+ {{formData.id ? '编辑风采内容' : '发布风采内容'}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 建议使用横版图片,单张不超过 10MB。
+
+
+
+ 点击下方“+”新增轮播图片
+ 已添加 {{sliderMeta.length}} / 10 张
+
+
+ 仅栏目开启“参与轮播”后生效,最多上传 10 张;每张图片只需填写标题,工会名称沿用内容所属工会。
+
+
+
+
+
+
+
+
+
+
+ 保存草稿
+ 立即发布
+
+
+
+
+
+
+
+
+
diff --git a/target/classes/views/platform/zhgh/spread/display/index.html b/target/classes/views/platform/zhgh/spread/display/index.html
new file mode 100644
index 0000000..971e129
--- /dev/null
+++ b/target/classes/views/platform/zhgh/spread/display/index.html
@@ -0,0 +1,366 @@
+
+
+
+
+
+
+
+ 风采墙
+
+ HONOR
+
+
+
+
+
![]()
+
+
+
+ {{item.unionName || item.categoryName || '风采展示'}}{{item.title}}
+
+
+
+
+
+
+
榜样引领 · 风采绽放
+
+
+
+
+
+
+
+
+
+
{{currentCategory.name || '风采展示'}}
+ 展示教职工的先进事迹与精彩瞬间
+
+
+
+ {{datePart(item.publishedAt, 'DD')}}
+ {{datePart(item.publishedAt, 'YYYY.MM')}}
+
+
+
+ 置顶
+ {{item.title}}
+
+
{{item.summary || item.subTitle || '点击查看详细内容'}}
+
+ {{item.viewCount || 0}}
+
+
+
+
+
+ 返回列表
+ {{detail.title}}
+
+ {{formatTime(detail.publishedAt || detail.createdAt)}}
+ {{detail.categoryName}} {{detail.viewCount || 0}}
+
+
+
+
+
+
+
+
+
+
diff --git a/target/classes/views/platform/zhgh/spread/manage/index.html b/target/classes/views/platform/zhgh/spread/manage/index.html
new file mode 100644
index 0000000..68c0cf8
--- /dev/null
+++ b/target/classes/views/platform/zhgh/spread/manage/index.html
@@ -0,0 +1,203 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+
+ 发布内容
+
+
+
+
+
+
+ {{row.categoryName}}
+ 轮播
+
+
+
+
+
+
+ {{row.isTop === 1 ? '置顶' : '未置顶'}}
+
+
+
+
+
+
+
+
+ {{row.isPublished === 1 ? '已发布' : '草稿'}}
+
+
+
+
+ {{formatTime(row.publishedAt)}}
+
+
+
+ 编辑
+
+ {{row.isPublished === 1 ? '撤回' : '发布'}}
+
+ 删除
+
+
+
+
+
+
+
+
+
+
diff --git a/target/classes/views/platform/zhgh/spread/statistics/index.html b/target/classes/views/platform/zhgh/spread/statistics/index.html
new file mode 100644
index 0000000..8c2a2bc
--- /dev/null
+++ b/target/classes/views/platform/zhgh/spread/statistics/index.html
@@ -0,0 +1,252 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查询
+ 重置
+
+
+
+
+
+
+
+
+
栏目总数
{{summary.categoryCount || 0}}
+
+
+
+
内容总数
{{summary.contentCount || 0}}
+
+
+
+
已发布
{{summary.publishedCount || 0}}
+
+
+
+
+
总访问量
{{summary.viewCount || 0}}
+
+
+
+
平均访问量
{{summary.avgViewCount || 0}}
+
+
+
+
+
+
+ 栏目访问量占比
+
+
+
+ 新闻内容访问量 Top10
+
+
+
+
+
+ 新闻内容访问量 Top10
+
+
+
+
+
+
+
+ {{formatTime(row.publishedAt)}}
+
+
+
+
+
+
+
+
+
diff --git a/target/classes/views/platform/zhgh/staffmanage/birthday/manage/index.html b/target/classes/views/platform/zhgh/staffmanage/birthday/manage/index.html
new file mode 100644
index 0000000..213fffb
--- /dev/null
+++ b/target/classes/views/platform/zhgh/staffmanage/birthday/manage/index.html
@@ -0,0 +1,330 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 导出Excel
+ 发送通知
+ 配置图片
+
+
+
+
+
+
+ 人员信息
+ 发送通知
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 取消
+ 确定
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 取消
+ 确定
+
+
+
+
+
+
+
+ 建议使用竖版生日主题图片。
+
+
+
+ 移动端点击“领取生日福利”后展示该图片。
+
+
+
+ 取消
+ 保存
+
+
+
+
+
+
diff --git a/target/classes/views/platform/zhgh/staffmanage/birthday/msglog/index.html b/target/classes/views/platform/zhgh/staffmanage/birthday/msglog/index.html
new file mode 100644
index 0000000..f7bf576
--- /dev/null
+++ b/target/classes/views/platform/zhgh/staffmanage/birthday/msglog/index.html
@@ -0,0 +1,112 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/target/classes/views/platform/zhghh5/activity/culture/applyUser.html b/target/classes/views/platform/zhghh5/activity/culture/applyUser.html
index a91390b..0f631ad 100644
--- a/target/classes/views/platform/zhghh5/activity/culture/applyUser.html
+++ b/target/classes/views/platform/zhghh5/activity/culture/applyUser.html
@@ -3,79 +3,448 @@ layout("/layouts/platform_h5.html"){
#-->
-
-
-
-
-
-
-
-
-
-
-
-
- {{$moment(row.startTime).format('MM/DD HH:mm')}}
-
-
- {{$moment(row.endTime).format('MM/DD HH:mm')}}
-
-
-
-
-
-
-
去报名
+
+
+
+
+
+
+
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
![]()
+
+
+ {{ hasCover(row) ? '图片加载失败' : '暂无图片' }}
+
+
+
{{ row.name }}
+
+ 报名时间:{{ $moment(row.applyStartTime).format('MM/DD HH:mm') }}~{{ $moment(row.applyEndTime).format('MM/DD HH:mm') }}
+
+
+ 活动时间:{{ $moment(row.startTime).format('MM/DD HH:mm') }}~{{ $moment(row.endTime).format('MM/DD HH:mm') }}
+
+
+
+
+
+
+
+
+

+
暂无文化活动
+
当前筛选条件下暂时没有可展示的活动
+
+
+
+
@@ -92,10 +461,14 @@ layout("/layouts/platform_h5.html"){
finished: false,
loading: false,
refreshing: false,
+ searchKeyword: "",
+ imageLoadErrors: {},
+ filterOpened: false,
pageForm: {
state: 2,
isEnrolled: 0,
year: new Date().getFullYear(),
+ name: "",
pageNumber: 1,
pageSize: 5,
totalCount: 0,
@@ -128,6 +501,47 @@ layout("/layouts/platform_h5.html"){
onReady() {
this.doSearch()
},
+ hasCover(row) {
+ return !!(row && row.cover && String(row.cover).trim())
+ },
+ handleImageError(row) {
+ this.$set(this.imageLoadErrors, row.id, true)
+ },
+ formatSignUpMethod(value) {
+ return {
+ 1: "个人报名",
+ 2: "组队报名",
+ 3: "分工会报名"
+ }[Number(value)] || ""
+ },
+ onLoad() {
+ if (!this.finished) this.loadActivities(false)
+ },
+ onRefresh() {
+ this.loadActivities(true)
+ },
+ loadActivities(reset) {
+ if (reset) {
+ this.pageForm.pageNumber = 1
+ this.pageForm.totalCount = 0
+ this.tableData = []
+ this.finished = false
+ this.imageLoadErrors = {}
+ }
+ this.loading = true
+ this.$axios.post("/platform/activity/culture/applyUser/pageData", this.pageForm).then((res) => {
+ if (res.code === 0) {
+ const list = res.data && res.data.list ? res.data.list : []
+ this.tableData = this.pageForm.pageNumber === 1 ? list : this.tableData.concat(list)
+ this.pageForm.totalCount = res.data && res.data.totalCount ? res.data.totalCount : 0
+ this.finished = this.tableData.length >= this.pageForm.totalCount
+ if (!this.finished) this.pageForm.pageNumber++
+ }
+ }).finally(() => {
+ this.loading = false
+ this.refreshing = false
+ })
+ },
openDetail(row) {
this.$axios.post('/platform/activity/basic/scope/getScopeUser',{activityGroupId:row.groupId}).then(res=>{
@@ -216,11 +630,8 @@ layout("/layouts/platform_h5.html"){
.catch(() => {})
},
doSearch() {
- this.$nextTick(() => {
- this.pageForm.pageNumber = 1
- this.pageForm.totalCount = 0
- this.$refs.tableListRef.doSearch()
- })
+ this.pageForm.name = this.searchKeyword.trim()
+ this.loadActivities(true)
}
},
created() {
diff --git a/target/classes/views/platform/zhghh5/activity/culture/signUp.html b/target/classes/views/platform/zhghh5/activity/culture/signUp.html
index d04b968..0e53f52 100644
--- a/target/classes/views/platform/zhghh5/activity/culture/signUp.html
+++ b/target/classes/views/platform/zhghh5/activity/culture/signUp.html
@@ -3,44 +3,168 @@ layout("/layouts/platform_h5.html"){
#-->
-
+
+
-
-
-
{{viewData.name}}
-
+
+
+
+
+
+
+ 图片加载中
+
+
+
+
+
+ {{ viewData.cover ? '图片加载失败' : '暂无图片' }}
+
+
+
+
+
{{viewData.name}}
+
+ {{viewData.projectTypeName}}
+ 个人报名
+ 组队报名
+ 分工会报名
+
+
-
-
{{viewData.startTime}}至{{viewData.endTime}}
+
+
活动时间
+
+ {{viewData.startTime ? $moment(viewData.startTime).format('YYYY-MM-DD HH:mm') : '待定'}}
+ 至
+ {{viewData.endTime ? $moment(viewData.endTime).format('YYYY-MM-DD HH:mm') : '待定'}}
+
+
+
+
+
报名时间
+
+ {{viewData.applyStartTime ? $moment(viewData.applyStartTime).format('YYYY-MM-DD HH:mm') : '待定'}}
+ 至
+ {{viewData.applyEndTime ? $moment(viewData.applyEndTime).format('YYYY-MM-DD HH:mm') : '待定'}}
+
+
+
-
-
{{viewData.address}}
+
+
活动地点
+
{{viewData.address || '待定'}}
+
-
- 活动限制人数
-
{{viewData.totalUserNumberLimit}}人
+
+
活动限制人数
+
{{viewData.totalUserNumberLimit}}人
+
-
- 本工会限制名额
-
{{viewData.unionLimitNum}}人
+
+
本工会限制名额
+
{{viewData.unionLimitNum}}人
+
-
- 报名方式:
-
个人报名
-
组队报名
-
分工会报名
+
+
报名方式
+
+ 个人报名
+ 组队报名
+ 分工会报名
+ 无需报名
+
+
-
- 组队人数:
-
{{viewData.teamNum}}
- 人
+
+
组队人数
+
{{viewData.teamNum}}人
+
-
-
-
-
-
-
-
+
+
+
@@ -327,27 +598,31 @@ layout("/layouts/platform_h5.html"){
-
+
-
diff --git a/target/classes/views/platform/zhghh5/activity/family/apply/index.html b/target/classes/views/platform/zhghh5/activity/family/apply/index.html
index 050ab58..e70d35c 100644
--- a/target/classes/views/platform/zhghh5/activity/family/apply/index.html
+++ b/target/classes/views/platform/zhghh5/activity/family/apply/index.html
@@ -2,112 +2,572 @@
layout("/layouts/platform_h5.html"){
#-->
-
-