Update_Oracle_510to520.sql 191 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. CREATE TABLE workflow_subtask_data (
  2. "F_ID" NVARCHAR2(50) NOT NULL,
  3. "F_SUBTASK_JSON" CLOB,
  4. "F_PARENT_ID" NVARCHAR2(50),
  5. "F_NODE_CODE" NVARCHAR2(50),
  6. "F_SORT_CODE" NUMBER,
  7. "F_CREATOR_TIME" TIMESTAMP,
  8. "F_CREATOR_USER_ID" NVARCHAR2(50),
  9. "F_LAST_MODIFY_TIME" TIMESTAMP,
  10. "F_LAST_MODIFY_USER_ID" NVARCHAR2(50),
  11. "F_DELETE_TIME" TIMESTAMP,
  12. "F_DELETE_USER_ID" NVARCHAR2(50),
  13. "F_DELETE_MARK" NUMBER,
  14. "F_TENANT_ID" NVARCHAR2(50) NOT NULL
  15. , PRIMARY KEY (f_id,f_tenant_id)
  16. );
  17. COMMENT ON TABLE workflow_subtask_data IS '子流程发起参数(依次发起)';
  18. COMMENT ON COLUMN workflow_subtask_data."F_ID" IS '主键';
  19. COMMENT ON COLUMN workflow_subtask_data."F_SUBTASK_JSON" IS '子流程发起参数';
  20. COMMENT ON COLUMN workflow_subtask_data."F_PARENT_ID" IS '父流程id';
  21. COMMENT ON COLUMN workflow_subtask_data."F_NODE_CODE" IS '节点编码';
  22. COMMENT ON COLUMN workflow_subtask_data."F_SORT_CODE" IS '排序';
  23. COMMENT ON COLUMN workflow_subtask_data."F_CREATOR_TIME" IS '创建时间';
  24. COMMENT ON COLUMN workflow_subtask_data."F_CREATOR_USER_ID" IS '创建用户';
  25. COMMENT ON COLUMN workflow_subtask_data."F_LAST_MODIFY_TIME" IS '修改时间';
  26. COMMENT ON COLUMN workflow_subtask_data."F_LAST_MODIFY_USER_ID" IS '修改用户';
  27. COMMENT ON COLUMN workflow_subtask_data."F_DELETE_TIME" IS '删除时间';
  28. COMMENT ON COLUMN workflow_subtask_data."F_DELETE_USER_ID" IS '删除用户';
  29. COMMENT ON COLUMN workflow_subtask_data."F_DELETE_MARK" IS '删除标志';
  30. COMMENT ON COLUMN workflow_subtask_data."F_TENANT_ID" IS '租户id';
  31. -- 数据集添加字段
  32. ALTER TABLE base_data_set ADD f_interface_id NVARCHAR2(50);
  33. COMMENT ON COLUMN base_data_set.f_interface_id IS '数据接口id';
  34. ALTER TABLE report_template ADD f_allow_export NUMBER(11,0);
  35. COMMENT ON COLUMN report_template.f_allow_export IS '是否导出';
  36. ALTER TABLE report_template ADD f_allow_print NUMBER(11,0);
  37. COMMENT ON COLUMN report_template.f_allow_print IS '是否打印';
  38. ALTER TABLE report_template ADD f_platform_release NVARCHAR2(100);
  39. COMMENT ON COLUMN report_template.f_platform_release IS '发布选中平台';
  40. ALTER TABLE report_version ADD f_sort_list CLOB;
  41. COMMENT ON COLUMN report_version.f_sort_list IS '模板json';
  42. ALTER TABLE workflow_operator ADD f_is_processing NUMBER(11,0);
  43. COMMENT ON COLUMN workflow_operator.f_is_processing IS '是否办理节点(0否 1是)';
  44. ALTER TABLE workflow_template ADD f_show_type NUMBER(11,0);
  45. COMMENT ON COLUMN workflow_template.f_show_type IS '流程显示类型(0-全局 1-流程 2-菜单)';
  46. ALTER TABLE workflow_template ADD f_status NUMBER(11,0);
  47. COMMENT ON COLUMN workflow_template.f_status IS '状态(0.未上架,1.上架,2.下架-继续审批,3.下架-隐藏审批)';
  48. -- 默认值调整
  49. update base_data_set set f_type = 1 where f_type = 0;
  50. UPDATE base_sys_config set F_Value = 'V5.2.0' WHERE F_Key = 'sysversion';
  51. UPDATE base_sys_config set F_Value = 'Copyright @ 2025 引迈信息技术有限公司版权所有' WHERE F_Key = 'copyright';
  52. -- 待办开关
  53. INSERT INTO base_sys_config (f_id, f_full_name, f_key, f_value, f_category, f_sort_code, f_creator_time,
  54. f_creator_user_id, f_last_modify_time, f_last_modify_user_id, f_delete_time,
  55. f_delete_user_id, f_delete_mark, f_tenant_id)
  56. VALUES ('618670653960094396', NULL, 'flowTodo', '1', 'SysConfig', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0');
  57. -- 加签层级
  58. INSERT INTO base_sys_config (f_id, f_full_name, f_key, f_value, f_category, f_sort_code, f_creator_time,
  59. f_creator_user_id, f_last_modify_time, f_last_modify_user_id, f_delete_time,
  60. f_delete_user_id, f_delete_mark, f_tenant_id)
  61. VALUES ('633574799200904535', NULL, 'addSignLevel', '1', 'SysConfig', NULL, to_date('2024-12-03 10:20:06', 'yyyy-mm-dd hh24:mi:ss'), '349057407209541',
  62. NULL, NULL, NULL, NULL, NULL, '0');
  63. UPDATE report_template SET f_allow_export = 1, f_allow_print =1;
  64. UPDATE report_version SET f_sort_list = '[]' where f_sort_list is null;
  65. update workflow_operator set f_is_processing = 0 where f_is_processing is null;
  66. -- 修改工作流默认状态
  67. update workflow_template set f_status = 0 where f_enabled_mark = 0 and f_status is null;
  68. update workflow_template set f_status = 1 where f_enabled_mark = 1 and f_status is null;
  69. update workflow_template set f_show_type = 0 where f_show_type is null;
  70. delete from report_version where f_id in ('623207784581694021','623211524311220805','623216892206645829','623530488656560453','623183857306304837','623200369010278981','623204233562292805');
  71. INSERT INTO report_version ("F_SORT_LIST","F_ENABLED_MARK","F_CELLS","F_TENANT_ID","F_CREATOR_USER_ID","F_LAST_MODIFY_USER_ID","F_DELETE_MARK","F_DELETE_USER_ID","F_DELETE_TIME","F_CONVERT_CONFIG","F_QUERY_LIST","F_DESCRIPTION","F_VERSION","F_SORT_CODE","F_STATE","F_ID","F_LAST_MODIFY_TIME","F_TEMPLATE_ID","F_CREATOR_TIME","F_SNAPSHOT") VALUES ('[]',1,'context','0','349057407209541','349057407209541',Null,Null,Null,'[{"field":"user.sex","type":"select","config":{"dataType":"dictionary","options":[],"dictionaryType":"963255a34ea64a2584c5d1ba269c1fe6","propsValue":"enCode","format":"yyyy-MM-dd","precision":0,"thousands":false}}]','context',Null,1,1,1,'623183857306304837',to_date('2024-11-04 18:58:50', 'yyyy-mm-dd hh24:mi:ss'),'623183856941400389',to_date('2024-11-04 18:10:12', 'yyyy-mm-dd hh24:mi:ss'),'context');
  72. DECLARE
  73. -- 此表为:report_version
  74. v_context NCLOB;
  75. BEGIN
  76. DBMS_LOB.CREATETEMPORARY(v_context,TRUE);
  77. DBMS_LOB.APPEND(v_context, '{"cells":[{"col":"0","row":"0","sheet":"E-ZBgdonv3JP-AKiPx-Dz","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"0","row":"2","sheet":"E-ZBgdonv3JP-AKiPx-Dz","type":"dataSource","custom":{"field":"user.orgname","polymerizationType":"1","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"1","row":"2","sheet":"E-ZBgdonv3JP-AKiPx-Dz","type":"dataSource","custom":{"field":"user.depName","polymerizationType":"1","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"2","row":"2","sheet":"E-ZBgdonv3JP-AKiPx-Dz","type":"dataSource","custom":{"field":"user.education","polymerizationType":"1","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"3","row":"2","sheet":"E-ZBgdonv3JP-AKiPx-Dz","type"');
  78. DBMS_LOB.APPEND(v_context, ':"dataSource","custom":{"field":"user.sex","polymerizationType":"1","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"4","row":"2","sheet":"E-ZBgdonv3JP-AKiPx-Dz","type":"dataSource","custom":{"field":"user.username","polymerizationType":"1","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"5","row":"2","sheet":"E-ZBgdonv3JP-AKiPx-Dz","type":"dataSource","custom":{"field":"user.salary","polymerizationType":"1","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"4","row":"3","sheet":"E-ZBgdonv3JP-AKiPx-Dz","type":"dataSource","custom":{"field":"user.username","polymerizationType":"3","summaryType":"count","fillDirection":"portrait","leftParentCellType":"none","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"none","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}}],"');
  79. DBMS_LOB.APPEND(v_context, 'floatEcharts":{},"floatImages":{}}');
  80. UPDATE report_version SET f_cells = v_context WHERE f_id = '623183857306304837';
  81. END;
  82. /
  83. DECLARE
  84. -- 此表为:report_version
  85. v_context NCLOB;
  86. BEGIN
  87. DBMS_LOB.CREATETEMPORARY(v_context,TRUE);
  88. DBMS_LOB.APPEND(v_context, '[{"sheet":"E-ZBgdonv3JP-AKiPx-Dz","sheetName":"Sheet1","queryList":[{"id":"7e727b4bd2ea4c7dbb9554e24a24ebe3","vModel":"user.orgname","label":"组织","type":"select","searchType":1,"searchMultiple":false,"config":{"dataType":"static","propsUrl":"","propsName":"","dictionaryType":"","options":[{"id":"上海","fullName":"上海"},{"id":"北京","fullName":"北京"},{"id":"广东","fullName":"广东"}],"propsValue":"id"},"options":[],"props":{"label":"fullName","value":"id"}},{"id":"39f2a9df791c4d7d8332b88d1bbbc70a","vModel":"user.education","label":"学历","type":"select","searchType":1,"searchMultiple":false,"config":{"dataType":"static","propsUrl":"","propsName":"","dictionaryType":"","options":[{"id":"中专","fullName":"中专"},{"id":"博士","fullName":"博士"},{"id":"博士后","fullName":"博士后"},{"id":"大专","fullName":"大专"},{"id":"本科","fullName":"本科"},{"id":"小学","fullName":"小学"},{"id":"硕士","fullName":"硕士"},{"id":"高中","fullName":"高中"}],"propsValue":"id"},"options":[],"props":{"label":"fullName","value":"id"}},{"id":"f8546d1d4bf84da5b3b7aecd3871bd4f","vModel":"user.sex","label":"性别","type":"select","searchType":1,"searchMultiple":false,"config":{"dataType":"dictionary","propsUrl":"","propsName":"","dictionaryType":"963255a34ea64a2584c5d1ba269c1fe6","options":[],"propsValue":"enCode"},"options":[],"props":{"label":"fullName","value":"id"}},{"id":"cbee01df92d54f52aebdadbd30006e4b","vModel":"user.username","label":"姓名","type":"input","searchType":2,"config":{"dataType":"static","options":[],"dictionaryType":"","propsValue":"id"');
  89. DBMS_LOB.APPEND(v_context, ',"format":"yyyy-MM-dd","precision":0,"thousands":false}}]}]');
  90. UPDATE report_version SET f_query_list = v_context WHERE f_id = '623183857306304837';
  91. END;
  92. /
  93. DECLARE
  94. -- 此表为:report_version
  95. v_context NCLOB;
  96. BEGIN
  97. DBMS_LOB.CREATETEMPORARY(v_context,TRUE);
  98. DBMS_LOB.APPEND(v_context, '{"id":"PlhIEz","sheetOrder":["E-ZBgdonv3JP-AKiPx-Dz"],"name":"","appVersion":"0.4.2","locale":"zhCN","styles":{"UodgPC":{"ff":"Arial","fs":20,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"t":null,"l":null,"r":null}},"i_RgNM":{"ff":"Arial","fs":14,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,151,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"apsC-f":{"ff":"Arial","fs":14,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,151,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"l":null}},"xkjBLc":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":');
  99. DBMS_LOB.APPEND(v_context, '{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"pw3LRf":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":0,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"xrqbuu":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"l":null,"t":null}},"PIuBj_":{"ff":"Arial","fs":12,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(253,206,206)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"');
  100. DBMS_LOB.APPEND(v_context, 'b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":null}},"nQKKs7":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(253,206,206)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"l":null,"t":null}},"WWFg04":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(253,206,206)"},"ht":0,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"L0wAM_":{"ht":3,"fs":null},"etLyRt":{"ht":3,"fs":12},"7tea1V":{"n":{"pattern":"yyyy/mm/dd hh:mm"}},"GCGmTW":{"n":{"pattern":"yyyy-mm-dd;@"},"ht":null},"qWukzd":{"n":{"pattern":"yyyy-mm-dd;@"},"ht":1},"H3L7BS":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(253,206,206)"},"ht":0,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},');
  101. DBMS_LOB.APPEND(v_context, '"s":1},"l":null,"t":null},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"W8mBaX":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":0,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"tZDnVq":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":0,"vt":2,"tb":2,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"-ZMjtX":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":2,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":null}},"4pbBux":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":');
  102. DBMS_LOB.APPEND(v_context, '0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":2,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"l":null,"t":null}},"QoVgNp":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"l":null,"t":null},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"pqTWU1":{"ff":"Arial","fs":20,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"t":{"s":1,"cl":{"rgb":"#E5E5E5"}},"l":{"s":1,"cl":{"rgb":"#E5E5E5"}}}},"8aTIrg":{"ff":"Arial","fs":20,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"t":{"s":1,"cl":{"rgb":"#E5E5E5"}}}},"vMwX4s":{"ff":"Arial","fs":20,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0');
  103. DBMS_LOB.APPEND(v_context, '.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"t":{"s":1,"cl":{"rgb":"#E5E5E5"}},"r":{"s":1,"cl":{"rgb":"#E5E5E5"}}}},"w3oh7s":{"bd":{"l":null,"t":null}},"h1Hp7S":{"ff":"Arial","fs":14,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,151,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#E5E5E5"}},"r":{"s":1,"cl":{"rgb":"#E5E5E5"}},"t":{"s":1,"cl":{"rgb":"#E5E5E5"}},"b":{"s":1,"cl":{"rgb":"#E5E5E5"}}}},"wpVeky":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":2,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#E5E5E5"}},"r":{"s":1,"cl":{"rgb":"#E5E5E5"}},"b":{"s":1,"cl":{"rgb":"#E5E5E5"}},"t":{"s":1,"cl":{"rgb":"#E5E5E5"}}}},"jlKoQM":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#E5E5E5"}},"b":{"s":1,"cl":{"rgb":"#E5E5E5"}},"l":{"s":1,"cl":{"r');
  104. DBMS_LOB.APPEND(v_context, 'gb":"#E5E5E5"}},"t":{"s":1,"cl":{"rgb":"#E5E5E5"}}}},"opw5Vl":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#E5E5E5"}},"b":{"s":1,"cl":{"rgb":"#E5E5E5"}},"l":{"s":1,"cl":{"rgb":"#E5E5E5"}},"t":{"s":1,"cl":{"rgb":"#E5E5E5"}}},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"WnA44s":{"ff":"Arial","fs":12,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(253,206,206)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#E5E5E5"}},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"s":1,"cl":{"rgb":"#E5E5E5"}},"t":{"s":1,"cl":{"rgb":"#E5E5E5"}}}},"Tlru95":{"ff":"Arial","fs":12,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(253,206,206)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"s":1,"cl":{"rgb":"#E5E5E5"}},"t":{"s":1,"cl":{"rgb":"#E5E5E5"}}}},"VqkkN3":{"ff":"Arial","fs":12,');
  105. DBMS_LOB.APPEND(v_context, '"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(253,206,206)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#E5E5E5"}},"b":{"s":1,"cl":{"rgb":"#E5E5E5"}},"l":{"s":1,"cl":{"rgb":"#E5E5E5"}},"t":{"s":1,"cl":{"rgb":"#E5E5E5"}}}},"rY_FIH":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(253,206,206)"},"ht":0,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#E5E5E5"}},"b":{"s":1,"cl":{"rgb":"#E5E5E5"}},"l":{"s":1,"cl":{"rgb":"#E5E5E5"}},"t":{"s":1,"cl":{"rgb":"#E5E5E5"}}},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"brTn0f":{"ff":"Arial","fs":20,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"t":{"s":1,"cl":{"rgb":"#CCCCCC"}},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"O-e1uN":{"ff":"Arial","fs":20,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,');
  106. DBMS_LOB.APPEND(v_context, '"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"quTX_s":{"ff":"Arial","fs":20,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"t":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"ZeHsQI":{"ff":"Arial","fs":14,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,151,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"VGNL-Q":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":2,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"FG5eVb":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"r');
  107. DBMS_LOB.APPEND(v_context, 'gba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"Ryot9c":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"2so-W9":{"ff":"Arial","fs":12,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(253,206,206)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"h1agbN":{"ff":"Arial","fs":12,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":');
  108. DBMS_LOB.APPEND(v_context, '"rgb(253,206,206)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"7k_VtD":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(253,206,206)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"2dGCXz":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(253,206,206)"},"ht":0,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"l8Zma3":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":');
  109. DBMS_LOB.APPEND(v_context, '1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"o-8LER":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"wtFaaw":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":1,"vt":2,"tb":2,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"ZV36cj":{"ff":"Arial","fs":14,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,151,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}}}}');
  110. DBMS_LOB.APPEND(v_context, '},"sheets":{"E-ZBgdonv3JP-AKiPx-Dz":{"id":"E-ZBgdonv3JP-AKiPx-Dz","name":"Sheet1","tabColor":"","hidden":0,"rowCount":1000,"columnCount":20,"zoomRatio":1,"freeze":{"xSplit":0,"ySplit":0,"startRow":-1,"startColumn":-1},"scrollTop":0,"scrollLeft":0,"defaultColumnWidth":88,"defaultRowHeight":24,"mergeData":[{"startRow":0,"endRow":0,"startColumn":0,"endColumn":5},{"startRow":3,"endRow":3,"startColumn":0,"endColumn":3}],"cellData":{"0":{"0":{"v":"人员花名册","s":"brTn0f","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""},"t":1},"1":{"s":"O-e1uN"},"2":{"s":"O-e1uN"},"3":{"s":"O-e1uN"},"4":{"s":"O-e1uN"},"5":{"s":"quTX_s"},"6":{"s":"w3oh7s"}},"1":{"0":{"v":"组织","t":1,"s":"ZeHsQI"},"1":{"v":"部门","t":1,"s":"ZeHsQI"},"2":{"v":"学历","t":1,"s":"ZeHsQI"},"3":{"v":"性别","t":1,"s":"ZeHsQI"},"4":{"v":"姓名","t":1,"s":"ZeHsQI"},"5":{"v":"薪资","t":1,"s":"ZeHsQI"},"6":{"s":"w3oh7s"}},"2":{"0":{"v":"${user.orgname}","t":1,"s":"VGNL-Q","custom":{"field":"user.orgname","polymerizationType":"1","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"1":{"v":"${user.depName}","t":1,"s":"l8Zma3","custom":{"field":"user.depName","polymerizationType":"1","summary');
  111. DBMS_LOB.APPEND(v_context, 'Type":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"2":{"v":"${user.education}","t":1,"s":"wtFaaw","custom":{"field":"user.education","polymerizationType":"1","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"3":{"v":"${user.sex}","t":1,"s":"FG5eVb","custom":{"field":"user.sex","polymerizationType":"1","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"4":{"v":"${user.username}","t":1,"s":"VGNL-Q","custom":{"field":"user.username","polymerizationType":"1","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"5":{"v":"${user.salary}","t":1,"s":"o-8LER","custom":{"field":"user.salary","polymerizationType":"1","summaryType":"sum","fillDirection":"portrait","leftPare');
  112. DBMS_LOB.APPEND(v_context, 'ntCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"6":{"s":"w3oh7s"}},"3":{"0":{"v":"合计:","t":1,"s":"2so-W9"},"1":{"s":"h1agbN"},"2":{"s":"h1agbN"},"3":{"s":"h1agbN"},"4":{"v":"${user.username}","t":1,"s":"7k_VtD","custom":{"field":"user.username","polymerizationType":"3","summaryType":"count","fillDirection":"portrait","leftParentCellType":"none","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"none","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"5":{"s":"2dGCXz","f":"=SUM(F3)","v":0,"t":2},"6":{"s":"w3oh7s"}},"4":{"0":{"s":"w3oh7s"},"1":{"s":"w3oh7s"},"2":{"s":"w3oh7s"},"3":{"s":"w3oh7s"},"4":{"s":"w3oh7s"},"5":{"s":"w3oh7s"}},"5":{"4":{"v":"制表日期:","t":1,"s":"etLyRt"},"5":{"f":"=NOW()","v":45679.67196759259,"t":2,"s":"qWukzd"}}},"rowData":{"0":{"h":50},"1":{"h":28},"2":{"h":50,"ah":36,"ia":0},"3":{"h":24,"ah":36},"5":{"ah":24}},"columnData":{"0":{"w":88},"1":{"w":176},"2":{"w":89},"3":{"w":107},"4":{"w":107},"5":{"w":130}},"showGridlines":1,"rowHeader":{"width":46,"hidden":0},"columnHeader":{"height":20,"hidden":0},"rightToLeft":0}},"resources":[{"name":"SHEET_UNIVER_THREAD_COMMENT_PLUGIN","data":"{}"},{"name":"SHEET_RANGE_PROTECTION_PLUGIN","data":""},{"name":"SHEET_WORKSHEET_PROTECTION_PLUGIN","data":"{}"},{"name":"SHEET_WORKSHEET_PROTECTION_PO');
  113. DBMS_LOB.APPEND(v_context, 'INT_PLUGIN","data":"{}"},{"name":"SHEET_HYPER_LINK_PLUGIN","data":"{\"E-ZBgdonv3JP-AKiPx-Dz\":[]}"},{"name":"SHEET_DRAWING_PLUGIN","data":"{}"},{"name":"SHEET_CONDITIONAL_FORMATTING_PLUGIN","data":""},{"name":"SHEET_DEFINED_NAME_PLUGIN","data":"{}"},{"name":"SHEET_RANGE_THEME_MODEL_PLUGIN","data":"{}"},{"name":"SHEET_FILTER_PLUGIN","data":"{}"},{"name":"SHEET_DATA_VALIDATION_PLUGIN","data":"{}"},{"name":"SHEET_AuthzIoMockService_PLUGIN","data":"{}"}]}');
  114. UPDATE report_version SET f_snapshot = v_context WHERE f_id = '623183857306304837';
  115. END;
  116. /
  117. INSERT INTO report_version ("F_SORT_LIST","F_ENABLED_MARK","F_CELLS","F_TENANT_ID","F_CREATOR_USER_ID","F_LAST_MODIFY_USER_ID","F_DELETE_MARK","F_DELETE_USER_ID","F_DELETE_TIME","F_CONVERT_CONFIG","F_QUERY_LIST","F_DESCRIPTION","F_VERSION","F_SORT_CODE","F_STATE","F_ID","F_LAST_MODIFY_TIME","F_TEMPLATE_ID","F_CREATOR_TIME","F_SNAPSHOT") VALUES ('[]',1,'context','0','349057407209541','349057407209541',Null,Null,Null,'[{"field":"user.sex","type":"select","config":{"dataType":"dictionary","options":[],"dictionaryType":"963255a34ea64a2584c5d1ba269c1fe6","propsValue":"enCode","format":"yyyy-MM-dd","precision":0,"thousands":false}}]','context',Null,1,1,1,'623200369010278981',to_date('2024-11-04 19:19:58', 'yyyy-mm-dd hh24:mi:ss'),'623200368804758085',to_date('2024-11-04 19:15:48', 'yyyy-mm-dd hh24:mi:ss'),'context');
  118. DECLARE
  119. -- 此表为:report_version
  120. v_context NCLOB;
  121. BEGIN
  122. DBMS_LOB.CREATETEMPORARY(v_context,TRUE);
  123. DBMS_LOB.APPEND(v_context, '{"cells":[{"col":"0","row":"0","sheet":"Eh_Jx6bicu3SB2VKA8XcS","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"5","row":"1","sheet":"Eh_Jx6bicu3SB2VKA8XcS","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"0","row":"2","sheet":"Eh_Jx6bicu3SB2VKA8XcS","type":"dataSource","custom":{"field":"user.orgname","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"1","row":"2","sheet":"Eh_Jx6bicu3SB2VKA8XcS","type":"dataSource","custom":{"field":"user.depName","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"2","row":"2","sheet":"Eh_Jx6bicu3SB2VKA8XcS","type":"dataSource","custom":{"field":"user.education","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellT');
  124. DBMS_LOB.APPEND(v_context, 'ype":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"3","row":"2","sheet":"Eh_Jx6bicu3SB2VKA8XcS","type":"dataSource","custom":{"field":"user.sex","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"4","row":"2","sheet":"Eh_Jx6bicu3SB2VKA8XcS","type":"dataSource","custom":{"field":"user.username","polymerizationType":"1","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"5","row":"2","sheet":"Eh_Jx6bicu3SB2VKA8XcS","type":"dataSource","custom":{"field":"user.salary","polymerizationType":"1","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"4","row":"3","sheet":"Eh_Jx6bicu3SB2VKA8XcS","type":"dataSource","custom":{"field":"user.username","polymerizationType":"3","s');
  125. DBMS_LOB.APPEND(v_context, 'ummaryType":"count","fillDirection":"portrait","leftParentCellType":"none","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"none","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"5","row":"3","sheet":"Eh_Jx6bicu3SB2VKA8XcS","type":"dataSource","custom":{"field":"user.salary","polymerizationType":"3","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"none","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"none","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}}],"floatEcharts":{},"floatImages":{}}');
  126. UPDATE report_version SET f_cells = v_context WHERE f_id = '623200369010278981';
  127. END;
  128. /
  129. DECLARE
  130. -- 此表为:report_version
  131. v_context NCLOB;
  132. BEGIN
  133. DBMS_LOB.CREATETEMPORARY(v_context,TRUE);
  134. DBMS_LOB.APPEND(v_context, '[{"sheet":"Eh_Jx6bicu3SB2VKA8XcS","sheetName":"Sheet1","queryList":[{"id":"b48bbead2d724219a586ef9664ad002f","vModel":"user.orgname","label":"组织","type":"select","searchType":1,"searchMultiple":true,"config":{"dataType":"static","propsUrl":"","propsName":"","dictionaryType":"","options":[{"id":"上海","fullName":"上海"},{"id":"北京","fullName":"北京"},{"id":"广东","fullName":"广东"}],"propsValue":"id"},"options":[],"props":{"label":"fullName","value":"id"}},{"id":"bb4f8933ff614d7686c5708f9ae9d5eb","vModel":"user.education","label":"学历","type":"select","searchType":1,"searchMultiple":true,"config":{"dataType":"static","propsUrl":"","propsName":"","dictionaryType":"","options":[{"id":"中专","fullName":"中专"},{"id":"博士","fullName":"博士"},{"id":"博士后","fullName":"博士后"},{"id":"大专","fullName":"大专"},{"id":"本科","fullName":"本科"},{"id":"小学","fullName":"小学"},{"id":"硕士","fullName":"硕士"},{"id":"高中","fullName":"高中"}],"propsValue":"id"},"options":[],"props":{"label":"fullName","value":"id"}},{"id":"e77eab1ef3cd46a2a4f77adfe64540cf","vModel":"user.sex","label":"性别","type":"select","searchType":1,"searchMultiple":true,"config":{"dataType":"dictionary","propsUrl":"","propsName":"","dictionaryType":"963255a34ea64a2584c5d1ba269c1fe6","options":[],"propsValue":"enCode"},"options":[],"props":{"label":"fullName","value":"id"}},{"id":"57cd8e8807fb47e5b0e114c2c4493325","vModel":"user.username","label":"姓名","type":"input","searchType":2,"config":{"dataType":"static","options":[],"dictionaryType":"","propsValue":"id","f');
  135. DBMS_LOB.APPEND(v_context, 'ormat":"yyyy-MM-dd","precision":0,"thousands":false}}]}]');
  136. UPDATE report_version SET f_query_list = v_context WHERE f_id = '623200369010278981';
  137. END;
  138. /
  139. DECLARE
  140. -- 此表为:report_version
  141. v_context NCLOB;
  142. BEGIN
  143. DBMS_LOB.CREATETEMPORARY(v_context,TRUE);
  144. DBMS_LOB.APPEND(v_context, '{"id":"_cMcfw","sheetOrder":["Eh_Jx6bicu3SB2VKA8XcS"],"name":"","appVersion":"0.4.2","locale":"zhCN","styles":{"uecxVJ":{"ff":"Arial","fs":24,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"st":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"ol":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(53,50,43)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"3LKAMa":{"ff":"Arial","fs":14,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(39,79,238)"},"ht":2,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"DlMx-0":{"ff":"Arial","fs":14,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(39,79,238)"},"ht":2,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"oRuSSJ":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb');
  145. DBMS_LOB.APPEND(v_context, '":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"Yy0ZX6":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"8ILWhL":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":3,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"LZ27V0":{"ff":"Arial","fs":12,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgb(251,137,55)"}},"st":{"s":0,"cl":{"rgb":"rgb(251,137,55)"}},"ol":{"s":0,"cl":{"rgb":"rgb(251,137,55)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(251,137,55)"},"bg":{"rgb":"rgb(251,137,55)"},"ht":3,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":null');
  146. DBMS_LOB.APPEND(v_context, '}},"ZRFu7K":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"st":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"ol":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(53,50,43)"},"bg":{"rgb":"rgb(251,137,55)"},"ht":3,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"DuzGPi":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"st":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"ol":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(53,50,43)"},"bg":{"rgb":"rgb(251,137,55)"},"ht":3,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"l":null,"t":null}},"FgxYUY":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":0,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"t":null}},"UWFE6A":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":3,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2}},"ekE1b4":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,');
  147. DBMS_LOB.APPEND(v_context, '"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":1,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"n":{"pattern":"yyyy-mm-dd"}},"GHFEj_":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":0,"tb":2,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"PUc07t":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"_OA6fO":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"MlJYqQ":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,');
  148. DBMS_LOB.APPEND(v_context, '0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":2,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"iIkI77":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"JeadxA":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":2,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"YvQmq_":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"#1e222b"}},"st":{"s":0,"cl":{"rgb":"#1e222b"}},"ol":{"s":0,"cl":{"rgb":"#1e222b"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"#1e222b"},"ht":2,"vt":2,"tb":2,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":null}},"DsGAW9":{"ff":"Arial","fs":12,"');
  149. DBMS_LOB.APPEND(v_context, 'it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"#1e222b"}},"st":{"s":0,"cl":{"rgb":"#1e222b"}},"ol":{"s":0,"cl":{"rgb":"#1e222b"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"#1e222b"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"l":null,"t":null}},"bcbR9-":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"#1e222b"}},"st":{"s":0,"cl":{"rgb":"#1e222b"}},"ol":{"s":0,"cl":{"rgb":"#1e222b"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"#1e222b"},"ht":2,"vt":2,"tb":2,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"l":null,"t":null}},"LR4l_C":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"#1e222b"}},"st":{"s":0,"cl":{"rgb":"#1e222b"}},"ol":{"s":0,"cl":{"rgb":"#1e222b"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"#1e222b"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"l":null,"t":null}},"DKsuYE":{"ff":"Arial","fs":12,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"#1e222b"}},"st":{"s":0,"cl":{"rgb":"#1e222b"}},"ol":{"s":0,"cl":{"rgb":"#1e222b"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"#1e222b"},"bg":{"rgb":"rgb(251,137,55)"},"ht":3,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":null}},"v98rvB":{"ff":"Arial","fs":14,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)');
  150. DBMS_LOB.APPEND(v_context, '"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(39,79,238)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"wX2NbV":{"ff":"Arial","fs":14,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(39,79,238)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"v6bAvq":{"ff":"Arial","fs":14,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"#4567ED"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"m836YM":{"ff":"Arial","fs":14,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0');
  151. DBMS_LOB.APPEND(v_context, ',"v":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"#4567ED"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"UQLHf8":{"ff":"Arial","fs":14,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"#475a75"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"uhxAvH":{"ff":"Arial","fs":14,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"#475a75"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"22UodG":{"ff":"Arial","fs":14,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"#0c69eb"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"');
  152. DBMS_LOB.APPEND(v_context, '},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"Ote7GO":{"ff":"Arial","fs":14,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"#0c69eb"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"85s5iy":{"ff":"Arial","fs":14,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"#2F55EB"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"ZWl-Cg":{"ff":"Arial","fs":14,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"#2F55EB"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"hMTf-P":{"ff":"Arial","fs":14,"');
  153. DBMS_LOB.APPEND(v_context, 'it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"#227bf7"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"72veaa":{"ff":"Arial","fs":14,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"#227bf7"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"8HBZiX":{"ff":"Arial","fs":14,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"#1476ff"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"FjyYnt":{"ff":"Arial","fs":14,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl"');
  154. DBMS_LOB.APPEND(v_context, ':{"rgb":"rgb(255,255,255)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"#1476ff"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"l":null}},"UGpA-z":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"#1e222b"}},"st":{"s":0,"cl":{"rgb":"#1e222b"}},"ol":{"s":0,"cl":{"rgb":"#1e222b"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"#1e222b"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"l":null,"t":null},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"LS6wbd":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"st":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"ol":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(53,50,43)"},"bg":{"rgb":"rgb(251,137,55)"},"ht":3,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"l":null,"t":null},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"fE2NkW":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"st":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"ol":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(53,50,43)"},"bg":{"rgb":"rgb(251,137,55)"},"ht":3,"vt":0,"tb":2,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{');
  155. DBMS_LOB.APPEND(v_context, '"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"kik7qU":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"st":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"ol":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(53,50,43)"},"bg":{"rgb":"rgb(251,137,55)"},"ht":2,"vt":0,"tb":2,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":null}},"VLEizt":{"ff":"Arial","fs":24,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"st":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"ol":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(53,50,43)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#FFFFFF"}},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"s":1,"cl":{"rgb":"#FFFFFF"}}}},"KZ1C-t":{"ff":"Arial","fs":24,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"st":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"ol":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(53,50,43)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"s":1,"cl":{"rgb":"#FFFFFF"}}}},"lYauvg":{"ff":"Arial","fs":24,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"st":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"ol":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"tr":{"a":0,"v":0},"td":0');
  156. DBMS_LOB.APPEND(v_context, ',"cl":{"rgb":"rgb(53,50,43)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"s":1,"cl":{"rgb":"#FFFFFF"}},"t":{"s":1,"cl":{"rgb":"#FFFFFF"}}}},"-56Kck":{"bd":{"l":null}},"Hm8jgl":{"ff":"Arial","fs":14,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"#1476ff"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#FFFFFF"}},"r":{"s":1,"cl":{"rgb":"#FFFFFF"}},"t":{"s":1,"cl":{"rgb":"#FFFFFF"}},"b":{"s":1,"cl":{"rgb":"#FFFFFF"}}}},"v-24mu":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"#1e222b"}},"st":{"s":0,"cl":{"rgb":"#1e222b"}},"ol":{"s":0,"cl":{"rgb":"#1e222b"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"#1e222b"},"ht":2,"vt":2,"tb":2,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#FFFFFF"}},"r":{"s":1,"cl":{"rgb":"#FFFFFF"}},"b":{"s":1,"cl":{"rgb":"#FFFFFF"}},"t":{"s":1,"cl":{"rgb":"#FFFFFF"}}}},"v_HfGt":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"#1e222b"}},"st":{"s":0,"cl":{"rgb":"#1e222b"}},"ol":{"s":0,"cl":{"rgb":"#1e222b"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"#1e222b"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#FFFFFF"}},"b":{"s":1,"cl":{"rgb":"#FFFFFF"}},"l":{"s":1,"cl":{"rgb":"#FFFFFF"}},"t":{"s":1,"cl":{"rgb":"#FFFFFF"}}}},"eUxxeU":{');
  157. DBMS_LOB.APPEND(v_context, '"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"#1e222b"}},"st":{"s":0,"cl":{"rgb":"#1e222b"}},"ol":{"s":0,"cl":{"rgb":"#1e222b"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"#1e222b"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#FFFFFF"}},"b":{"s":1,"cl":{"rgb":"#FFFFFF"}},"l":{"s":1,"cl":{"rgb":"#FFFFFF"}},"t":{"s":1,"cl":{"rgb":"#FFFFFF"}}},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"ZUKFld":{"ff":"Arial","fs":12,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"#1e222b"}},"st":{"s":0,"cl":{"rgb":"#1e222b"}},"ol":{"s":0,"cl":{"rgb":"#1e222b"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"#1e222b"},"bg":{"rgb":"rgb(251,137,55)"},"ht":3,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#FFFFFF"}},"b":{"s":1,"cl":{"rgb":"#FFFFFF"}},"t":{"s":1,"cl":{"rgb":"#FFFFFF"}}}},"Bx5ZOv":{"ff":"Arial","fs":12,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgb(251,137,55)"}},"st":{"s":0,"cl":{"rgb":"rgb(251,137,55)"}},"ol":{"s":0,"cl":{"rgb":"rgb(251,137,55)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(251,137,55)"},"bg":{"rgb":"rgb(251,137,55)"},"ht":3,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"s":1,"cl":{"rgb":"#FFFFFF"}},"t":{"s":1,"cl":{"rgb":"#FFFFFF"}}}},"nLnBBo":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"st":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"ol":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(53,50,43)"},"bg":{"rgb');
  158. DBMS_LOB.APPEND(v_context, '":"rgb(251,137,55)"},"ht":2,"vt":0,"tb":2,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#FFFFFF"}},"r":{"s":1,"cl":{"rgb":"#FFFFFF"}},"b":{"s":1,"cl":{"rgb":"#FFFFFF"}},"t":{"s":1,"cl":{"rgb":"#FFFFFF"}}}},"hU8g4A":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"st":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"ol":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(53,50,43)"},"bg":{"rgb":"rgb(251,137,55)"},"ht":3,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#FFFFFF"}},"b":{"s":1,"cl":{"rgb":"#FFFFFF"}},"l":{"s":1,"cl":{"rgb":"#FFFFFF"}},"t":{"s":1,"cl":{"rgb":"#FFFFFF"}}},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"T9ZVIu":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":0,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{}},"vHs82n":{"ff":"Arial","fs":14,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"#1476ff"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#FFFFFF"}},"r":{"s":1,"cl":{"rgb":"#FFFFFF"}},"t":{"s":1,"cl":{"rgb":"#FFFFFF"}}}},"Xk2Rw5":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0');
  159. DBMS_LOB.APPEND(v_context, ',"cl":{"rgb":"#1e222b"}},"st":{"s":0,"cl":{"rgb":"#1e222b"}},"ol":{"s":0,"cl":{"rgb":"#1e222b"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"#1e222b"},"ht":2,"vt":2,"tb":2,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"4n6jyh":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"#1e222b"}},"st":{"s":0,"cl":{"rgb":"#1e222b"}},"ol":{"s":0,"cl":{"rgb":"#1e222b"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"#1e222b"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"d0FA0C":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"#1e222b"}},"st":{"s":0,"cl":{"rgb":"#1e222b"}},"ol":{"s":0,"cl":{"rgb":"#1e222b"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"#1e222b"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"HTX_qK":{"ff":"Arial","fs":12,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"#1e222b"}},"st":{"s":0,"cl":{"rgb":"#1e222b"}},"ol":{"s":0,"cl":{"rgb":"#1e222b"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"#1e222b"},"bg":{"rgb":"rgb(251,137,55)"},"ht":3,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"');
  160. DBMS_LOB.APPEND(v_context, 'rgb":"#FFFFFF"}},"b":{"s":1,"cl":{"rgb":"#FFFFFF"}}}},"tLhugi":{"ff":"Arial","fs":12,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgb(251,137,55)"}},"st":{"s":0,"cl":{"rgb":"rgb(251,137,55)"}},"ol":{"s":0,"cl":{"rgb":"rgb(251,137,55)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(251,137,55)"},"bg":{"rgb":"rgb(251,137,55)"},"ht":3,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"s":1,"cl":{"rgb":"#FFFFFF"}}}},"jI79Ko":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"st":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"ol":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(53,50,43)"},"bg":{"rgb":"rgb(251,137,55)"},"ht":2,"vt":0,"tb":2,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#FFFFFF"}},"r":{"s":1,"cl":{"rgb":"#FFFFFF"}},"b":{"s":1,"cl":{"rgb":"#FFFFFF"}}}},"yxfl8-":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"st":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"ol":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(53,50,43)"},"bg":{"rgb":"rgb(251,137,55)"},"ht":3,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#FFFFFF"}},"b":{"s":1,"cl":{"rgb":"#FFFFFF"}},"l":{"s":1,"cl":{"rgb":"#FFFFFF"}}},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"RMcZvW":{"ff":"Arial","fs":12,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"#1e222b"}},"st":{"s":0,"cl":{"rgb":"#1e222b"}},"ol":{"s":0,"cl":{"rgb":"#1e222b"}},"tr":{"a":');
  161. DBMS_LOB.APPEND(v_context, '0,"v":0},"td":0,"cl":{"rgb":"#1e222b"},"bg":{"rgb":"#FF8C51"},"ht":3,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#FFFFFF"}},"b":{"s":1,"cl":{"rgb":"#FFFFFF"}}}},"C0ZAQK":{"ff":"Arial","fs":12,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgb(251,137,55)"}},"st":{"s":0,"cl":{"rgb":"rgb(251,137,55)"}},"ol":{"s":0,"cl":{"rgb":"rgb(251,137,55)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(251,137,55)"},"bg":{"rgb":"#FF8C51"},"ht":3,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"s":1,"cl":{"rgb":"#FFFFFF"}}}},"6FtpAu":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"st":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"ol":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(53,50,43)"},"bg":{"rgb":"#FF8C51"},"ht":2,"vt":0,"tb":2,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#FFFFFF"}},"r":{"s":1,"cl":{"rgb":"#FFFFFF"}},"b":{"s":1,"cl":{"rgb":"#FFFFFF"}}}},"kuDWac":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"st":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"ol":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(53,50,43)"},"bg":{"rgb":"#FF8C51"},"ht":3,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#FFFFFF"}},"b":{"s":1,"cl":{"rgb":"#FFFFFF"}},"l":{"s":1,"cl":{"rgb":"#FFFFFF"}}},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"-l-j-h":{"ff":"Arial","fs":12,"it":0,"bl":1,"ul"');
  162. DBMS_LOB.APPEND(v_context, ':{"s":0,"cl":{"rgb":"#1e222b"}},"st":{"s":0,"cl":{"rgb":"#1e222b"}},"ol":{"s":0,"cl":{"rgb":"#1e222b"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"#1e222b"},"bg":{"rgb":"#FDC49B"},"ht":3,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#FFFFFF"}},"b":{"s":1,"cl":{"rgb":"#FFFFFF"}}}},"3sqGgY":{"ff":"Arial","fs":12,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgb(251,137,55)"}},"st":{"s":0,"cl":{"rgb":"rgb(251,137,55)"}},"ol":{"s":0,"cl":{"rgb":"rgb(251,137,55)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(251,137,55)"},"bg":{"rgb":"#FDC49B"},"ht":3,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"s":1,"cl":{"rgb":"#FFFFFF"}}}},"nb4IjH":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"st":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"ol":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(53,50,43)"},"bg":{"rgb":"#FDC49B"},"ht":2,"vt":0,"tb":2,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#FFFFFF"}},"r":{"s":1,"cl":{"rgb":"#FFFFFF"}},"b":{"s":1,"cl":{"rgb":"#FFFFFF"}}}},"HPHgPE":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"st":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"ol":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(53,50,43)"},"bg":{"rgb":"#FDC49B"},"ht":3,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#FFFFFF"}},"b":{"s":1,"cl":{"rgb":"#FFFFFF"}},"l":{"s":1,"c');
  163. DBMS_LOB.APPEND(v_context, 'l":{"rgb":"#FFFFFF"}}},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"hdQ2ih":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"#1e222b"}},"st":{"s":0,"cl":{"rgb":"#1e222b"}},"ol":{"s":0,"cl":{"rgb":"#1e222b"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"#1e222b"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"2KKOQW":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"#1e222b"}},"st":{"s":0,"cl":{"rgb":"#1e222b"}},"ol":{"s":0,"cl":{"rgb":"#1e222b"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"#1e222b"},"ht":1,"vt":2,"tb":2,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"L9T7Dl":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"st":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"ol":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"tr":{"a":0,"v":0},"td":0,"cl":{"rgb":"rgb(53,50,43)"},"bg":{"rgb":"#FDC49B"},"ht":3,"vt":0,"tb":2,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#FFFFFF"}},"r":{"s":1,"cl":{"rgb":"#FFFFFF"}},"b":{"s":1,"cl":{"rgb":"#FFFFFF"}}}}},"sheets":{"Eh_Jx6bicu3SB2VKA8XcS":{"id":"Eh_Jx6bicu3SB2VKA8XcS","name":"Sheet1","tabColor":"","hidden":0,"rowCount":1000,"columnCount":20,"zoomRatio":1,"freeze":{"xSplit":0,"ySplit":0,"startRow":-1,"startColumn":-1},');
  164. DBMS_LOB.APPEND(v_context, '"scrollTop":0,"scrollLeft":0,"defaultColumnWidth":88,"defaultRowHeight":24,"mergeData":[{"startRow":0,"endRow":0,"startColumn":0,"endColumn":5},{"startRow":3,"endRow":3,"startColumn":0,"endColumn":3}],"cellData":{"0":{"0":{"v":"人员花名册","s":"VLEizt","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""},"t":1},"1":{"s":"KZ1C-t"},"2":{"s":"KZ1C-t"},"3":{"s":"KZ1C-t"},"4":{"s":"KZ1C-t"},"5":{"s":"lYauvg"},"6":{"s":"-56Kck"}},"1":{"0":{"v":"组织","t":1,"s":"vHs82n"},"1":{"v":"部门","t":1,"s":"vHs82n"},"2":{"v":"学历","t":1,"s":"vHs82n"},"3":{"v":"性别","t":1,"s":"vHs82n"},"4":{"v":"姓名","t":1,"s":"vHs82n"},"5":{"v":"薪资","s":"vHs82n","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""},"t":1},"6":{"s":"-56Kck"}},"2":{"0":{"v":"${user.orgname}","t":1,"s":"Xk2Rw5","custom":{"field":"user.orgname","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"1":{"v":"${user.depName}","t":1,"s":"hdQ2ih","custom":{"field":"user.depName","polymerizationType":"2","summaryType":"sum","fil');
  165. DBMS_LOB.APPEND(v_context, 'lDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"2":{"v":"${user.education}","t":1,"s":"2KKOQW","custom":{"field":"user.education","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"3":{"v":"${user.sex}","t":1,"s":"4n6jyh","custom":{"field":"user.sex","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"4":{"v":"${user.username}","t":1,"s":"hdQ2ih","custom":{"field":"user.username","polymerizationType":"1","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"5":{"v":"${user.salary}","t":1,"s":"d0FA0C","custom":{"field":"user.salary","polymerizationType":"1","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"def');
  166. DBMS_LOB.APPEND(v_context, 'ault","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"6":{"s":"-56Kck"}},"3":{"0":{"v":"合计:","t":1,"s":"-l-j-h"},"1":{"s":"3sqGgY"},"2":{"s":"3sqGgY"},"3":{"s":"3sqGgY"},"4":{"v":"${user.username}","t":1,"s":"L9T7Dl","custom":{"field":"user.username","polymerizationType":"3","summaryType":"count","fillDirection":"portrait","leftParentCellType":"none","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"none","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"5":{"v":"${user.salary}","t":1,"s":"HPHgPE","custom":{"field":"user.salary","polymerizationType":"3","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"none","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"none","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"6":{"s":"-56Kck"}},"4":{"0":{"v":"","t":1,"s":"T9ZVIu"},"1":{"v":"","t":1,"s":"T9ZVIu"},"2":{"v":"","t":1,"s":"T9ZVIu"},"3":{"v":"","t":1,"s":"T9ZVIu"},"4":{"v":"","t":1,"s":"T9ZVIu"},"5":{"v":"","t":1,"s":"T9ZVIu"}},"5":{"0":{"v":"","t":1,"s":"FgxYUY"},"1":{"v":"","t":1,"s":"FgxYUY"},"2":{"v":"","t":1,"s":"FgxYUY"},"3":{"v":"","t":1,"s":"FgxYUY"},"4":{"v":"制表日期:","t":1,"s":"UWFE6A"},"5":{"s":"ekE1b4","f":"=NOW()","v":45679.67287037037,"t":2}}},"rowData":{"0":{"h":55},"1"');
  167. DBMS_LOB.APPEND(v_context, ':{"h":38,"ia":0},"2":{"h":41,"ia":0},"3":{"h":30,"ah":24,"ia":0},"4":{"h":24},"5":{"h":24,"ah":24}},"columnData":{"0":{"w":115},"1":{"w":137},"2":{"w":117},"3":{"w":113},"4":{"w":90},"5":{"w":151}},"showGridlines":1,"rowHeader":{"width":46,"hidden":0},"columnHeader":{"height":20,"hidden":0},"rightToLeft":0}},"resources":[{"name":"SHEET_UNIVER_THREAD_COMMENT_PLUGIN","data":"{}"},{"name":"SHEET_RANGE_PROTECTION_PLUGIN","data":""},{"name":"SHEET_WORKSHEET_PROTECTION_PLUGIN","data":"{}"},{"name":"SHEET_WORKSHEET_PROTECTION_POINT_PLUGIN","data":"{}"},{"name":"SHEET_HYPER_LINK_PLUGIN","data":"{\"Eh_Jx6bicu3SB2VKA8XcS\":[]}"},{"name":"SHEET_DRAWING_PLUGIN","data":"{}"},{"name":"SHEET_CONDITIONAL_FORMATTING_PLUGIN","data":""},{"name":"SHEET_DEFINED_NAME_PLUGIN","data":"{}"},{"name":"SHEET_RANGE_THEME_MODEL_PLUGIN","data":"{}"},{"name":"SHEET_FILTER_PLUGIN","data":"{}"},{"name":"SHEET_DATA_VALIDATION_PLUGIN","data":"{}"},{"name":"SHEET_AuthzIoMockService_PLUGIN","data":"{}"}]}');
  168. UPDATE report_version SET f_snapshot = v_context WHERE f_id = '623200369010278981';
  169. END;
  170. /
  171. INSERT INTO report_version ("F_SORT_LIST","F_ENABLED_MARK","F_CELLS","F_TENANT_ID","F_CREATOR_USER_ID","F_LAST_MODIFY_USER_ID","F_DELETE_MARK","F_DELETE_USER_ID","F_DELETE_TIME","F_CONVERT_CONFIG","F_QUERY_LIST","F_DESCRIPTION","F_VERSION","F_SORT_CODE","F_STATE","F_ID","F_LAST_MODIFY_TIME","F_TEMPLATE_ID","F_CREATOR_TIME","F_SNAPSHOT") VALUES ('[]',1,'context','0','349057407209541','349057407209541',Null,Null,Null,'[]','[{"sheet":"VkjbtPpyX8TggOO4aHSuO","sheetName":"Sheet1","queryList":[{"id":"c7a7707d08694d4c9d999876c3d97a84","vModel":"report_user.organizationName","label":"组织","type":"select","searchType":1,"searchMultiple":false,"config":{"dataType":"static","propsUrl":"","propsName":"","dictionaryType":"","options":[{"id":"上海","fullName":"上海"},{"id":"北京","fullName":"北京"},{"id":"广东","fullName":"广东"}],"propsValue":"id"},"options":[],"props":{"label":"fullName","value":"id"}}]}]',Null,1,1,1,'623204233562292805',to_date('2024-11-04 19:34:52', 'yyyy-mm-dd hh24:mi:ss'),'623204233482601029',to_date('2024-11-04 19:31:10', 'yyyy-mm-dd hh24:mi:ss'),'context');
  172. DECLARE
  173. -- 此表为:report_version
  174. v_context NCLOB;
  175. BEGIN
  176. DBMS_LOB.CREATETEMPORARY(v_context,TRUE);
  177. DBMS_LOB.APPEND(v_context, '{"cells":[{"col":"0","row":"0","sheet":"VkjbtPpyX8TggOO4aHSuO","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"0","row":"1","sheet":"VkjbtPpyX8TggOO4aHSuO","type":"dataSource","custom":{"field":"report_user.organizationName","polymerizationType":"2","summaryType":"sum","fillDirection":"landscape","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"0","row":"2","sheet":"VkjbtPpyX8TggOO4aHSuO","type":"dataSource","custom":{"field":"report_user.departmentName","polymerizationType":"2","summaryType":"sum","fillDirection":"landscape","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"0","row":"3","sheet":"VkjbtPpyX8TggOO4aHSuO","type":"dataSource","custom":{"field":"report_user.username","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"0","row":"4",');
  178. DBMS_LOB.APPEND(v_context, '"sheet":"VkjbtPpyX8TggOO4aHSuO","type":"dataSource","custom":{"field":"report_user.username","polymerizationType":"3","summaryType":"count","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"custom","topParentCellCustomRowName":"A","topParentCellCustomColName":"3","type":"dataSource"}}],"floatEcharts":{},"floatImages":{}}');
  179. UPDATE report_version SET f_cells = v_context WHERE f_id = '623204233562292805';
  180. END;
  181. /
  182. DECLARE
  183. -- 此表为:report_version
  184. v_context NCLOB;
  185. BEGIN
  186. DBMS_LOB.CREATETEMPORARY(v_context,TRUE);
  187. DBMS_LOB.APPEND(v_context, '{"id":"GVaLEc","sheetOrder":["VkjbtPpyX8TggOO4aHSuO"],"name":"","appVersion":"0.4.2","locale":"zhCN","styles":{"7zkWyq":{"ff":"Arial","fs":20,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2}},"oLh33o":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"pe2oi6":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(192,200,212)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"i-Nz_l":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0');
  188. DBMS_LOB.APPEND(v_context, '},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":0,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"17yxoW":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,225,205)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"xHAIn7":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"LNCLmO":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"');
  189. DBMS_LOB.APPEND(v_context, 'cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"JTcqo4":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,225,205)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}}},"sheets":{"VkjbtPpyX8TggOO4aHSuO":{"id":"VkjbtPpyX8TggOO4aHSuO","name":"Sheet1","tabColor":"","hidden":0,"rowCount":1000,"columnCount":20,"zoomRatio":1,"freeze":{"xSplit":0,"ySplit":0,"startRow":-1,"startColumn":-1},"scrollTop":0,"scrollLeft":0,"defaultColumnWidth":88,"defaultRowHeight":24,"mergeData":[],"cellData":{"0":{"0":{"v":"人员花名册","s":"7zkWyq","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""},"t":1}},"1":{"0":{"v":"${report_user.organizationName}","t":1,"s":"oLh33o","custom":{"field":"report_user.organizationName","polymerizationType":"2","summaryType":"sum","fillDirection":"landscape","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}}},"2":{"0":{"v":"${report_user.departmentName}","t":1,"s":"pe2o');
  190. DBMS_LOB.APPEND(v_context, 'i6","custom":{"field":"report_user.departmentName","polymerizationType":"2","summaryType":"sum","fillDirection":"landscape","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}}},"3":{"0":{"v":"${report_user.username}","t":1,"s":"LNCLmO","custom":{"field":"report_user.username","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}}},"4":{"0":{"v":"${report_user.username}","t":1,"s":"17yxoW","custom":{"field":"report_user.username","polymerizationType":"3","summaryType":"count","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"custom","topParentCellCustomRowName":"A","topParentCellCustomColName":"3","type":"dataSource"}}}},"rowData":{"0":{"h":44,"ah":32,"ia":0},"1":{"h":24,"ah":24},"2":{"h":24,"ah":24},"3":{"h":24,"ah":24},"4":{"h":24,"ah":24}},"columnData":{"0":{"w":146.92735290527344}},"showGridlines":1,"rowHeader":{"width":46,"hidden":0},"columnHeader":{"height":20,"hidden":0},"rightToLeft":0}},"resources":[{"name":"SHEET_UNIVER_THREAD_COMMENT_PLUGIN","data":"{}"},{"name":"SHEET_RANGE_PROTECTION_PLU');
  191. DBMS_LOB.APPEND(v_context, 'GIN","data":""},{"name":"SHEET_WORKSHEET_PROTECTION_PLUGIN","data":"{}"},{"name":"SHEET_WORKSHEET_PROTECTION_POINT_PLUGIN","data":"{}"},{"name":"SHEET_HYPER_LINK_PLUGIN","data":"{\"VkjbtPpyX8TggOO4aHSuO\":[]}"},{"name":"SHEET_DRAWING_PLUGIN","data":"{}"},{"name":"SHEET_CONDITIONAL_FORMATTING_PLUGIN","data":""},{"name":"SHEET_DEFINED_NAME_PLUGIN","data":"{}"},{"name":"SHEET_RANGE_THEME_MODEL_PLUGIN","data":"{}"},{"name":"SHEET_FILTER_PLUGIN","data":"{}"},{"name":"SHEET_DATA_VALIDATION_PLUGIN","data":"{}"},{"name":"SHEET_AuthzIoMockService_PLUGIN","data":"{}"}]}');
  192. UPDATE report_version SET f_snapshot = v_context WHERE f_id = '623204233562292805';
  193. END;
  194. /
  195. INSERT INTO report_version ("F_SORT_LIST","F_ENABLED_MARK","F_CELLS","F_TENANT_ID","F_CREATOR_USER_ID","F_LAST_MODIFY_USER_ID","F_DELETE_MARK","F_DELETE_USER_ID","F_DELETE_TIME","F_CONVERT_CONFIG","F_QUERY_LIST","F_DESCRIPTION","F_VERSION","F_SORT_CODE","F_STATE","F_ID","F_LAST_MODIFY_TIME","F_TEMPLATE_ID","F_CREATOR_TIME","F_SNAPSHOT") VALUES ('[]',1,'context','0','349057407209541','349057407209541',Null,Null,Null,'[]','[{"sheet":"1wEx3S26r-bZsG_oVLwiL","sheetName":"Sheet1","queryList":[{"id":"4b39b6fa6a20495e9661b98df0faadb9","vModel":"user.orgname","label":"组织","type":"select","searchType":1,"searchMultiple":true,"config":{"dataType":"static","propsUrl":"","propsName":"","dictionaryType":"","options":[{"id":"上海","fullName":"上海"},{"id":"北京","fullName":"北京"},{"id":"广东","fullName":"广东"}],"propsValue":"id"},"options":[],"props":{"label":"fullName","value":"id"}},{"id":"d5cdfcf5fbe64e97af2039c61cc1fd77","vModel":"user.education","label":"学历","type":"select","searchType":1,"searchMultiple":true,"config":{"dataType":"static","propsUrl":"","propsName":"","dictionaryType":"","options":[{"id":"中专","fullName":"中专"},{"id":"博士","fullName":"博士"},{"id":"博士后","fullName":"博士后"},{"id":"大专","fullName":"大专"},{"id":"本科","fullName":"本科"},{"id":"小学","fullName":"小学"},{"id":"硕士","fullName":"硕士"},{"id":"高中","fullName":"高中"}],"propsValue":"id"},"options":[],"props":{"label":"fullName","value":"id"}}]}]',Null,1,1,1,'623207784581694021',to_date('2024-11-04 19:47:15', 'yyyy-mm-dd hh24:mi:ss'),'623207784506196549',to_date('2024-11-04 19:45:16', 'yyyy-mm-dd hh24:mi:ss'),'context');
  196. DECLARE
  197. -- 此表为:report_version
  198. v_context NCLOB;
  199. BEGIN
  200. DBMS_LOB.CREATETEMPORARY(v_context,TRUE);
  201. DBMS_LOB.APPEND(v_context, '{"cells":[{"col":"0","row":"0","sheet":"1wEx3S26r-bZsG_oVLwiL","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"2","row":"1","sheet":"1wEx3S26r-bZsG_oVLwiL","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"0","row":"2","sheet":"1wEx3S26r-bZsG_oVLwiL","type":"dataSource","custom":{"field":"user.orgname","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"1","row":"2","sheet":"1wEx3S26r-bZsG_oVLwiL","type":"dataSource","custom":{"field":"user.depName","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"2","row":"2","sheet":"1wEx3S26r-bZsG_oVLwiL","type":"dataSource","custom":{"field":"user.education","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellT');
  202. DBMS_LOB.APPEND(v_context, 'ype":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"3","row":"2","sheet":"1wEx3S26r-bZsG_oVLwiL","type":"dataSource","custom":{"field":"user.salary","polymerizationType":"3","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"2","row":"3","sheet":"1wEx3S26r-bZsG_oVLwiL","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}}],"floatEcharts":{},"floatImages":{}}');
  203. UPDATE report_version SET f_cells = v_context WHERE f_id = '623207784581694021';
  204. END;
  205. /
  206. DECLARE
  207. -- 此表为:report_version
  208. v_context NCLOB;
  209. BEGIN
  210. DBMS_LOB.CREATETEMPORARY(v_context,TRUE);
  211. DBMS_LOB.APPEND(v_context, '{"id":"THpPFw","sheetOrder":["1wEx3S26r-bZsG_oVLwiL"],"name":"","appVersion":"0.4.2","locale":"zhCN","styles":{"JeXbVz":{"ff":"Arial","fs":20,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"t":null,"b":null,"l":null,"r":null}},"Yf_WAI":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"3RaoL9":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"QySq0b":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"t');
  212. DBMS_LOB.APPEND(v_context, 'd":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"CCVFpy":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"zIIK-k":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(208,217,251)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":null}},"4U28HD":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(253,206,206)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb"');
  213. DBMS_LOB.APPEND(v_context, ':"rgb(0,0,0)"},"s":1},"l":null,"t":null}},"7J9uAY":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,251,230)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":null,"l":null,"t":null}},"Ml2hDq":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":null}},"KHNrDf":{"ff":"Arial","fs":11,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(252,232,105)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":null,"t":null}},"S6NMvL":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,');
  214. DBMS_LOB.APPEND(v_context, '"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(252,232,105)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":null}},"Js1r_I":{"ff":"Arial","fs":11,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,225,205)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":null}},"WpHQtW":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,225,205)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":null}},"0k6G3K":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(252,232,105)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,2');
  215. DBMS_LOB.APPEND(v_context, '04,204)"},"s":1},"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":null},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"SjDko1":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,225,205)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":null},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"Sowfd-":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":null},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"iHFG7B":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1');
  216. DBMS_LOB.APPEND(v_context, '},"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":null}},"51uLB2":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":null}},"dqiVob":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"t":null}},"Kgy3_Q":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"jYtRgH":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(208,217,251)"},"ht":2,"vt":2,"t');
  217. DBMS_LOB.APPEND(v_context, 'b":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"kr6b38":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(253,206,206)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"s3IwDn":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,251,230)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"9c9U8p":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":');
  218. DBMS_LOB.APPEND(v_context, '{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"KOL4mW":{"bd":{}},"DJzUtE":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(208,217,251)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"LivIc5":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(253,206,206)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"WLX1vS":{"ff":"Arial","fs":11,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(252,232,105)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"ZScK4c":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":');
  219. DBMS_LOB.APPEND(v_context, '{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(252,232,105)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"yHcn_e":{"ff":"Arial","fs":11,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,225,205)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"PzN6uk":{"ff":"Arial","fs":11,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,225,205)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"quLh0x":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}');
  220. DBMS_LOB.APPEND(v_context, '},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,225,205)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"zL7gSD":{"ff":"Arial","fs":20,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"t":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"JrfS5B":{"ff":"Arial","fs":20,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"t":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"1MGObg":{"ff":"Arial","fs":20,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"t":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"s":1,"cl":{"rgb":"#CCCCCC"}}}}},"sheets":{"1wEx3');
  221. DBMS_LOB.APPEND(v_context, 'S26r-bZsG_oVLwiL":{"id":"1wEx3S26r-bZsG_oVLwiL","name":"Sheet1","tabColor":"","hidden":0,"rowCount":1000,"columnCount":20,"zoomRatio":1,"freeze":{"startRow":-1,"startColumn":-1,"ySplit":0,"xSplit":0},"scrollTop":0,"scrollLeft":0,"defaultColumnWidth":88,"defaultRowHeight":24,"mergeData":[{"startRow":0,"endRow":0,"startColumn":0,"endColumn":3},{"startRow":2,"endRow":3,"startColumn":0,"endColumn":0},{"startRow":2,"endRow":3,"startColumn":1,"endColumn":1},{"startRow":4,"endRow":4,"startColumn":0,"endColumn":2}],"cellData":{"0":{"0":{"v":"部门学历薪资分布","s":"zL7gSD","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""},"t":1},"1":{"s":"JrfS5B"},"2":{"s":"JrfS5B"},"3":{"s":"1MGObg"},"4":{"s":"KOL4mW"}},"1":{"0":{"v":"组织","t":1,"s":"iHFG7B"},"1":{"v":"部门","t":1,"s":"51uLB2"},"2":{"v":"学历","s":"dqiVob","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""},"t":1},"3":{"v":"薪资","t":1,"s":"iHFG7B"}},"2":{"0":{"v":"${user.orgname}","t":1,"s":"jYtRgH","custom":{"field":"user.orgname","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowN');
  222. DBMS_LOB.APPEND(v_context, 'ame":"","topParentCellCustomColName":"","type":"dataSource"}},"1":{"v":"${user.depName}","t":1,"s":"kr6b38","custom":{"field":"user.depName","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"2":{"v":"${user.education}","t":1,"s":"s3IwDn","custom":{"field":"user.education","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"3":{"v":"${user.salary}","t":1,"s":"9c9U8p","custom":{"field":"user.salary","polymerizationType":"3","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"4":{"s":"KOL4mW"}},"3":{"0":{"s":"DJzUtE"},"1":{"s":"LivIc5"},"2":{"v":"小计","s":"WLX1vS","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""},"t":1},"3":{"s":"ZScK4c","f":"=SUM(D3)","v":0,"t":2}');
  223. DBMS_LOB.APPEND(v_context, ',"4":{"s":"KOL4mW"}},"4":{"0":{"v":"合计","t":1,"s":"yHcn_e"},"1":{"s":"PzN6uk"},"2":{"s":"PzN6uk"},"3":{"s":"quLh0x","f":"=SUM(D4)","v":0,"t":2},"4":{"s":"KOL4mW"}},"5":{"0":{"s":"KOL4mW"},"1":{"s":"KOL4mW"},"2":{"s":"KOL4mW"},"3":{"s":"KOL4mW"}}},"rowData":{"0":{"h":60},"1":{"h":40,"ia":0},"2":{"h":34,"ah":24,"ia":0},"3":{"h":28,"ah":24,"ia":0},"4":{"h":28,"ah":24,"ia":0}},"columnData":{"0":{"w":88},"1":{"w":109},"2":{"w":122},"3":{"w":98}},"showGridlines":1,"rowHeader":{"width":46,"hidden":0},"columnHeader":{"height":20,"hidden":0},"rightToLeft":0}},"resources":[{"name":"SHEET_UNIVER_THREAD_COMMENT_PLUGIN","data":"{}"},{"name":"SHEET_RANGE_PROTECTION_PLUGIN","data":""},{"name":"SHEET_WORKSHEET_PROTECTION_PLUGIN","data":"{}"},{"name":"SHEET_WORKSHEET_PROTECTION_POINT_PLUGIN","data":"{}"},{"name":"SHEET_HYPER_LINK_PLUGIN","data":"{\"1wEx3S26r-bZsG_oVLwiL\":[]}"},{"name":"SHEET_DRAWING_PLUGIN","data":"{}"},{"name":"SHEET_CONDITIONAL_FORMATTING_PLUGIN","data":""},{"name":"SHEET_DEFINED_NAME_PLUGIN","data":"{}"},{"name":"SHEET_RANGE_THEME_MODEL_PLUGIN","data":"{}"},{"name":"SHEET_FILTER_PLUGIN","data":"{}"},{"name":"SHEET_DATA_VALIDATION_PLUGIN","data":"{}"},{"name":"SHEET_AuthzIoMockService_PLUGIN","data":"{}"}]}');
  224. UPDATE report_version SET f_snapshot = v_context WHERE f_id = '623207784581694021';
  225. END;
  226. /
  227. INSERT INTO report_version ("F_SORT_LIST","F_ENABLED_MARK","F_CELLS","F_TENANT_ID","F_CREATOR_USER_ID","F_LAST_MODIFY_USER_ID","F_DELETE_MARK","F_DELETE_USER_ID","F_DELETE_TIME","F_CONVERT_CONFIG","F_QUERY_LIST","F_DESCRIPTION","F_VERSION","F_SORT_CODE","F_STATE","F_ID","F_LAST_MODIFY_TIME","F_TEMPLATE_ID","F_CREATOR_TIME","F_SNAPSHOT") VALUES ('[]',1,'context','0','349057407209541','349057407209541',Null,Null,Null,'[{"field":"user.sex","type":"select","config":{"dataType":"dictionary","options":[],"dictionaryType":"963255a34ea64a2584c5d1ba269c1fe6","propsValue":"enCode","format":"yyyy-MM-dd","precision":0,"thousands":false}}]','[{"sheet":"wqX2Z5otdmEbeHUd2LNPB","sheetName":"Sheet1","queryList":[{"id":"95da42ed5c6a4acc91fdd41233f506e8","vModel":"user.orgname","label":"组织","type":"select","searchType":1,"searchMultiple":false,"config":{"dataType":"static","propsUrl":"","propsName":"","dictionaryType":"","options":[{"id":"上海","fullName":"上海"},{"id":"北京","fullName":"北京"},{"id":"广东","fullName":"广东"}],"propsValue":"id"},"options":[],"props":{"label":"fullName","value":"id"}},{"id":"c429a1d285c0431fb41d90af65517b60","vModel":"user.education","label":"学历","type":"select","searchType":1,"searchMultiple":false,"config":{"dataType":"static","propsUrl":"","propsName":"","dictionaryType":"","options":[{"id":"中专","fullName":"中专"},{"id":"博士","fullName":"博士"},{"id":"博士后","fullName":"博士后"},{"id":"大专","fullName":"大专"},{"id":"本科","fullName":"本科"},{"id":"小学","fullName":"小学"},{"id":"硕士","fullName":"硕士"},{"id":"高中","fullName":"高中"}],"propsValue":"id"},"options":[],"props":{"label":"fullName","value":"id"}},{"id":"695152a416e64440afd7e024050f14a8","vModel":"user.sex","label":"性别","type":"select","searchType":1,"searchMultiple":false,"config":{"dataType":"dictionary","propsUrl":"","propsName":"","dictionaryType":"963255a34ea64a2584c5d1ba269c1fe6","options":[],"propsValue":"enCode"},"options":[],"props":{"label":"fullName","value":"id"}}]}]',Null,1,1,1,'623211524311220805',to_date('2024-11-04 20:00:11', 'yyyy-mm-dd hh24:mi:ss'),'623211524235723333',to_date('2024-11-04 20:00:08', 'yyyy-mm-dd hh24:mi:ss'),'context');
  228. DECLARE
  229. -- 此表为:report_version
  230. v_context NCLOB;
  231. BEGIN
  232. DBMS_LOB.CREATETEMPORARY(v_context,TRUE);
  233. DBMS_LOB.APPEND(v_context, '{"cells":[{"col":"0","row":"0","sheet":"wqX2Z5otdmEbeHUd2LNPB","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"2","row":"1","sheet":"wqX2Z5otdmEbeHUd2LNPB","type":"dataSource","custom":{"field":"user.education","polymerizationType":"2","summaryType":"sum","fillDirection":"landscape","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"3","row":"1","sheet":"wqX2Z5otdmEbeHUd2LNPB","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"2","row":"2","sheet":"wqX2Z5otdmEbeHUd2LNPB","type":"dataSource","custom":{"field":"user.sex","polymerizationType":"2","summaryType":"sum","fillDirection":"landscape","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"0","row":"3","sheet":"wqX2Z5otdmEbeHUd2LNPB","type":"dataSource","custom":{"field":"user.orgname","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellTyp');
  234. DBMS_LOB.APPEND(v_context, 'e":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"1","row":"3","sheet":"wqX2Z5otdmEbeHUd2LNPB","type":"dataSource","custom":{"field":"user.depName","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"2","row":"3","sheet":"wqX2Z5otdmEbeHUd2LNPB","type":"dataSource","custom":{"field":"user.salary","polymerizationType":"3","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"3","row":"3","sheet":"wqX2Z5otdmEbeHUd2LNPB","custom":{"leftParentCellType":"none","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"none","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"2","row":"4","sheet":"wqX2Z5otdmEbeHUd2LNPB","type":"dataSource","custom":{"field":"user.salary","polymerizationType":"3","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"",');
  235. DBMS_LOB.APPEND(v_context, '"topParentCellType":"custom","topParentCellCustomRowName":"C","topParentCellCustomColName":"3","type":"dataSource"}},{"col":"3","row":"4","sheet":"wqX2Z5otdmEbeHUd2LNPB","custom":{"leftParentCellType":"none","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"none","topParentCellCustomRowName":"","topParentCellCustomColName":""}}],"floatEcharts":{},"floatImages":{}}');
  236. UPDATE report_version SET f_cells = v_context WHERE f_id = '623211524311220805';
  237. END;
  238. /
  239. DECLARE
  240. -- 此表为:report_version
  241. v_context NCLOB;
  242. BEGIN
  243. DBMS_LOB.CREATETEMPORARY(v_context,TRUE);
  244. DBMS_LOB.APPEND(v_context, '{"id":"4zip_g","sheetOrder":["wqX2Z5otdmEbeHUd2LNPB"],"name":"","appVersion":"0.4.2","locale":"zhCN","styles":{"58QHi5":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":0,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":null}},"wOi_9j":{"ff":"Arial","fs":18,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"b":null}},"msZQMF":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(20,115,247)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(255,255,255)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(255,255,255)"},"s":1}}},"qDgP-d":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(20,115,247)"},"ht":2,"vt":2,"tb":3,"pd"');
  245. DBMS_LOB.APPEND(v_context, ':{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"l":null}},"1ESivA":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,225,205)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"l":null}},"rfD1oF":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(20,115,247)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"l":null,"t":null}},"2g_c4G":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(208,217,251)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":null}},"aGjTRp":');
  246. DBMS_LOB.APPEND(v_context, '{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(253,206,206)"},"ht":0,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"l":null,"t":null}},"3bpjb8":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,251,230)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"l":null,"t":null}},"tqjEbI":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,225,205)"},"ht":0,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"l":null}},"ob-NKh":{"ff":"Arial","fs":11,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr"');
  247. DBMS_LOB.APPEND(v_context, ':{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,225,205)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":null}},"VtA24e":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,225,205)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":null}},"pwDo2f":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,225,205)"},"ht":0,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"l":null,"t":null}},"7DQ5zh":{"ff":"Arial","fs":18,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"b":null}},"uB6w-x":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb');
  248. DBMS_LOB.APPEND(v_context, '":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":0,"vt":0,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":null}},"8X6pD4":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(20,115,247)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"cl":{"rgb":"rgb(255,255,255)"},"s":1},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"cl":{"rgb":"rgb(255,255,255)"},"s":1},"tl_br":null,"tl_bc":null,"tl_mr":null}},"ar0tOI":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(20,115,247)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(255,255,255)"},"s":1},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"cl":{"rgb":"rgb(255,255,255)"},"s":1}}},"B6igWY":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(20,115,');
  249. DBMS_LOB.APPEND(v_context, '247)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"8U7vlg":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,225,205)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"8vfjZO":{"bd":{"l":null,"t":null}},"HOPy4F":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(20,115,247)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"cl":{"rgb":"rgb(255,255,255)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(255,255,255)"},"s":1}}},"P_F-pC":{"ff":"Arial","fs":12,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,225,205)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":');
  250. DBMS_LOB.APPEND(v_context, '{"rgb":"#CCCCCC"}},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"iilyAL":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(208,217,251)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"rJISY1":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(253,206,206)"},"ht":0,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"EhYHwE":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,251,230)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"vUCx5y"');
  251. DBMS_LOB.APPEND(v_context, ':{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,225,205)"},"ht":0,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"0eILXQ":{"ff":"Arial","fs":11,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,225,205)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"KggrlT":{"ff":"Arial","fs":11,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,225,205)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"-UMX7g":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"');
  252. DBMS_LOB.APPEND(v_context, '}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,225,205)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"dnYCfr":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,251,230)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"ThYhcl":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,225,205)"},"ht":0,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}}},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"fq-YJQ":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl');
  253. DBMS_LOB.APPEND(v_context, '":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,225,205)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"yrAKIF":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(20,115,247)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"cl":{"rgb":"rgb(255,255,255)"},"s":1},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"cl":{"rgb":"rgb(255,255,255)"},"s":1},"tl_br":{"s":1,"cl":{"rgb":"#000000"}},"tl_bc":{"s":1,"cl":{"rgb":"#000000"}},"tl_mr":{"s":1,"cl":{"rgb":"#000000"}}}},"mKivtX":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(20,115,247)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"cl":{"rgb":"rgb(255,255,255)"},"s":1},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"cl":{"rgb":"rgb(255,255,255)"},"s":1},"tl_br":{"s":1,"cl":{"rgb":"#FFFFFF"}},"tl_bc":{"s":1,"cl":{"rgb":"#FFFFFF"}},"tl_mr":{"s":1,"cl":{"rgb":"#FFFFFF"}}}}},"');
  254. DBMS_LOB.APPEND(v_context, 'sheets":{"wqX2Z5otdmEbeHUd2LNPB":{"id":"wqX2Z5otdmEbeHUd2LNPB","name":"Sheet1","tabColor":"","hidden":0,"rowCount":1000,"columnCount":19,"zoomRatio":1,"freeze":{"xSplit":0,"ySplit":0,"startRow":-1,"startColumn":-1},"scrollTop":0,"scrollLeft":0,"defaultColumnWidth":88,"defaultRowHeight":24,"mergeData":[{"startRow":0,"endRow":0,"startColumn":0,"endColumn":3},{"startRow":1,"endRow":2,"startColumn":0,"endColumn":1},{"startRow":1,"endRow":2,"startColumn":3,"endColumn":3},{"startRow":4,"endRow":4,"startColumn":0,"endColumn":1}],"cellData":{"0":{"0":{"v":"各部门学历薪资分布","s":"7DQ5zh","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""},"t":1},"1":{"s":"7DQ5zh"},"2":{"s":"7DQ5zh"},"3":{"s":"7DQ5zh"}},"1":{"0":{"s":"mKivtX","p":{"id":"__INTERNAL_EDITOR__DOCS_NORMAL","documentStyle":{"pageSize":{"width":279,"height":null},"marginTop":0,"marginBottom":2,"marginRight":2,"marginLeft":2,"renderConfig":{"horizontalAlign":1,"verticalAlign":2,"centerAngle":0,"vertexAngle":0,"wrapStrategy":3,"zeroWidthParagraphBreak":1}},"body":{"dataStream":" 学历\r 性别\r 薪资 \r 部门 \r\n","textRuns":[{"st":0,"ed":134,"ts":{"cl":{"rgb":"#FFFFFF"}}}],"paragraphs":[{"startIndex":54,"paragraphStyle":{"horizontalAlign":1}},{"startIndex":93,"paragraphStyle":{"hori');
  255. DBMS_LOB.APPEND(v_context, 'zontalAlign":1}},{"startIndex":124,"paragraphStyle":{"horizontalAlign":1}},{"startIndex":134,"paragraphStyle":{"horizontalAlign":1}}],"sectionBreaks":[{"startIndex":135}],"customRanges":[],"customDecorations":[]},"drawings":{},"drawingsOrder":[],"settings":{"zoomRatio":1}}},"1":{"s":"ar0tOI"},"2":{"v":"${user.education}","t":1,"s":"B6igWY","custom":{"field":"user.education","polymerizationType":"2","summaryType":"sum","fillDirection":"landscape","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"3":{"v":"合计","s":"8U7vlg","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""},"t":1},"4":{"s":"8vfjZO"}},"2":{"0":{"s":"HOPy4F"},"1":{"s":"msZQMF"},"2":{"v":"${user.sex}","t":1,"s":"B6igWY","custom":{"field":"user.sex","polymerizationType":"2","summaryType":"sum","fillDirection":"landscape","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"3":{"s":"P_F-pC"},"4":{"s":"8vfjZO"}},"3":{"0":{"v":"${user.orgname}","t":1,"s":"iilyAL","custom":{"field":"user.orgname","polymerizationType":"2","summaryType":"sum","fillDirectio');
  256. DBMS_LOB.APPEND(v_context, 'n":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"1":{"v":"${user.depName}","t":1,"s":"rJISY1","custom":{"field":"user.depName","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"2":{"v":"${user.salary}","t":1,"s":"dnYCfr","custom":{"field":"user.salary","polymerizationType":"3","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"3":{"s":"ThYhcl","f":"=SUM(C4)","v":0,"custom":{"leftParentCellType":"none","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"none","topParentCellCustomRowName":"","topParentCellCustomColName":""},"t":2},"4":{"s":"8vfjZO"}},"4":{"0":{"v":"合计","t":1,"s":"0eILXQ"},"1":{"s":"KggrlT"},"2":{"v":"${user.salary}","t":1,"s":"fq-YJQ","custom":{"field":"user.salary","polymerizationType":"3","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCel');
  257. DBMS_LOB.APPEND(v_context, 'lCustomColName":"","topParentCellType":"custom","topParentCellCustomRowName":"C","topParentCellCustomColName":"3","type":"dataSource"}},"3":{"s":"ThYhcl","f":"=SUM(C5)","v":0,"custom":{"leftParentCellType":"none","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"none","topParentCellCustomRowName":"","topParentCellCustomColName":""},"t":2},"4":{"s":"8vfjZO"}},"5":{"0":{"s":"8vfjZO"},"1":{"s":"8vfjZO"},"2":{"s":"8vfjZO"},"3":{"s":"8vfjZO"}}},"rowData":{"0":{"h":47},"1":{"h":55.090919494628906,"ah":36,"ia":0},"2":{"h":48,"ah":35},"3":{"h":46,"ah":34},"4":{"h":26,"ah":34}},"columnData":{"0":{"w":88},"1":{"w":191},"2":{"w":86},"3":{"w":127}},"showGridlines":1,"rowHeader":{"width":46,"hidden":0},"columnHeader":{"height":20,"hidden":0},"rightToLeft":0}},"resources":[{"name":"SHEET_UNIVER_THREAD_COMMENT_PLUGIN","data":"{}"},{"name":"SHEET_RANGE_PROTECTION_PLUGIN","data":""},{"name":"SHEET_WORKSHEET_PROTECTION_PLUGIN","data":"{}"},{"name":"SHEET_WORKSHEET_PROTECTION_POINT_PLUGIN","data":"{}"},{"name":"SHEET_HYPER_LINK_PLUGIN","data":"{\"wqX2Z5otdmEbeHUd2LNPB\":[]}"},{"name":"SHEET_DRAWING_PLUGIN","data":"{}"},{"name":"SHEET_CONDITIONAL_FORMATTING_PLUGIN","data":""},{"name":"SHEET_DEFINED_NAME_PLUGIN","data":"{}"},{"name":"SHEET_RANGE_THEME_MODEL_PLUGIN","data":"{}"},{"name":"SHEET_FILTER_PLUGIN","data":"{}"},{"name":"SHEET_DATA_VALIDATION_PLUGIN","data":"{}"},{"name":"SHEET_AuthzIoMockService_PLUGIN","data":"{}"}]}');
  258. UPDATE report_version SET f_snapshot = v_context WHERE f_id = '623211524311220805';
  259. END;
  260. /
  261. INSERT INTO report_version ("F_SORT_LIST","F_ENABLED_MARK","F_CELLS","F_TENANT_ID","F_CREATOR_USER_ID","F_LAST_MODIFY_USER_ID","F_DELETE_MARK","F_DELETE_USER_ID","F_DELETE_TIME","F_CONVERT_CONFIG","F_QUERY_LIST","F_DESCRIPTION","F_VERSION","F_SORT_CODE","F_STATE","F_ID","F_LAST_MODIFY_TIME","F_TEMPLATE_ID","F_CREATOR_TIME","F_SNAPSHOT") VALUES ('[]',1,'context','0','349057407209541','349057407209541',Null,Null,Null,'[{"field":"user.sex","type":"select","config":{"dataType":"dictionary","options":[],"dictionaryType":"963255a34ea64a2584c5d1ba269c1fe6","propsValue":"enCode","format":"yyyy-MM-dd","precision":0,"thousands":false}}]','[{"sheet":"w52kG71f16x2NGaC2KaZK","sheetName":"Sheet1","queryList":[{"id":"db1758aa789641298c79392263bf862d","vModel":"user.orgname","label":"组织","type":"select","searchType":1,"searchMultiple":false,"config":{"dataType":"static","propsUrl":"","propsName":"","dictionaryType":"","options":[{"id":"上海","fullName":"上海"},{"id":"北京","fullName":"北京"},{"id":"广东","fullName":"广东"}],"propsValue":"id"},"options":[],"props":{"label":"fullName","value":"id"}},{"id":"f6547d5bad0040959ebde9f34b8d85d4","vModel":"user.education","label":"学历","type":"select","searchType":1,"searchMultiple":false,"config":{"dataType":"static","propsUrl":"","propsName":"","dictionaryType":"","options":[{"id":"中专","fullName":"中专"},{"id":"博士","fullName":"博士"},{"id":"博士后","fullName":"博士后"},{"id":"大专","fullName":"大专"},{"id":"本科","fullName":"本科"},{"id":"小学","fullName":"小学"},{"id":"硕士","fullName":"硕士"},{"id":"高中","fullName":"高中"}],"propsValue":"id"},"options":[],"props":{"label":"fullName","value":"id"}},{"id":"e1ec43e93ed2468c925d77af856b3f17","vModel":"user.sex","label":"性别","type":"select","searchType":1,"searchMultiple":false,"config":{"dataType":"dictionary","propsUrl":"","propsName":"","dictionaryType":"963255a34ea64a2584c5d1ba269c1fe6","options":[],"propsValue":"enCode"},"options":[],"props":{"label":"fullName","value":"id"}}]}]',Null,1,1,1,'623216892206645829',to_date('2024-11-04 20:21:30', 'yyyy-mm-dd hh24:mi:ss'),'623216892152119877',to_date('2024-11-04 20:21:28', 'yyyy-mm-dd hh24:mi:ss'),'context');
  262. DECLARE
  263. -- 此表为:report_version
  264. v_context NCLOB;
  265. BEGIN
  266. DBMS_LOB.CREATETEMPORARY(v_context,TRUE);
  267. DBMS_LOB.APPEND(v_context, '{"cells":[{"col":"0","row":"0","sheet":"w52kG71f16x2NGaC2KaZK","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"2","row":"1","sheet":"w52kG71f16x2NGaC2KaZK","type":"dataSource","custom":{"field":"user.education","polymerizationType":"2","summaryType":"sum","fillDirection":"landscape","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"2","row":"2","sheet":"w52kG71f16x2NGaC2KaZK","type":"dataSource","custom":{"field":"user.sex","polymerizationType":"2","summaryType":"sum","fillDirection":"landscape","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"3","row":"2","sheet":"w52kG71f16x2NGaC2KaZK","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"0","row":"3","sheet":"w52kG71f16x2NGaC2KaZK","type":"dataSource","custom":{"field":"user.orgname","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellTyp');
  268. DBMS_LOB.APPEND(v_context, 'e":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"1","row":"3","sheet":"w52kG71f16x2NGaC2KaZK","type":"dataSource","custom":{"field":"user.depName","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"2","row":"3","sheet":"w52kG71f16x2NGaC2KaZK","type":"dataSource","custom":{"field":"user.username","polymerizationType":"3","summaryType":"count","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"1","row":"4","sheet":"w52kG71f16x2NGaC2KaZK","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"2","row":"4","sheet":"w52kG71f16x2NGaC2KaZK","type":"dataSource","custom":{"field":"user.username","polymerizationType":"3","summaryType":"count","fillDirection":"portrait","leftParentCellType":"custom","leftParentCellCustomRowName":"A","leftParentCellCust');
  269. DBMS_LOB.APPEND(v_context, 'omColName":"4","topParentCellType":"custom","topParentCellCustomRowName":"C","topParentCellCustomColName":"3","type":"dataSource"}}],"floatEcharts":{},"floatImages":{}}');
  270. UPDATE report_version SET f_cells = v_context WHERE f_id = '623216892206645829';
  271. END;
  272. /
  273. DECLARE
  274. -- 此表为:report_version
  275. v_context NCLOB;
  276. BEGIN
  277. DBMS_LOB.CREATETEMPORARY(v_context,TRUE);
  278. DBMS_LOB.APPEND(v_context, '{"id":"adhHq0","sheetOrder":["w52kG71f16x2NGaC2KaZK"],"name":"","appVersion":"0.4.2","locale":"zhCN","styles":{"r0gYO6":{"ff":"Arial","fs":18,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"b":null}},"Y1mNg9":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"tl_br":null,"tl_bc":null,"tl_mr":null}},"Yn1LWd":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"l":null}},"26Vobn":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"c');
  279. DBMS_LOB.APPEND(v_context, 'l":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":null}},"GFa8u8":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":null}},"6jemMH":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(208,217,251)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"pmVtOy":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(253,206,206)"},');
  280. DBMS_LOB.APPEND(v_context, '"ht":0,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"-KJTDV":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,251,230)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"tpyCmz":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(206,242,115)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"wBBxsA":{"ff":"Arial","fs":11,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(252,232,105)"},"ht":0,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"dJLG8Z":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rg');
  281. DBMS_LOB.APPEND(v_context, 'ba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(252,232,105)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"BS3ht6":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"st":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"ol":{"s":0,"cl":{"rgb":"rgb(53,50,43)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(53,50,43)"},"bg":{"rgb":"rgb(163,245,245)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"yuzdDp":{"ff":"Arial","fs":11,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,225,205)"},"ht":0,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"MLDH-W":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(254,225,205)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,');
  282. DBMS_LOB.APPEND(v_context, '204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"gdPUCe":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(199,171,237)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"u_C1QZ":{"ff":"Arial","fs":18,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"b":null}},"qnAN6k":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"r":null}},"0pIOX2":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,');
  283. DBMS_LOB.APPEND(v_context, '255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":{"s":1,"cl":{"rgb":"#E5E5E5"}},"b":{"s":1,"cl":{"rgb":"#E5E5E5"}},"l":{"s":1,"cl":{"rgb":"#E5E5E5"}}}},"IZ9qCh":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#E5E5E5"}},"t":{"s":1,"cl":{"rgb":"#E5E5E5"}},"b":{"s":1,"cl":{"rgb":"#E5E5E5"}}}},"J0tzIv":{"bd":{"l":null}},"YlBVYV":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"u_sBJh":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"');
  284. DBMS_LOB.APPEND(v_context, 'r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"IKBSmh":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"twXw_3":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"tl_br":{"s":1,"cl":{"rgb":"#000000"}},"tl_bc":{"s":1,"cl":{"rgb":"#000000"}},"tl_mr":{"s":1,"cl":{"rgb":"#000000"}}}},"K7LWRM":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rg');
  285. DBMS_LOB.APPEND(v_context, 'b":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"tl_br":{"s":1,"cl":{"rgb":"#FFFFFF"}},"tl_bc":{"s":1,"cl":{"rgb":"#FFFFFF"}},"tl_mr":{"s":1,"cl":{"rgb":"#FFFFFF"}}}},"xvUfJM":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":1,"vt":1,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"tl_br":{"s":1,"cl":{"rgb":"#FFFFFF"}},"tl_bc":{"s":1,"cl":{"rgb":"#FFFFFF"}},"tl_mr":{"s":1,"cl":{"rgb":"#FFFFFF"}}}},"jgIEBc":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":1,"vt":1,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"RoBAJd":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,2');
  286. DBMS_LOB.APPEND(v_context, '55,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":1,"vt":1,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"7jAVs7":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"_h7T5l":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":1,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"tl_br":{"s":1,"cl":{"rgb":"#FFFFFF"}},"tl_bc":{"s":1,"cl":{"rgb":"#FFFFFF"}},"tl_mr":{"s":1,"cl":{"rgb":"#FFFFFF"}}}},"7LQYx8":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"t');
  287. DBMS_LOB.APPEND(v_context, 'r":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":1,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"_14D6N":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":1,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"Cs6bnP":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"tl_br":{"s":1,"cl":{"rgb":"#FFFFFF"}},"tl_bc":{"s":1,"cl":{"rgb":"#FFFFFF"}},"tl_mr":{"s":1,"cl":{"rgb":"#FFFFFF"}}}},"3Vqbm9":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"');
  288. DBMS_LOB.APPEND(v_context, 's":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"Cwm-Ta":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"FkdPFx":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,144,255)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}}},"sheets":{"w52kG71f16x2NGaC2KaZK":{"id":"w52kG71f16x2NGaC2KaZK","name":"Sheet1","tabColor":"","hidden":0,"rowCount":1000,"columnCount":20,"zoomRatio":1,"freeze":{"xSplit":0,"ySplit":0,"startRow":-1,"startColumn":-1},"s');
  289. DBMS_LOB.APPEND(v_context, 'crollTop":0,"scrollLeft":0,"defaultColumnWidth":88,"defaultRowHeight":24,"mergeData":[{"startRow":0,"endRow":0,"startColumn":0,"endColumn":3},{"startRow":1,"endRow":2,"startColumn":0,"endColumn":1},{"startRow":1,"endRow":1,"startColumn":2,"endColumn":3},{"startRow":3,"endRow":4,"startColumn":0,"endColumn":0},{"startRow":5,"endRow":5,"startColumn":0,"endColumn":1}],"cellData":{"0":{"0":{"v":"各部门学历性别分布","s":"r0gYO6","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""},"t":1},"1":{"s":"r0gYO6"},"2":{"s":"u_C1QZ"},"3":{"s":"u_C1QZ"}},"1":{"0":{"s":"K7LWRM","p":{"id":"__INTERNAL_EDITOR__DOCS_NORMAL","documentStyle":{"pageSize":{"width":320,"height":null},"marginTop":0,"marginBottom":2,"marginRight":2,"marginLeft":2,"renderConfig":{"horizontalAlign":1,"verticalAlign":2,"centerAngle":0,"vertexAngle":0,"wrapStrategy":3,"zeroWidthParagraphBreak":1}},"body":{"dataStream":" 学历\r 性别\r 薪资\r 部门 \r\n","textRuns":[{"st":47,"ed":49,"ts":{"cl":{"rgb":"rgb(255,255,255)"}}},{"st":90,"ed":92,"ts":{"cl":{"rgb":"rgb(255,255,255)"}}},{"st":120,"ed":122,"ts":{"cl":{"rgb":"rgb(255,255,255)"}}},{"st":132,"ed":138,"ts":{"cl":{"rgb":"rgb(255,255,255)"}}}],"paragraphs":[{"startIndex":49,"paragraphStyle":{"horizontalAlign":1}},{"startIndex"');
  290. DBMS_LOB.APPEND(v_context, ':92,"paragraphStyle":{"horizontalAlign":1}},{"startIndex":122,"paragraphStyle":{"horizontalAlign":1}},{"startIndex":138,"paragraphStyle":{"horizontalAlign":1}}],"sectionBreaks":[{"startIndex":139}],"customRanges":[],"customDecorations":[]},"drawings":{},"drawingsOrder":[],"settings":{"zoomRatio":1}}},"1":{"s":"7jAVs7"},"2":{"v":"${user.education}","t":1,"s":"YlBVYV","custom":{"field":"user.education","polymerizationType":"2","summaryType":"sum","fillDirection":"landscape","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"3":{"s":"u_sBJh"},"4":{"s":"J0tzIv"}},"2":{"0":{"s":"FkdPFx"},"1":{"s":"FkdPFx"},"2":{"v":"${user.sex}","t":1,"s":"26Vobn","custom":{"field":"user.sex","polymerizationType":"2","summaryType":"sum","fillDirection":"landscape","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"3":{"v":"小计","s":"IKBSmh","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""},"t":1}},"3":{"0":{"v":"${user.orgname}","t":1,"s":"6jemMH","custom":{"field":"user.orgname","polymerizationType":"2","summaryType":"sum","fill');
  291. DBMS_LOB.APPEND(v_context, 'Direction":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"1":{"v":"${user.depName}","t":1,"s":"pmVtOy","custom":{"field":"user.depName","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"2":{"v":"${user.username}","t":1,"s":"-KJTDV","custom":{"field":"user.username","polymerizationType":"3","summaryType":"count","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"3":{"s":"tpyCmz","f":"=SUM(C4)","v":0,"t":2},"4":{}},"4":{"0":{"s":"6jemMH"},"1":{"v":"小计","s":"wBBxsA","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""},"t":1},"2":{"v":"${user.username}","t":1,"s":"dJLG8Z","custom":{"field":"user.username","polymerizationType":"3","summaryType":"count","fillDirection":"portrait","leftParentCellType":"custom","leftParentCellCustomRowName":"A",');
  292. DBMS_LOB.APPEND(v_context, '"leftParentCellCustomColName":"4","topParentCellType":"custom","topParentCellCustomRowName":"C","topParentCellCustomColName":"3","type":"dataSource"}},"3":{"s":"BS3ht6","f":"=SUM(D4)","v":0,"t":2},"4":{}},"5":{"0":{"v":"合计","t":1,"s":"yuzdDp"},"1":{"s":"yuzdDp"},"2":{"s":"MLDH-W","f":"=SUM(C5)","v":0,"t":2},"3":{"s":"gdPUCe","f":"=SUM(D5)","v":0,"t":2},"4":{}}},"rowData":{"0":{"h":41},"1":{"h":43,"ia":0},"2":{"h":47,"ah":24,"ia":0},"3":{"h":34,"ah":34},"4":{"h":43,"ah":34,"ia":0},"5":{"h":37,"ah":24,"ia":0}},"columnData":{"0":{"w":88},"1":{"w":232},"2":{"w":55},"3":{"w":60}},"showGridlines":1,"rowHeader":{"width":46,"hidden":0},"columnHeader":{"height":20,"hidden":0},"rightToLeft":0}},"resources":[{"name":"SHEET_UNIVER_THREAD_COMMENT_PLUGIN","data":"{}"},{"name":"SHEET_RANGE_PROTECTION_PLUGIN","data":""},{"name":"SHEET_WORKSHEET_PROTECTION_PLUGIN","data":"{}"},{"name":"SHEET_WORKSHEET_PROTECTION_POINT_PLUGIN","data":"{}"},{"name":"SHEET_HYPER_LINK_PLUGIN","data":"{\"w52kG71f16x2NGaC2KaZK\":[]}"},{"name":"SHEET_DRAWING_PLUGIN","data":"{}"},{"name":"SHEET_CONDITIONAL_FORMATTING_PLUGIN","data":""},{"name":"SHEET_DEFINED_NAME_PLUGIN","data":"{}"},{"name":"SHEET_RANGE_THEME_MODEL_PLUGIN","data":"{}"},{"name":"SHEET_FILTER_PLUGIN","data":"{}"},{"name":"SHEET_DATA_VALIDATION_PLUGIN","data":"{}"},{"name":"SHEET_AuthzIoMockService_PLUGIN","data":"{}"}]}');
  293. UPDATE report_version SET f_snapshot = v_context WHERE f_id = '623216892206645829';
  294. END;
  295. /
  296. INSERT INTO report_version ("F_SORT_LIST","F_ENABLED_MARK","F_CELLS","F_TENANT_ID","F_CREATOR_USER_ID","F_LAST_MODIFY_USER_ID","F_DELETE_MARK","F_DELETE_USER_ID","F_DELETE_TIME","F_CONVERT_CONFIG","F_QUERY_LIST","F_DESCRIPTION","F_VERSION","F_SORT_CODE","F_STATE","F_ID","F_LAST_MODIFY_TIME","F_TEMPLATE_ID","F_CREATOR_TIME","F_SNAPSHOT") VALUES ('[]',1,'context','0','349057407209541','349057407209541',Null,Null,Null,'[]','[{"sheet":"JU9V20nEuCDEMPf-34YKB","sheetName":"Sheet1","queryList":[{"id":"342b5d00466843efa360ef79b129db5c","vModel":"user.orgname","label":"组织","type":"select","searchType":1,"searchMultiple":false,"config":{"dataType":"static","propsUrl":"","propsName":"","dictionaryType":"","options":[{"id":"上海","fullName":"上海"},{"id":"北京","fullName":"北京"},{"id":"广东","fullName":"广东"}],"propsValue":"id"},"options":[],"props":{"label":"fullName","value":"id"}},{"id":"016792f6a9f841e7bc1585885476629f","vModel":"user.education","label":"学历","type":"select","searchType":1,"searchMultiple":false,"config":{"dataType":"static","propsUrl":"","propsName":"","dictionaryType":"","options":[{"id":"中专","fullName":"中专"},{"id":"博士","fullName":"博士"},{"id":"博士后","fullName":"博士后"},{"id":"大专","fullName":"大专"},{"id":"本科","fullName":"本科"},{"id":"小学","fullName":"小学"},{"id":"硕士","fullName":"硕士"},{"id":"高中","fullName":"高中"}],"propsValue":"id"},"options":[],"props":{"label":"fullName","value":"id"}}]}]',Null,1,1,1,'623530488656560453',to_date('2024-11-05 17:08:26', 'yyyy-mm-dd hh24:mi:ss'),'623530488602034501',to_date('2024-11-05 17:07:35', 'yyyy-mm-dd hh24:mi:ss'),'context');
  297. DECLARE
  298. -- 此表为:report_version
  299. v_context NCLOB;
  300. BEGIN
  301. DBMS_LOB.CREATETEMPORARY(v_context,TRUE);
  302. DBMS_LOB.APPEND(v_context, '{"cells":[{"col":"0","row":"0","sheet":"JU9V20nEuCDEMPf-34YKB","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"2","row":"1","sheet":"JU9V20nEuCDEMPf-34YKB","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""}},{"col":"2","row":"2","sheet":"JU9V20nEuCDEMPf-34YKB","type":"dataSource","custom":{"field":"user.education","polymerizationType":"2","summaryType":"sum","fillDirection":"landscape","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"0","row":"3","sheet":"JU9V20nEuCDEMPf-34YKB","type":"dataSource","custom":{"field":"user.orgname","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"1","row":"3","sheet":"JU9V20nEuCDEMPf-34YKB","type":"dataSource","custom":{"field":"user.depName","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCell');
  303. DBMS_LOB.APPEND(v_context, 'Type":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},{"col":"2","row":"3","sheet":"JU9V20nEuCDEMPf-34YKB","type":"dataSource","custom":{"field":"user.salary","polymerizationType":"3","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}}],"floatEcharts":{"sRCxaF26kwvrYGpBkyY67":{"drawingId":"sRCxaF26kwvrYGpBkyY67","domId":"echart_98b3ca0038144cd7bbdd7cf0057f6465","echartType":"bar","option":{"summaryType":"sum","chartType":"bar","animation":false,"styleType":1,"bar":{"barTypeList":[]},"legendTop":93,"legendLeft":40,"title":{"text":"各部门学历薪资统计","textI18nCode":"","show":true,"left":"center","textStyle":{"fontSize":18,"fontWeight":"normal","color":"#333"},"showSub":true,"subtext":"","subtextI18nCode":"","subtextStyle":{"fontSize":12,"fontWeight":"normal","color":"#aaa"}},"barWidth":25,"itemStyle":{"borderRadius":0},"grid":{"left":61,"top":60,"right":10,"bottom":50},"tooltip":{"show":true,"backgroundColor":"#fff","textStyle":{"color":"#303133","fontSize":14,"fontWeight":""}},"legend":{"show":true,"textStyle":{"fontSize":14},"fontSize":14,"orient":"horizontal","top":"93%","left":"40%"},"label":{"show":false,"fontSize":14,"fontWeight":"","');
  304. DBMS_LOB.APPEND(v_context, 'color":"#303133","backgroundColor":"","seriesLabelPosition":"outside","seriesLabelShowInfo":["count","percent"],"seriesCenterLeft":50,"seriesCenterTop":50,"seriesLineStyleWidth":2,"seriesSymbolRotate":4},"color":{"AxisTextStyleColor":"","AxisLineStyleColor":"","list":[]},"xAxis":{"type":"category","show":true,"data":["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"],"inverse":false,"name":"","nameTextStyle":{"color":"#303133","fontSize":14,"fontWeight":""},"axisLine":{"show":true,"lineStyle":{"color":"#303133"}},"axisLabel":{"rotate":0,"color":"#303133","fontSize":14,"fontWeight":""},"splitLine":{"show":false,"lineStyle":{"color":"#DFDFDF"}},"axisTick":{"alignWithLabel":false}},"yAxis":{"show":true,"inverse":false,"name":"","nameTextStyle":{"color":"#303133","fontSize":14,"fontWeight":""},"axisLine":{"show":true,"lineStyle":{"color":"#303133"}},"axisLabel":{"rotate":0,"color":"#303133","fontSize":14,"fontWeight":""},"splitLine":{"show":false,"lineStyle":{"color":"#DFDFDF"}},"type":"value"},"series":[{"name":"销量","type":"bar","data":[5,20,36,10,10,20],"itemStyle":{},"showBackground":false,"stack":""},{"name":"销量1","type":"bar","data":[10,30,90,30,30,80],"itemStyle":{},"showBackground":false,"stack":""}],"classifyNameField":"user.depName","seriesNameField":"user.education","seriesDataField":"user.salary"}},"f6VtoHrQFztKLbMqib-NQ":{"drawingId":"f6VtoHrQFztKLbMqib-NQ","domId":"echart_b3738b534cea4266931f86115bddc806","echartType":"line","option":{"summaryType":"sum","chartType":"line","animation');
  305. DBMS_LOB.APPEND(v_context, '":false,"styleType":1,"areaStyle":false,"legendTop":90,"legendLeft":40,"title":{"text":"各部门学历薪资统计折线图","textI18nCode":"","show":true,"left":"center","textStyle":{"fontSize":18,"fontWeight":"normal","color":"#333"},"showSub":true,"subtext":"","subtextI18nCode":"","subtextStyle":{"fontSize":12,"fontWeight":"normal","color":"#aaa"}},"grid":{"left":58,"top":60,"right":10,"bottom":61},"tooltip":{"show":true,"backgroundColor":"#fff","textStyle":{"color":"#303133","fontSize":14,"fontWeight":""}},"legend":{"show":true,"textStyle":{"fontSize":14},"fontSize":14,"orient":"horizontal","top":"90%","left":"40%"},"label":{"show":false,"fontSize":14,"fontWeight":"","color":"#303133","backgroundColor":""},"color":{"AxisTextStyleColor":"","AxisLineStyleColor":"","list":[]},"xAxis":{"type":"category","show":true,"data":["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"],"inverse":false,"name":"","nameTextStyle":{"color":"#303133","fontSize":14,"fontWeight":""},"axisLine":{"show":true,"lineStyle":{"color":"#303133"}},"axisLabel":{"rotate":0,"color":"#303133","fontSize":14,"fontWeight":""},"splitLine":{"show":false,"lineStyle":{"color":"#DFDFDF"}},"axisTick":{"alignWithLabel":false}},"yAxis":{"show":true,"inverse":false,"name":"","nameTextStyle":{"color":"#303133","fontSize":14,"fontWeight":""},"axisLine":{"show":true,"lineStyle":{"color":"#303133"}},"axisLabel":{"rotate":0,"color":"#303133","fontSize":14,"fontWeight":""},"splitLine":{"show":false,"lineStyle":{"color":"#DFDFDF"}},"type":"value"},"series":[{"name":');
  306. DBMS_LOB.APPEND(v_context, '"销量","type":"line","data":[5,20,36,10,10,20],"itemStyle":{},"smooth":false,"step":false,"stack":"","lineStyle":{},"symbolSize":4},{"name":"销量1","type":"line","data":[10,30,90,30,30,80],"itemStyle":{},"smooth":false,"step":false,"stack":"","lineStyle":{},"symbolSize":4}],"line":{"smooth":false,"symbolSize":4},"lineStyle":{"Width":2},"classifyNameField":"user.depName","seriesNameField":"user.education","seriesDataField":"user.salary"}}},"floatImages":{}}');
  307. UPDATE report_version SET f_cells = v_context WHERE f_id = '623530488656560453';
  308. END;
  309. /
  310. DECLARE
  311. -- 此表为:report_version
  312. v_context NCLOB;
  313. BEGIN
  314. DBMS_LOB.CREATETEMPORARY(v_context,TRUE);
  315. DBMS_LOB.APPEND(v_context, '{"id":"3i1E9N","sheetOrder":["JU9V20nEuCDEMPf-34YKB"],"name":"","appVersion":"0.4.2","locale":"zhCN","styles":{"AzFXha":{"ff":"Arial","fs":20,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"t":null,"l":null,"r":null}},"ZDcI87":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,159,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"vCN_Cs":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,159,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"nWaiCz":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr"');
  316. DBMS_LOB.APPEND(v_context, ':{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,159,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"l":null}},"PB99sC":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,159,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"l":null}},"djXTJp":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,159,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":null}},"EZW3A_":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(208,217,251)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"');
  317. DBMS_LOB.APPEND(v_context, 'b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"OMarSZ":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(253,206,206)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"V3UziI":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"q8zFOt":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(251,225,55)"},"ht":0,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"LVgyFp":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":');
  318. DBMS_LOB.APPEND(v_context, '{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(251,225,55)"},"ht":0,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"yjqV3Q":{"ff":"Arial","fs":10,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"IEhtrm":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"l":null,"t":null},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"ONsxof":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(208,217,251)"},"ht":2,"vt":2,"tb":');
  319. DBMS_LOB.APPEND(v_context, '3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"t":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1}}},"l7eTU1":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(253,206,206)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"l":null,"t":null}},"35VOoJ":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(251,225,55)"},"ht":0,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"b":{"cl":{"rgb":"rgb(204,204,204)"},"s":1},"l":null,"t":null},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"_puZ4f":{"ff":"Arial","fs":20,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"t":{"s":1,"cl":{"rgb":"#CCCCCC"}},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"fhBNPY":{"ff":"Arial');
  320. DBMS_LOB.APPEND(v_context, '","fs":20,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"Gj8MqN":{"ff":"Arial","fs":20,"it":0,"bl":1,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"t":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"E5vxfC":{"bd":{}},"9GTu8_":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,159,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"qFp45x":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,159,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"t":{"s":1,"cl":{"rgb":"#C');
  321. DBMS_LOB.APPEND(v_context, 'CCCCC"}},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1}}},"cfCszA":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,159,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"CJWufv":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"st":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"ol":{"s":0,"cl":{"rgb":"rgb(255,255,255)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgb(255,255,255)"},"bg":{"rgb":"rgb(22,159,255)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"cl":{"rgb":"rgb(0,0,0)"},"s":1},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"-hJhIr":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(208,217,251)"},"ht":2,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"o8n1s0":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"');
  322. DBMS_LOB.APPEND(v_context, 'cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(253,206,206)"},"ht":1,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}}},"xwuc-C":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"ht":3,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}},"gOYcwp":{"ff":"Arial","fs":11,"it":0,"bl":0,"ul":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"st":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"ol":{"s":0,"cl":{"rgb":"rgba(0,0,0,0.85)"}},"tr":{"a":0},"td":0,"cl":{"rgb":"rgba(0,0,0,0.85)"},"bg":{"rgb":"rgb(251,225,55)"},"ht":0,"vt":2,"tb":3,"pd":{"t":0,"b":2,"l":2,"r":2},"bd":{"r":{"s":1,"cl":{"rgb":"#CCCCCC"}},"b":{"s":1,"cl":{"rgb":"#CCCCCC"}},"l":{"s":1,"cl":{"rgb":"#CCCCCC"}},"t":{"s":1,"cl":{"rgb":"#CCCCCC"}}},"n":{"pattern":"#,##0.00;[Red]#,##0.00"}}},"sheets":{"JU9V20nEuCDEMPf-34YKB":{"id":"JU9V20nEuCDEMPf-34YKB","name":"Sheet1","tabColor":"","hidden":0,"rowCount":');
  323. DBMS_LOB.APPEND(v_context, '1000,"columnCount":20,"zoomRatio":1,"freeze":{"startRow":0,"startColumn":-1,"ySplit":1,"xSplit":0},"scrollTop":0,"scrollLeft":0,"defaultColumnWidth":88,"defaultRowHeight":24,"mergeData":[{"startRow":0,"endRow":0,"startColumn":0,"endColumn":3},{"startRow":1,"endRow":2,"startColumn":0,"endColumn":0},{"startRow":1,"endRow":2,"startColumn":1,"endColumn":1},{"startRow":1,"endRow":2,"startColumn":3,"endColumn":3}],"cellData":{"0":{"0":{"v":"各部门学历薪资统计","s":"_puZ4f","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""},"t":1},"1":{"s":"fhBNPY"},"2":{"s":"fhBNPY"},"3":{"s":"Gj8MqN"},"4":{"s":"E5vxfC"}},"1":{"0":{"v":"组织","t":1,"s":"9GTu8_"},"1":{"v":"部门","t":1,"s":"qFp45x"},"2":{"v":"学历","s":"cfCszA","custom":{"leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":""},"t":1},"3":{"v":"合计","t":1,"s":"CJWufv"},"4":{"s":"E5vxfC"}},"2":{"0":{"s":"9GTu8_"},"1":{"s":"qFp45x"},"2":{"v":"${user.education}","t":1,"s":"cfCszA","custom":{"field":"user.education","polymerizationType":"2","summaryType":"sum","fillDirection":"landscape","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"');
  324. DBMS_LOB.APPEND(v_context, '","type":"dataSource"}},"3":{"s":"CJWufv"},"4":{"s":"E5vxfC"}},"3":{"0":{"v":"${user.orgname}","t":1,"s":"-hJhIr","custom":{"field":"user.orgname","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"1":{"v":"${user.depName}","t":1,"s":"o8n1s0","custom":{"field":"user.depName","polymerizationType":"2","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"2":{"v":"${user.salary}","t":1,"s":"xwuc-C","custom":{"field":"user.salary","polymerizationType":"3","summaryType":"sum","fillDirection":"portrait","leftParentCellType":"default","leftParentCellCustomRowName":"","leftParentCellCustomColName":"","topParentCellType":"default","topParentCellCustomRowName":"","topParentCellCustomColName":"","type":"dataSource"}},"3":{"s":"gOYcwp","f":"=SUM(C4)","v":0,"t":2},"4":{"s":"E5vxfC"}},"4":{"0":{"s":"E5vxfC"},"1":{"s":"E5vxfC"},"2":{"s":"E5vxfC"},"3":{"s":"E5vxfC"}}},"rowData":{"0":{"h":49},"1":{"h":24,"ah":24},"2":{"h":19,"ah":24},"3":{"h":35,"ah":34}},"columnData":{"0":{"w":88},"1":{"w":166},"2":{"w":170},"3":{"w":123}},"showGridlines":1,"rowHeader":{"wid');
  325. DBMS_LOB.APPEND(v_context, 'th":46,"hidden":0},"columnHeader":{"height":20,"hidden":0},"rightToLeft":0}},"resources":[{"name":"SHEET_UNIVER_THREAD_COMMENT_PLUGIN","data":"{}"},{"name":"SHEET_RANGE_PROTECTION_PLUGIN","data":""},{"name":"SHEET_WORKSHEET_PROTECTION_PLUGIN","data":"{}"},{"name":"SHEET_WORKSHEET_PROTECTION_POINT_PLUGIN","data":"{}"},{"name":"SHEET_HYPER_LINK_PLUGIN","data":"{\"JU9V20nEuCDEMPf-34YKB\":[]}"},{"name":"SHEET_DRAWING_PLUGIN","data":"{\"JU9V20nEuCDEMPf-34YKB\":{\"data\":{\"sRCxaF26kwvrYGpBkyY67\":{\"unitId\":\"3i1E9N\",\"subUnitId\":\"JU9V20nEuCDEMPf-34YKB\",\"drawingType\":8,\"allowTransform\":true,\"sheetTransform\":{\"flipY\":false,\"flipX\":false,\"angle\":0,\"skewX\":0,\"skewY\":0,\"from\":{\"column\":0,\"columnOffset\":20,\"row\":51,\"rowOffset\":-691},\"to\":{\"column\":19,\"columnOffset\":73,\"row\":65,\"rowOffset\":-691}},\"transform\":{\"flipY\":false,\"flipX\":false,\"angle\":0,\"skewX\":0,\"skewY\":0,\"left\":66,\"top\":588,\"width\":1920,\"height\":336},\"drawingId\":\"sRCxaF26kwvrYGpBkyY67\",\"componentKey\":\"JnpfUniverFloatEchart\",\"props\":{\"id\":\"echart_98b3ca0038144cd7bbdd7cf0057f6465\"}},\"f6VtoHrQFztKLbMqib-NQ\":{\"unitId\":\"3i1E9N\",\"subUnitId\":\"JU9V20nEuCDEMPf-34YKB\",\"drawingType\":8,\"allowTransform\":true,\"sheetTransform\":{\"flipY\":false,\"flipX\":false,\"angle\":0,\"skewX\":0,\"skewY\":0,\"from\":{\"column\":3,\"columnOffset\":-401,\"row\":81,\"rowOffset\":-897},\"to\":{\"column\":19,\"columnOffset\":45,\"row\":95,\"rowOffset\":-885}},\"transf');
  326. DBMS_LOB.APPEND(v_context, 'orm\":{\"flipY\":false,\"flipX\":false,\"angle\":0,\"skewX\":0,\"skewY\":0,\"left\":69,\"top\":1102,\"width\":1889,\"height\":348},\"drawingId\":\"f6VtoHrQFztKLbMqib-NQ\",\"componentKey\":\"JnpfUniverFloatEchart\",\"props\":{\"id\":\"echart_b3738b534cea4266931f86115bddc806\"}}},\"order\":[\"sRCxaF26kwvrYGpBkyY67\",\"f6VtoHrQFztKLbMqib-NQ\"]}}"},{"name":"SHEET_CONDITIONAL_FORMATTING_PLUGIN","data":""},{"name":"SHEET_DEFINED_NAME_PLUGIN","data":"{}"},{"name":"SHEET_RANGE_THEME_MODEL_PLUGIN","data":"{}"},{"name":"SHEET_FILTER_PLUGIN","data":"{}"},{"name":"SHEET_DATA_VALIDATION_PLUGIN","data":"{}"},{"name":"SHEET_AuthzIoMockService_PLUGIN","data":"{}"}]}');
  327. UPDATE report_version SET f_snapshot = v_context WHERE f_id = '623530488656560453';
  328. END;
  329. /