Commit e202f5347dd0483a027e09acb96ff2b809d7ce9e

Authored by 徐烜
1 parent 5ff4f17c

1、修改时刻表编辑用ktr,将bcsj字段加入

2、修改时刻表编辑对应服务,将bcsj加入
3、修改drools关于时刻表验证规则,加入bcsj验证
4、修改前端时刻表编辑指令和相关controll,添加bcsj指令
5、修改前端时刻表编辑指令,修改isValid验证逻辑
src/main/java/com/bsth/service/schedule/datatools/TTInfoDetailDataToolsImpl.java
@@ -348,7 +348,7 @@ public class TTInfoDetailDataToolsImpl implements DataToolsService, TTInfoDetail @@ -348,7 +348,7 @@ public class TTInfoDetailDataToolsImpl implements DataToolsService, TTInfoDetail
348 for (int r = 1; r < sheet.getRows(); r++) { 348 for (int r = 1; r < sheet.getRows(); r++) {
349 List<FcInfo> fcInfos = new ArrayList<>(); 349 List<FcInfo> fcInfos = new ArrayList<>();
350 // 每行第一列都是路牌 350 // 每行第一列都是路牌
351 - fcInfos.add(new FcInfo(null, null, sheet.getCell(0, r).getContents(), null, null, null, null, null)); // 用fcsj放置路牌显示 351 + fcInfos.add(new FcInfo(null, null, sheet.getCell(0, r).getContents(), null, null, null, null, null, null)); // 用fcsj放置路牌显示
352 352
353 int bc_ks = 0; // 空驶班次 353 int bc_ks = 0; // 空驶班次
354 int bc_yy = 0; // 营运班次 354 int bc_yy = 0; // 营运班次
@@ -373,7 +373,9 @@ public class TTInfoDetailDataToolsImpl implements DataToolsService, TTInfoDetail @@ -373,7 +373,9 @@ public class TTInfoDetailDataToolsImpl implements DataToolsService, TTInfoDetail
373 373
374 String ists = content == null ? "" : content[9]; // 是否停驶 374 String ists = content == null ? "" : content[9]; // 是否停驶
375 375
376 - FcInfo fcInfo = new FcInfo(ttdid_str, bctype, fcsj, xldir, isfb, qdzCode, zdzCode, ists); 376 + String bcsj = content == null ? "" : content[10]; // 班次时间
  377 +
  378 + FcInfo fcInfo = new FcInfo(ttdid_str, bctype, fcsj, xldir, isfb, qdzCode, zdzCode, ists, bcsj);
377 379
378 if (StringUtils.isNotEmpty(fzdname)) 380 if (StringUtils.isNotEmpty(fzdname))
379 headarrays[c] = fzdname; 381 headarrays[c] = fzdname;
@@ -407,10 +409,10 @@ public class TTInfoDetailDataToolsImpl implements DataToolsService, TTInfoDetail @@ -407,10 +409,10 @@ public class TTInfoDetailDataToolsImpl implements DataToolsService, TTInfoDetail
407 } 409 }
408 410
409 // 添加一列 空驶班次/空驶里程,fcsj放置数据 411 // 添加一列 空驶班次/空驶里程,fcsj放置数据
410 - fcInfos.add(new FcInfo(null, null, String.format("%d/%.3f", bc_ks, lc_ks), null, null, null, null, null)); 412 + fcInfos.add(new FcInfo(null, null, String.format("%d/%.3f", bc_ks, lc_ks), null, null, null, null, null, null));
411 413
412 // 添加一列 营运班次/营运里程,fcsj放置数据 414 // 添加一列 营运班次/营运里程,fcsj放置数据
413 - fcInfos.add(new FcInfo(null, null, String.format("%d/%.3f", bc_yy, lc_yy), null, null, null, null, null)); 415 + fcInfos.add(new FcInfo(null, null, String.format("%d/%.3f", bc_yy, lc_yy), null, null, null, null, null, null));
414 416
415 editInfo.getContents().add(fcInfos); 417 editInfo.getContents().add(fcInfos);
416 } 418 }
src/main/java/com/bsth/service/schedule/datatools/TTInfoDetailForEdit.java
@@ -31,6 +31,8 @@ public interface TTInfoDetailForEdit { @@ -31,6 +31,8 @@ public interface TTInfoDetailForEdit {
31 private String zdzCode; 31 private String zdzCode;
32 /** 是否停驶 */ 32 /** 是否停驶 */
33 private Boolean ists; 33 private Boolean ists;
  34 + /** 班次时间 */
  35 + private String bcsj;
34 36
35 public FcInfo() { 37 public FcInfo() {
36 } 38 }
@@ -43,7 +45,8 @@ public interface TTInfoDetailForEdit { @@ -43,7 +45,8 @@ public interface TTInfoDetailForEdit {
43 String isfb, 45 String isfb,
44 String qdzCode, 46 String qdzCode,
45 String zdzCode, 47 String zdzCode,
46 - String ists) { 48 + String ists,
  49 + String bcsj) {
47 this.ttdid = StringUtils.isEmpty(ttdid_str) ? null : Long.valueOf(ttdid_str); 50 this.ttdid = StringUtils.isEmpty(ttdid_str) ? null : Long.valueOf(ttdid_str);
48 this.bc_type = bc_type; 51 this.bc_type = bc_type;
49 this.fcsj = fcsj; 52 this.fcsj = fcsj;
@@ -69,6 +72,10 @@ public interface TTInfoDetailForEdit { @@ -69,6 +72,10 @@ public interface TTInfoDetailForEdit {
69 else 72 else
70 this.ists = false; 73 this.ists = false;
71 74
  75 + if (StringUtils.isNotEmpty(bcsj) && !"null".equals(bcsj)) {
  76 + this.bcsj = bcsj;
  77 + }
  78 +
72 } 79 }
73 80
74 public Long getTtdid() { 81 public Long getTtdid() {
@@ -134,6 +141,14 @@ public interface TTInfoDetailForEdit { @@ -134,6 +141,14 @@ public interface TTInfoDetailForEdit {
134 public void setIsts(Boolean ists) { 141 public void setIsts(Boolean ists) {
135 this.ists = ists; 142 this.ists = ists;
136 } 143 }
  144 +
  145 + public String getBcsj() {
  146 + return bcsj;
  147 + }
  148 +
  149 + public void setBcsj(String bcsj) {
  150 + this.bcsj = bcsj;
  151 + }
137 } 152 }
138 153
139 /** 154 /**
src/main/java/com/bsth/service/schedule/impl/plan/kBase3/validate/timetable/ErrorBcCountFunction.java
@@ -59,10 +59,16 @@ public class ErrorBcCountFunction implements AccumulateFunction { @@ -59,10 +59,16 @@ public class ErrorBcCountFunction implements AccumulateFunction {
59 return; 59 return;
60 } 60 }
61 61
  62 + // 判定条件(数据库中的对应字段没有非空约束),与界面saTimeTable.js的validInfo方法对应
  63 + // 1、起点站编码,名字为空
  64 + // 2、终点站编码,名字为空
  65 + // 3、班次时间
  66 + // TODO:其他再议
62 if (StringUtils.isEmpty(ttInfoDetail.getQdzCode()) || 67 if (StringUtils.isEmpty(ttInfoDetail.getQdzCode()) ||
63 StringUtils.isEmpty(ttInfoDetail.getQdzName()) || 68 StringUtils.isEmpty(ttInfoDetail.getQdzName()) ||
64 StringUtils.isEmpty(ttInfoDetail.getZdzCode()) || 69 StringUtils.isEmpty(ttInfoDetail.getZdzCode()) ||
65 - StringUtils.isEmpty(ttInfoDetail.getZdzName()) ) { 70 + StringUtils.isEmpty(ttInfoDetail.getZdzName()) ||
  71 + (ttInfoDetail.getBcsj() == null) ) {
66 72
67 errorCountData.errorcount ++; 73 errorCountData.errorcount ++;
68 } 74 }
src/main/resources/datatools/ktrs/ttinfodetailoutputforedit.ktr
1 -<?xml version="1.0" encoding="UTF-8"?>  
2 -<transformation>  
3 - <info>  
4 - <name>ttinfodetailoutputforedit</name>  
5 - <description/>  
6 - <extended_description/>  
7 - <trans_version/>  
8 - <trans_type>Normal</trans_type>  
9 - <trans_status>0</trans_status>  
10 - <directory>&#x2f;</directory>  
11 - <parameters>  
12 - <parameter>  
13 - <name>tempfilepath</name>  
14 - <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;runtime_temp&#x2f;bsth_control_u_d_files&#x2f;temp&#x2f;test</default_value>  
15 - <description>&#x9ed8;&#x8ba4;&#x8f93;&#x51fa;&#x7684;&#x6587;&#x4ef6;&#x8def;&#x5f84;&#x540d;</description>  
16 - </parameter>  
17 - <parameter>  
18 - <name>ttid</name>  
19 - <default_value>79</default_value>  
20 - <description>&#x65f6;&#x523b;&#x8868;id</description>  
21 - </parameter>  
22 - <parameter>  
23 - <name>xlid</name>  
24 - <default_value>63020</default_value>  
25 - <description>&#x7ebf;&#x8def;id</description>  
26 - </parameter>  
27 - </parameters>  
28 - <log>  
29 -<trans-log-table><connection/>  
30 -<schema/>  
31 -<table/>  
32 -<size_limit_lines/>  
33 -<interval/>  
34 -<timeout_days/>  
35 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>  
36 -<perf-log-table><connection/>  
37 -<schema/>  
38 -<table/>  
39 -<interval/>  
40 -<timeout_days/>  
41 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>  
42 -<channel-log-table><connection/>  
43 -<schema/>  
44 -<table/>  
45 -<timeout_days/>  
46 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>  
47 -<step-log-table><connection/>  
48 -<schema/>  
49 -<table/>  
50 -<timeout_days/>  
51 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>  
52 -<metrics-log-table><connection/>  
53 -<schema/>  
54 -<table/>  
55 -<timeout_days/>  
56 -<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>  
57 - </log>  
58 - <maxdate>  
59 - <connection/>  
60 - <table/>  
61 - <field/>  
62 - <offset>0.0</offset>  
63 - <maxdiff>0.0</maxdiff>  
64 - </maxdate>  
65 - <size_rowset>10000</size_rowset>  
66 - <sleep_time_empty>50</sleep_time_empty>  
67 - <sleep_time_full>50</sleep_time_full>  
68 - <unique_connections>N</unique_connections>  
69 - <feedback_shown>Y</feedback_shown>  
70 - <feedback_size>50000</feedback_size>  
71 - <using_thread_priorities>Y</using_thread_priorities>  
72 - <shared_objects_file/>  
73 - <capture_step_performance>N</capture_step_performance>  
74 - <step_performance_capturing_delay>1000</step_performance_capturing_delay>  
75 - <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>  
76 - <dependencies>  
77 - </dependencies>  
78 - <partitionschemas>  
79 - </partitionschemas>  
80 - <slaveservers>  
81 - </slaveservers>  
82 - <clusterschemas>  
83 - </clusterschemas>  
84 - <created_user>-</created_user>  
85 - <created_date>2016&#x2f;07&#x2f;11 21&#x3a;45&#x3a;05.041</created_date>  
86 - <modified_user>-</modified_user>  
87 - <modified_date>2016&#x2f;07&#x2f;11 21&#x3a;45&#x3a;05.041</modified_date>  
88 - <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>  
89 - <is_key_private>N</is_key_private>  
90 - </info>  
91 - <notepads>  
92 - <notepad>  
93 - <note>&#x6b64;&#x5904;&#x8f6c;&#x6362;excel&#x6709;&#x95ee;&#x9898;&#xff0c;&#xa;2003&#x683c;&#x5f0f;&#x7684;xls&#x6700;&#x591a;256&#x5217;&#xff0c;&#xa;&#x8fd9;&#x91cc;&#x660e;&#x663e;&#x8d85;&#x8fc7;&#xff0c;&#x6240;&#x4ee5;&#x628a;&#x6240;&#x6709;&#x5185;&#x5bb9;&#x5408;&#x5e76;&#x6210;1&#x5217;&#xff0c;&#xa;&#x7528;,&#x5206;&#x9694;</note>  
94 - <xloc>316</xloc>  
95 - <yloc>166</yloc>  
96 - <width>245</width>  
97 - <heigth>74</heigth>  
98 - <fontname>YaHei Consolas Hybrid</fontname>  
99 - <fontsize>12</fontsize>  
100 - <fontbold>N</fontbold>  
101 - <fontitalic>N</fontitalic>  
102 - <fontcolorred>0</fontcolorred>  
103 - <fontcolorgreen>0</fontcolorgreen>  
104 - <fontcolorblue>0</fontcolorblue>  
105 - <backgroundcolorred>255</backgroundcolorred>  
106 - <backgroundcolorgreen>205</backgroundcolorgreen>  
107 - <backgroundcolorblue>112</backgroundcolorblue>  
108 - <bordercolorred>100</bordercolorred>  
109 - <bordercolorgreen>100</bordercolorgreen>  
110 - <bordercolorblue>100</bordercolorblue>  
111 - <drawshadow>Y</drawshadow>  
112 - </notepad>  
113 - </notepads>  
114 - <connection>  
115 - <name>192.168.168.1_jwgl_dw</name>  
116 - <server>192.168.168.1</server>  
117 - <type>ORACLE</type>  
118 - <access>Native</access>  
119 - <database>orcl</database>  
120 - <port>1521</port>  
121 - <username>jwgl_dw</username>  
122 - <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>  
123 - <servername/>  
124 - <data_tablespace/>  
125 - <index_tablespace/>  
126 - <attributes>  
127 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
128 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
129 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
130 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
131 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
132 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
133 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
134 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
135 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
136 - </attributes>  
137 - </connection>  
138 - <connection>  
139 - <name>bus_control_variable</name>  
140 - <server>&#x24;&#x7b;v_db_ip&#x7d;</server>  
141 - <type>MYSQL</type>  
142 - <access>Native</access>  
143 - <database>&#x24;&#x7b;v_db_dname&#x7d;</database>  
144 - <port>3306</port>  
145 - <username>&#x24;&#x7b;v_db_uname&#x7d;</username>  
146 - <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>  
147 - <servername/>  
148 - <data_tablespace/>  
149 - <index_tablespace/>  
150 - <attributes>  
151 - <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>  
152 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
153 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
154 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
155 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
156 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
157 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
158 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
159 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
160 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
161 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
162 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
163 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
164 - </attributes>  
165 - </connection>  
166 - <connection>  
167 - <name>bus_control_&#x516c;&#x53f8;_201</name>  
168 - <server>localhost</server>  
169 - <type>MYSQL</type>  
170 - <access>Native</access>  
171 - <database>control</database>  
172 - <port>3306</port>  
173 - <username>root</username>  
174 - <password>Encrypted </password>  
175 - <servername/>  
176 - <data_tablespace/>  
177 - <index_tablespace/>  
178 - <attributes>  
179 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
180 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
181 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
182 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
183 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
184 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
185 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
186 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
187 - <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>  
188 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
189 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
190 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
191 - </attributes>  
192 - </connection>  
193 - <connection>  
194 - <name>bus_control_&#x672c;&#x673a;</name>  
195 - <server>localhost</server>  
196 - <type>MYSQL</type>  
197 - <access>Native</access>  
198 - <database>control</database>  
199 - <port>3306</port>  
200 - <username>root</username>  
201 - <password>Encrypted </password>  
202 - <servername/>  
203 - <data_tablespace/>  
204 - <index_tablespace/>  
205 - <attributes>  
206 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
207 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
208 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
209 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
210 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
211 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
212 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
213 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
214 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
215 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
216 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
217 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
218 - </attributes>  
219 - </connection>  
220 - <connection>  
221 - <name>xlab_mysql_youle</name>  
222 - <server>101.231.124.8</server>  
223 - <type>MYSQL</type>  
224 - <access>Native</access>  
225 - <database>xlab_youle</database>  
226 - <port>45687</port>  
227 - <username>xlab-youle</username>  
228 - <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>  
229 - <servername/>  
230 - <data_tablespace/>  
231 - <index_tablespace/>  
232 - <attributes>  
233 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
234 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
235 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
236 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
237 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
238 - <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>  
239 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
240 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
241 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
242 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
243 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
244 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
245 - </attributes>  
246 - </connection>  
247 - <connection>  
248 - <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>  
249 - <server>localhost</server>  
250 - <type>MYSQL</type>  
251 - <access>Native</access>  
252 - <database>xlab_youle</database>  
253 - <port>3306</port>  
254 - <username>root</username>  
255 - <password>Encrypted </password>  
256 - <servername/>  
257 - <data_tablespace/>  
258 - <index_tablespace/>  
259 - <attributes>  
260 - <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>  
261 - <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>  
262 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
263 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
264 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
265 - <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>  
266 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
267 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
268 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
269 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>  
270 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>  
271 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
272 - </attributes>  
273 - </connection>  
274 - <connection>  
275 - <name>xlab_youle</name>  
276 - <server/>  
277 - <type>MYSQL</type>  
278 - <access>JNDI</access>  
279 - <database>xlab_youle</database>  
280 - <port>1521</port>  
281 - <username/>  
282 - <password>Encrypted </password>  
283 - <servername/>  
284 - <data_tablespace/>  
285 - <index_tablespace/>  
286 - <attributes>  
287 - <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>  
288 - <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>  
289 - <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>  
290 - <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>  
291 - <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>  
292 - <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>  
293 - <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>  
294 - <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>  
295 - <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>  
296 - <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>  
297 - </attributes>  
298 - </connection>  
299 - <order>  
300 - <hop> <from>&#x5217;&#x8f6c;&#x884c;</from><to>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>  
301 - <hop> <from>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>  
302 - <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x8868;&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>  
303 - <hop> <from>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</from><to>&#x5408;&#x5e76;&#x5185;&#x5bb9;</to><enabled>Y</enabled> </hop>  
304 - <hop> <from>&#x5408;&#x5e76;&#x5185;&#x5bb9;</from><to>&#x5217;&#x8f6c;&#x884c;</to><enabled>Y</enabled> </hop>  
305 - <hop> <from>&#x8868;&#x8f93;&#x5165;</from><to>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</to><enabled>Y</enabled> </hop>  
306 - </order>  
307 - <step>  
308 - <name>Excel&#x8f93;&#x51fa;</name>  
309 - <type>ExcelOutput</type>  
310 - <description/>  
311 - <distribute>Y</distribute>  
312 - <custom_distribution/>  
313 - <copies>1</copies>  
314 - <partitioning>  
315 - <method>none</method>  
316 - <schema_name/>  
317 - </partitioning>  
318 - <header>Y</header>  
319 - <footer>N</footer>  
320 - <encoding/>  
321 - <append>N</append>  
322 - <add_to_result_filenames>Y</add_to_result_filenames>  
323 - <file>  
324 - <name>&#x24;&#x7b;tempfilepath&#x7d;</name>  
325 - <extention>xls</extention>  
326 - <do_not_open_newfile_init>N</do_not_open_newfile_init>  
327 - <create_parent_folder>N</create_parent_folder>  
328 - <split>N</split>  
329 - <add_date>N</add_date>  
330 - <add_time>N</add_time>  
331 - <SpecifyFormat>N</SpecifyFormat>  
332 - <date_time_format/>  
333 - <sheetname>Sheet1</sheetname>  
334 - <autosizecolums>N</autosizecolums>  
335 - <nullisblank>N</nullisblank>  
336 - <protect_sheet>N</protect_sheet>  
337 - <password>Encrypted </password>  
338 - <splitevery>0</splitevery>  
339 - <usetempfiles>N</usetempfiles>  
340 - <tempdirectory/>  
341 - </file>  
342 - <template>  
343 - <enabled>N</enabled>  
344 - <append>N</append>  
345 - <filename>template.xls</filename>  
346 - </template>  
347 - <fields>  
348 - <field>  
349 - <name>lp</name>  
350 - <type>String</type>  
351 - <format/>  
352 - </field>  
353 - <field>  
354 - <name>fcno1</name>  
355 - <type>String</type>  
356 - <format/>  
357 - </field>  
358 - <field>  
359 - <name>fcno2</name>  
360 - <type>String</type>  
361 - <format/>  
362 - </field>  
363 - <field>  
364 - <name>fcno3</name>  
365 - <type>String</type>  
366 - <format/>  
367 - </field>  
368 - <field>  
369 - <name>fcno4</name>  
370 - <type>String</type>  
371 - <format/>  
372 - </field>  
373 - <field>  
374 - <name>fcno5</name>  
375 - <type>String</type>  
376 - <format/>  
377 - </field>  
378 - <field>  
379 - <name>fcno6</name>  
380 - <type>String</type>  
381 - <format/>  
382 - </field>  
383 - <field>  
384 - <name>fcno7</name>  
385 - <type>String</type>  
386 - <format/>  
387 - </field>  
388 - <field>  
389 - <name>fcno8</name>  
390 - <type>String</type>  
391 - <format/>  
392 - </field>  
393 - <field>  
394 - <name>fcno9</name>  
395 - <type>String</type>  
396 - <format/>  
397 - </field>  
398 - <field>  
399 - <name>fcno10</name>  
400 - <type>String</type>  
401 - <format/>  
402 - </field>  
403 - <field>  
404 - <name>fcno11</name>  
405 - <type>String</type>  
406 - <format/>  
407 - </field>  
408 - <field>  
409 - <name>fcno12</name>  
410 - <type>String</type>  
411 - <format/>  
412 - </field>  
413 - <field>  
414 - <name>fcno13</name>  
415 - <type>String</type>  
416 - <format/>  
417 - </field>  
418 - <field>  
419 - <name>fcno14</name>  
420 - <type>String</type>  
421 - <format/>  
422 - </field>  
423 - <field>  
424 - <name>fcno15</name>  
425 - <type>String</type>  
426 - <format/>  
427 - </field>  
428 - <field>  
429 - <name>fcno16</name>  
430 - <type>String</type>  
431 - <format/>  
432 - </field>  
433 - <field>  
434 - <name>fcno17</name>  
435 - <type>String</type>  
436 - <format/>  
437 - </field>  
438 - <field>  
439 - <name>fcno18</name>  
440 - <type>String</type>  
441 - <format/>  
442 - </field>  
443 - <field>  
444 - <name>fcno19</name>  
445 - <type>String</type>  
446 - <format/>  
447 - </field>  
448 - <field>  
449 - <name>fcno20</name>  
450 - <type>String</type>  
451 - <format/>  
452 - </field>  
453 - <field>  
454 - <name>fcno21</name>  
455 - <type>String</type>  
456 - <format/>  
457 - </field>  
458 - <field>  
459 - <name>fcno22</name>  
460 - <type>String</type>  
461 - <format/>  
462 - </field>  
463 - <field>  
464 - <name>fcno23</name>  
465 - <type>String</type>  
466 - <format/>  
467 - </field>  
468 - <field>  
469 - <name>fcno24</name>  
470 - <type>String</type>  
471 - <format/>  
472 - </field>  
473 - <field>  
474 - <name>fcno25</name>  
475 - <type>String</type>  
476 - <format/>  
477 - </field>  
478 - <field>  
479 - <name>fcno26</name>  
480 - <type>String</type>  
481 - <format/>  
482 - </field>  
483 - <field>  
484 - <name>fcno27</name>  
485 - <type>String</type>  
486 - <format/>  
487 - </field>  
488 - <field>  
489 - <name>fcno28</name>  
490 - <type>String</type>  
491 - <format/>  
492 - </field>  
493 - <field>  
494 - <name>fcno29</name>  
495 - <type>String</type>  
496 - <format/>  
497 - </field>  
498 - <field>  
499 - <name>fcno30</name>  
500 - <type>String</type>  
501 - <format/>  
502 - </field>  
503 - <field>  
504 - <name>fcno31</name>  
505 - <type>String</type>  
506 - <format/>  
507 - </field>  
508 - <field>  
509 - <name>fcno32</name>  
510 - <type>String</type>  
511 - <format/>  
512 - </field>  
513 - <field>  
514 - <name>fcno33</name>  
515 - <type>String</type>  
516 - <format/>  
517 - </field>  
518 - <field>  
519 - <name>fcno34</name>  
520 - <type>String</type>  
521 - <format/>  
522 - </field>  
523 - <field>  
524 - <name>fcno35</name>  
525 - <type>String</type>  
526 - <format/>  
527 - </field>  
528 - <field>  
529 - <name>fcno36</name>  
530 - <type>String</type>  
531 - <format/>  
532 - </field>  
533 - <field>  
534 - <name>fcno37</name>  
535 - <type>String</type>  
536 - <format/>  
537 - </field>  
538 - <field>  
539 - <name>fcno38</name>  
540 - <type>String</type>  
541 - <format/>  
542 - </field>  
543 - <field>  
544 - <name>fcno39</name>  
545 - <type>String</type>  
546 - <format/>  
547 - </field>  
548 - <field>  
549 - <name>fcno40</name>  
550 - <type>String</type>  
551 - <format/>  
552 - </field>  
553 - <field>  
554 - <name>fcno41</name>  
555 - <type>String</type>  
556 - <format/>  
557 - </field>  
558 - <field>  
559 - <name>fcno42</name>  
560 - <type>String</type>  
561 - <format/>  
562 - </field>  
563 - <field>  
564 - <name>fcno43</name>  
565 - <type>String</type>  
566 - <format/>  
567 - </field>  
568 - <field>  
569 - <name>fcno44</name>  
570 - <type>String</type>  
571 - <format/>  
572 - </field>  
573 - <field>  
574 - <name>fcno45</name>  
575 - <type>String</type>  
576 - <format/>  
577 - </field>  
578 - <field>  
579 - <name>fcno46</name>  
580 - <type>String</type>  
581 - <format/>  
582 - </field>  
583 - <field>  
584 - <name>fcno47</name>  
585 - <type>String</type>  
586 - <format/>  
587 - </field>  
588 - <field>  
589 - <name>fcno48</name>  
590 - <type>String</type>  
591 - <format/>  
592 - </field>  
593 - <field>  
594 - <name>fcno49</name>  
595 - <type>String</type>  
596 - <format/>  
597 - </field>  
598 - <field>  
599 - <name>fcno50</name>  
600 - <type>String</type>  
601 - <format/>  
602 - </field>  
603 - <field>  
604 - <name>fcno51</name>  
605 - <type>String</type>  
606 - <format/>  
607 - </field>  
608 - <field>  
609 - <name>fcno52</name>  
610 - <type>String</type>  
611 - <format/>  
612 - </field>  
613 - <field>  
614 - <name>fcno53</name>  
615 - <type>String</type>  
616 - <format/>  
617 - </field>  
618 - <field>  
619 - <name>fcno54</name>  
620 - <type>String</type>  
621 - <format/>  
622 - </field>  
623 - <field>  
624 - <name>fcno55</name>  
625 - <type>String</type>  
626 - <format/>  
627 - </field>  
628 - <field>  
629 - <name>fcno56</name>  
630 - <type>String</type>  
631 - <format/>  
632 - </field>  
633 - <field>  
634 - <name>fcno57</name>  
635 - <type>String</type>  
636 - <format/>  
637 - </field>  
638 - <field>  
639 - <name>fcno58</name>  
640 - <type>String</type>  
641 - <format/>  
642 - </field>  
643 - <field>  
644 - <name>fcno59</name>  
645 - <type>String</type>  
646 - <format/>  
647 - </field>  
648 - <field>  
649 - <name>fcno60</name>  
650 - <type>String</type>  
651 - <format/>  
652 - </field>  
653 - <field>  
654 - <name>fcno61</name>  
655 - <type>String</type>  
656 - <format/>  
657 - </field>  
658 - <field>  
659 - <name>fcno62</name>  
660 - <type>String</type>  
661 - <format/>  
662 - </field>  
663 - <field>  
664 - <name>fcno63</name>  
665 - <type>String</type>  
666 - <format/>  
667 - </field>  
668 - <field>  
669 - <name>fcno64</name>  
670 - <type>String</type>  
671 - <format/>  
672 - </field>  
673 - <field>  
674 - <name>fcno65</name>  
675 - <type>String</type>  
676 - <format/>  
677 - </field>  
678 - <field>  
679 - <name>fcno66</name>  
680 - <type>String</type>  
681 - <format/>  
682 - </field>  
683 - <field>  
684 - <name>fcno67</name>  
685 - <type>String</type>  
686 - <format/>  
687 - </field>  
688 - <field>  
689 - <name>fcno68</name>  
690 - <type>String</type>  
691 - <format/>  
692 - </field>  
693 - <field>  
694 - <name>fcno69</name>  
695 - <type>String</type>  
696 - <format/>  
697 - </field>  
698 - <field>  
699 - <name>fcno70</name>  
700 - <type>String</type>  
701 - <format/>  
702 - </field>  
703 - <field>  
704 - <name>fcno71</name>  
705 - <type>String</type>  
706 - <format/>  
707 - </field>  
708 - <field>  
709 - <name>fcno72</name>  
710 - <type>String</type>  
711 - <format/>  
712 - </field>  
713 - <field>  
714 - <name>fcno73</name>  
715 - <type>String</type>  
716 - <format/>  
717 - </field>  
718 - <field>  
719 - <name>fcno74</name>  
720 - <type>String</type>  
721 - <format/>  
722 - </field>  
723 - <field>  
724 - <name>fcno75</name>  
725 - <type>String</type>  
726 - <format/>  
727 - </field>  
728 - <field>  
729 - <name>fcno76</name>  
730 - <type>String</type>  
731 - <format/>  
732 - </field>  
733 - <field>  
734 - <name>fcno77</name>  
735 - <type>String</type>  
736 - <format/>  
737 - </field>  
738 - <field>  
739 - <name>fcno78</name>  
740 - <type>String</type>  
741 - <format/>  
742 - </field>  
743 - <field>  
744 - <name>fcno79</name>  
745 - <type>String</type>  
746 - <format/>  
747 - </field>  
748 - <field>  
749 - <name>fcno80</name>  
750 - <type>String</type>  
751 - <format/>  
752 - </field>  
753 - <field>  
754 - <name>fcno81</name>  
755 - <type>String</type>  
756 - <format/>  
757 - </field>  
758 - <field>  
759 - <name>fcno82</name>  
760 - <type>String</type>  
761 - <format/>  
762 - </field>  
763 - <field>  
764 - <name>fcno83</name>  
765 - <type>String</type>  
766 - <format/>  
767 - </field>  
768 - <field>  
769 - <name>fcno84</name>  
770 - <type>String</type>  
771 - <format/>  
772 - </field>  
773 - <field>  
774 - <name>fcno85</name>  
775 - <type>String</type>  
776 - <format/>  
777 - </field>  
778 - <field>  
779 - <name>fcno86</name>  
780 - <type>String</type>  
781 - <format/>  
782 - </field>  
783 - <field>  
784 - <name>fcno87</name>  
785 - <type>String</type>  
786 - <format/>  
787 - </field>  
788 - <field>  
789 - <name>fcno88</name>  
790 - <type>String</type>  
791 - <format/>  
792 - </field>  
793 - <field>  
794 - <name>fcno89</name>  
795 - <type>String</type>  
796 - <format/>  
797 - </field>  
798 - <field>  
799 - <name>fcno90</name>  
800 - <type>String</type>  
801 - <format/>  
802 - </field>  
803 - <field>  
804 - <name>fcno91</name>  
805 - <type>String</type>  
806 - <format/>  
807 - </field>  
808 - <field>  
809 - <name>fcno92</name>  
810 - <type>String</type>  
811 - <format/>  
812 - </field>  
813 - <field>  
814 - <name>fcno93</name>  
815 - <type>String</type>  
816 - <format/>  
817 - </field>  
818 - <field>  
819 - <name>fcno94</name>  
820 - <type>String</type>  
821 - <format/>  
822 - </field>  
823 - <field>  
824 - <name>fcno95</name>  
825 - <type>String</type>  
826 - <format/>  
827 - </field>  
828 - <field>  
829 - <name>fcno96</name>  
830 - <type>String</type>  
831 - <format/>  
832 - </field>  
833 - <field>  
834 - <name>fcno97</name>  
835 - <type>String</type>  
836 - <format/>  
837 - </field>  
838 - <field>  
839 - <name>fcno98</name>  
840 - <type>String</type>  
841 - <format/>  
842 - </field>  
843 - <field>  
844 - <name>fcno99</name>  
845 - <type>String</type>  
846 - <format/>  
847 - </field>  
848 - <field>  
849 - <name>fcno100</name>  
850 - <type>String</type>  
851 - <format/>  
852 - </field>  
853 - <field>  
854 - <name>fcno101</name>  
855 - <type>String</type>  
856 - <format/>  
857 - </field>  
858 - <field>  
859 - <name>fcno102</name>  
860 - <type>String</type>  
861 - <format/>  
862 - </field>  
863 - <field>  
864 - <name>fcno103</name>  
865 - <type>String</type>  
866 - <format/>  
867 - </field>  
868 - <field>  
869 - <name>fcno104</name>  
870 - <type>String</type>  
871 - <format/>  
872 - </field>  
873 - <field>  
874 - <name>fcno105</name>  
875 - <type>String</type>  
876 - <format/>  
877 - </field>  
878 - <field>  
879 - <name>fcno106</name>  
880 - <type>String</type>  
881 - <format/>  
882 - </field>  
883 - <field>  
884 - <name>fcno107</name>  
885 - <type>String</type>  
886 - <format/>  
887 - </field>  
888 - <field>  
889 - <name>fcno108</name>  
890 - <type>String</type>  
891 - <format/>  
892 - </field>  
893 - <field>  
894 - <name>fcno109</name>  
895 - <type>String</type>  
896 - <format/>  
897 - </field>  
898 - <field>  
899 - <name>fcno110</name>  
900 - <type>String</type>  
901 - <format/>  
902 - </field>  
903 - <field>  
904 - <name>fcno111</name>  
905 - <type>String</type>  
906 - <format/>  
907 - </field>  
908 - <field>  
909 - <name>fcno112</name>  
910 - <type>String</type>  
911 - <format/>  
912 - </field>  
913 - <field>  
914 - <name>fcno113</name>  
915 - <type>String</type>  
916 - <format/>  
917 - </field>  
918 - <field>  
919 - <name>fcno114</name>  
920 - <type>String</type>  
921 - <format/>  
922 - </field>  
923 - <field>  
924 - <name>fcno115</name>  
925 - <type>String</type>  
926 - <format/>  
927 - </field>  
928 - <field>  
929 - <name>fcno116</name>  
930 - <type>String</type>  
931 - <format/>  
932 - </field>  
933 - <field>  
934 - <name>fcno117</name>  
935 - <type>String</type>  
936 - <format/>  
937 - </field>  
938 - <field>  
939 - <name>fcno118</name>  
940 - <type>String</type>  
941 - <format/>  
942 - </field>  
943 - <field>  
944 - <name>fcno119</name>  
945 - <type>String</type>  
946 - <format/>  
947 - </field>  
948 - <field>  
949 - <name>fcno120</name>  
950 - <type>String</type>  
951 - <format/>  
952 - </field>  
953 - <field>  
954 - <name>fcno121</name>  
955 - <type>String</type>  
956 - <format/>  
957 - </field>  
958 - <field>  
959 - <name>fcno122</name>  
960 - <type>String</type>  
961 - <format/>  
962 - </field>  
963 - <field>  
964 - <name>fcno123</name>  
965 - <type>String</type>  
966 - <format/>  
967 - </field>  
968 - <field>  
969 - <name>fcno124</name>  
970 - <type>String</type>  
971 - <format/>  
972 - </field>  
973 - <field>  
974 - <name>fcno125</name>  
975 - <type>String</type>  
976 - <format/>  
977 - </field>  
978 - <field>  
979 - <name>fcno126</name>  
980 - <type>String</type>  
981 - <format/>  
982 - </field>  
983 - <field>  
984 - <name>fcno127</name>  
985 - <type>String</type>  
986 - <format/>  
987 - </field>  
988 - <field>  
989 - <name>fcno128</name>  
990 - <type>String</type>  
991 - <format/>  
992 - </field>  
993 - <field>  
994 - <name>fcno129</name>  
995 - <type>String</type>  
996 - <format/>  
997 - </field>  
998 - <field>  
999 - <name>fcno130</name>  
1000 - <type>String</type>  
1001 - <format/>  
1002 - </field>  
1003 - <field>  
1004 - <name>fcno131</name>  
1005 - <type>String</type>  
1006 - <format/>  
1007 - </field>  
1008 - <field>  
1009 - <name>fcno132</name>  
1010 - <type>String</type>  
1011 - <format/>  
1012 - </field>  
1013 - <field>  
1014 - <name>fcno133</name>  
1015 - <type>String</type>  
1016 - <format/>  
1017 - </field>  
1018 - <field>  
1019 - <name>fcno134</name>  
1020 - <type>String</type>  
1021 - <format/>  
1022 - </field>  
1023 - <field>  
1024 - <name>fcno135</name>  
1025 - <type>String</type>  
1026 - <format/>  
1027 - </field>  
1028 - <field>  
1029 - <name>fcno136</name>  
1030 - <type>String</type>  
1031 - <format/>  
1032 - </field>  
1033 - <field>  
1034 - <name>fcno137</name>  
1035 - <type>String</type>  
1036 - <format/>  
1037 - </field>  
1038 - <field>  
1039 - <name>fcno138</name>  
1040 - <type>String</type>  
1041 - <format/>  
1042 - </field>  
1043 - <field>  
1044 - <name>fcno139</name>  
1045 - <type>String</type>  
1046 - <format/>  
1047 - </field>  
1048 - <field>  
1049 - <name>fcno140</name>  
1050 - <type>String</type>  
1051 - <format/>  
1052 - </field>  
1053 - <field>  
1054 - <name>fcno141</name>  
1055 - <type>String</type>  
1056 - <format/>  
1057 - </field>  
1058 - <field>  
1059 - <name>fcno142</name>  
1060 - <type>String</type>  
1061 - <format/>  
1062 - </field>  
1063 - <field>  
1064 - <name>fcno143</name>  
1065 - <type>String</type>  
1066 - <format/>  
1067 - </field>  
1068 - <field>  
1069 - <name>fcno144</name>  
1070 - <type>String</type>  
1071 - <format/>  
1072 - </field>  
1073 - <field>  
1074 - <name>fcno145</name>  
1075 - <type>String</type>  
1076 - <format/>  
1077 - </field>  
1078 - <field>  
1079 - <name>fcno146</name>  
1080 - <type>String</type>  
1081 - <format/>  
1082 - </field>  
1083 - <field>  
1084 - <name>fcno147</name>  
1085 - <type>String</type>  
1086 - <format/>  
1087 - </field>  
1088 - <field>  
1089 - <name>fcno148</name>  
1090 - <type>String</type>  
1091 - <format/>  
1092 - </field>  
1093 - <field>  
1094 - <name>fcno149</name>  
1095 - <type>String</type>  
1096 - <format/>  
1097 - </field>  
1098 - <field>  
1099 - <name>fcno150</name>  
1100 - <type>String</type>  
1101 - <format/>  
1102 - </field>  
1103 - </fields>  
1104 - <custom>  
1105 - <header_font_name>arial</header_font_name>  
1106 - <header_font_size>10</header_font_size>  
1107 - <header_font_bold>N</header_font_bold>  
1108 - <header_font_italic>N</header_font_italic>  
1109 - <header_font_underline>no</header_font_underline>  
1110 - <header_font_orientation>horizontal</header_font_orientation>  
1111 - <header_font_color>black</header_font_color>  
1112 - <header_background_color>none</header_background_color>  
1113 - <header_row_height>255</header_row_height>  
1114 - <header_alignment>left</header_alignment>  
1115 - <header_image/>  
1116 - <row_font_name>arial</row_font_name>  
1117 - <row_font_size>10</row_font_size>  
1118 - <row_font_color>black</row_font_color>  
1119 - <row_background_color>none</row_background_color>  
1120 - </custom>  
1121 - <cluster_schema/>  
1122 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
1123 - <xloc>692</xloc>  
1124 - <yloc>514</yloc>  
1125 - <draw>Y</draw>  
1126 - </GUI>  
1127 - </step>  
1128 -  
1129 - <step>  
1130 - <name>&#x5217;&#x8f6c;&#x884c;</name>  
1131 - <type>Denormaliser</type>  
1132 - <description/>  
1133 - <distribute>N</distribute>  
1134 - <custom_distribution/>  
1135 - <copies>1</copies>  
1136 - <partitioning>  
1137 - <method>none</method>  
1138 - <schema_name/>  
1139 - </partitioning>  
1140 - <key_field>fcno</key_field>  
1141 - <group>  
1142 - <field>  
1143 - <name>lp</name>  
1144 - </field>  
1145 - </group>  
1146 - <fields>  
1147 - <field>  
1148 - <field_name>all_content</field_name>  
1149 - <key_value>1</key_value>  
1150 - <target_name>fcno1</target_name>  
1151 - <target_type>String</target_type>  
1152 - <target_format/>  
1153 - <target_length>-1</target_length>  
1154 - <target_precision>-1</target_precision>  
1155 - <target_decimal_symbol/>  
1156 - <target_grouping_symbol/>  
1157 - <target_currency_symbol/>  
1158 - <target_null_string/>  
1159 - <target_aggregation_type>-</target_aggregation_type>  
1160 - </field>  
1161 - <field>  
1162 - <field_name>all_content</field_name>  
1163 - <key_value>2</key_value>  
1164 - <target_name>fcno2</target_name>  
1165 - <target_type>String</target_type>  
1166 - <target_format/>  
1167 - <target_length>-1</target_length>  
1168 - <target_precision>-1</target_precision>  
1169 - <target_decimal_symbol/>  
1170 - <target_grouping_symbol/>  
1171 - <target_currency_symbol/>  
1172 - <target_null_string/>  
1173 - <target_aggregation_type>-</target_aggregation_type>  
1174 - </field>  
1175 - <field>  
1176 - <field_name>all_content</field_name>  
1177 - <key_value>3</key_value>  
1178 - <target_name>fcno3</target_name>  
1179 - <target_type>String</target_type>  
1180 - <target_format/>  
1181 - <target_length>-1</target_length>  
1182 - <target_precision>-1</target_precision>  
1183 - <target_decimal_symbol/>  
1184 - <target_grouping_symbol/>  
1185 - <target_currency_symbol/>  
1186 - <target_null_string/>  
1187 - <target_aggregation_type>-</target_aggregation_type>  
1188 - </field>  
1189 - <field>  
1190 - <field_name>all_content</field_name>  
1191 - <key_value>4</key_value>  
1192 - <target_name>fcno4</target_name>  
1193 - <target_type>String</target_type>  
1194 - <target_format/>  
1195 - <target_length>-1</target_length>  
1196 - <target_precision>-1</target_precision>  
1197 - <target_decimal_symbol/>  
1198 - <target_grouping_symbol/>  
1199 - <target_currency_symbol/>  
1200 - <target_null_string/>  
1201 - <target_aggregation_type>-</target_aggregation_type>  
1202 - </field>  
1203 - <field>  
1204 - <field_name>all_content</field_name>  
1205 - <key_value>5</key_value>  
1206 - <target_name>fcno5</target_name>  
1207 - <target_type>String</target_type>  
1208 - <target_format/>  
1209 - <target_length>-1</target_length>  
1210 - <target_precision>-1</target_precision>  
1211 - <target_decimal_symbol/>  
1212 - <target_grouping_symbol/>  
1213 - <target_currency_symbol/>  
1214 - <target_null_string/>  
1215 - <target_aggregation_type>-</target_aggregation_type>  
1216 - </field>  
1217 - <field>  
1218 - <field_name>all_content</field_name>  
1219 - <key_value>6</key_value>  
1220 - <target_name>fcno6</target_name>  
1221 - <target_type>String</target_type>  
1222 - <target_format/>  
1223 - <target_length>-1</target_length>  
1224 - <target_precision>-1</target_precision>  
1225 - <target_decimal_symbol/>  
1226 - <target_grouping_symbol/>  
1227 - <target_currency_symbol/>  
1228 - <target_null_string/>  
1229 - <target_aggregation_type>-</target_aggregation_type>  
1230 - </field>  
1231 - <field>  
1232 - <field_name>all_content</field_name>  
1233 - <key_value>7</key_value>  
1234 - <target_name>fcno7</target_name>  
1235 - <target_type>String</target_type>  
1236 - <target_format/>  
1237 - <target_length>-1</target_length>  
1238 - <target_precision>-1</target_precision>  
1239 - <target_decimal_symbol/>  
1240 - <target_grouping_symbol/>  
1241 - <target_currency_symbol/>  
1242 - <target_null_string/>  
1243 - <target_aggregation_type>-</target_aggregation_type>  
1244 - </field>  
1245 - <field>  
1246 - <field_name>all_content</field_name>  
1247 - <key_value>8</key_value>  
1248 - <target_name>fcno8</target_name>  
1249 - <target_type>String</target_type>  
1250 - <target_format/>  
1251 - <target_length>-1</target_length>  
1252 - <target_precision>-1</target_precision>  
1253 - <target_decimal_symbol/>  
1254 - <target_grouping_symbol/>  
1255 - <target_currency_symbol/>  
1256 - <target_null_string/>  
1257 - <target_aggregation_type>-</target_aggregation_type>  
1258 - </field>  
1259 - <field>  
1260 - <field_name>all_content</field_name>  
1261 - <key_value>9</key_value>  
1262 - <target_name>fcno9</target_name>  
1263 - <target_type>String</target_type>  
1264 - <target_format/>  
1265 - <target_length>-1</target_length>  
1266 - <target_precision>-1</target_precision>  
1267 - <target_decimal_symbol/>  
1268 - <target_grouping_symbol/>  
1269 - <target_currency_symbol/>  
1270 - <target_null_string/>  
1271 - <target_aggregation_type>-</target_aggregation_type>  
1272 - </field>  
1273 - <field>  
1274 - <field_name>all_content</field_name>  
1275 - <key_value>10</key_value>  
1276 - <target_name>fcno10</target_name>  
1277 - <target_type>String</target_type>  
1278 - <target_format/>  
1279 - <target_length>-1</target_length>  
1280 - <target_precision>-1</target_precision>  
1281 - <target_decimal_symbol/>  
1282 - <target_grouping_symbol/>  
1283 - <target_currency_symbol/>  
1284 - <target_null_string/>  
1285 - <target_aggregation_type>-</target_aggregation_type>  
1286 - </field>  
1287 - <field>  
1288 - <field_name>all_content</field_name>  
1289 - <key_value>11</key_value>  
1290 - <target_name>fcno11</target_name>  
1291 - <target_type>String</target_type>  
1292 - <target_format/>  
1293 - <target_length>-1</target_length>  
1294 - <target_precision>-1</target_precision>  
1295 - <target_decimal_symbol/>  
1296 - <target_grouping_symbol/>  
1297 - <target_currency_symbol/>  
1298 - <target_null_string/>  
1299 - <target_aggregation_type>-</target_aggregation_type>  
1300 - </field>  
1301 - <field>  
1302 - <field_name>all_content</field_name>  
1303 - <key_value>12</key_value>  
1304 - <target_name>fcno12</target_name>  
1305 - <target_type>String</target_type>  
1306 - <target_format/>  
1307 - <target_length>-1</target_length>  
1308 - <target_precision>-1</target_precision>  
1309 - <target_decimal_symbol/>  
1310 - <target_grouping_symbol/>  
1311 - <target_currency_symbol/>  
1312 - <target_null_string/>  
1313 - <target_aggregation_type>-</target_aggregation_type>  
1314 - </field>  
1315 - <field>  
1316 - <field_name>all_content</field_name>  
1317 - <key_value>13</key_value>  
1318 - <target_name>fcno13</target_name>  
1319 - <target_type>String</target_type>  
1320 - <target_format/>  
1321 - <target_length>-1</target_length>  
1322 - <target_precision>-1</target_precision>  
1323 - <target_decimal_symbol/>  
1324 - <target_grouping_symbol/>  
1325 - <target_currency_symbol/>  
1326 - <target_null_string/>  
1327 - <target_aggregation_type>-</target_aggregation_type>  
1328 - </field>  
1329 - <field>  
1330 - <field_name>all_content</field_name>  
1331 - <key_value>14</key_value>  
1332 - <target_name>fcno14</target_name>  
1333 - <target_type>String</target_type>  
1334 - <target_format/>  
1335 - <target_length>-1</target_length>  
1336 - <target_precision>-1</target_precision>  
1337 - <target_decimal_symbol/>  
1338 - <target_grouping_symbol/>  
1339 - <target_currency_symbol/>  
1340 - <target_null_string/>  
1341 - <target_aggregation_type>-</target_aggregation_type>  
1342 - </field>  
1343 - <field>  
1344 - <field_name>all_content</field_name>  
1345 - <key_value>15</key_value>  
1346 - <target_name>fcno15</target_name>  
1347 - <target_type>String</target_type>  
1348 - <target_format/>  
1349 - <target_length>-1</target_length>  
1350 - <target_precision>-1</target_precision>  
1351 - <target_decimal_symbol/>  
1352 - <target_grouping_symbol/>  
1353 - <target_currency_symbol/>  
1354 - <target_null_string/>  
1355 - <target_aggregation_type>-</target_aggregation_type>  
1356 - </field>  
1357 - <field>  
1358 - <field_name>all_content</field_name>  
1359 - <key_value>16</key_value>  
1360 - <target_name>fcno16</target_name>  
1361 - <target_type>String</target_type>  
1362 - <target_format/>  
1363 - <target_length>-1</target_length>  
1364 - <target_precision>-1</target_precision>  
1365 - <target_decimal_symbol/>  
1366 - <target_grouping_symbol/>  
1367 - <target_currency_symbol/>  
1368 - <target_null_string/>  
1369 - <target_aggregation_type>-</target_aggregation_type>  
1370 - </field>  
1371 - <field>  
1372 - <field_name>all_content</field_name>  
1373 - <key_value>17</key_value>  
1374 - <target_name>fcno17</target_name>  
1375 - <target_type>String</target_type>  
1376 - <target_format/>  
1377 - <target_length>-1</target_length>  
1378 - <target_precision>-1</target_precision>  
1379 - <target_decimal_symbol/>  
1380 - <target_grouping_symbol/>  
1381 - <target_currency_symbol/>  
1382 - <target_null_string/>  
1383 - <target_aggregation_type>-</target_aggregation_type>  
1384 - </field>  
1385 - <field>  
1386 - <field_name>all_content</field_name>  
1387 - <key_value>18</key_value>  
1388 - <target_name>fcno18</target_name>  
1389 - <target_type>String</target_type>  
1390 - <target_format/>  
1391 - <target_length>-1</target_length>  
1392 - <target_precision>-1</target_precision>  
1393 - <target_decimal_symbol/>  
1394 - <target_grouping_symbol/>  
1395 - <target_currency_symbol/>  
1396 - <target_null_string/>  
1397 - <target_aggregation_type>-</target_aggregation_type>  
1398 - </field>  
1399 - <field>  
1400 - <field_name>all_content</field_name>  
1401 - <key_value>19</key_value>  
1402 - <target_name>fcno19</target_name>  
1403 - <target_type>String</target_type>  
1404 - <target_format/>  
1405 - <target_length>-1</target_length>  
1406 - <target_precision>-1</target_precision>  
1407 - <target_decimal_symbol/>  
1408 - <target_grouping_symbol/>  
1409 - <target_currency_symbol/>  
1410 - <target_null_string/>  
1411 - <target_aggregation_type>-</target_aggregation_type>  
1412 - </field>  
1413 - <field>  
1414 - <field_name>all_content</field_name>  
1415 - <key_value>20</key_value>  
1416 - <target_name>fcno20</target_name>  
1417 - <target_type>String</target_type>  
1418 - <target_format/>  
1419 - <target_length>-1</target_length>  
1420 - <target_precision>-1</target_precision>  
1421 - <target_decimal_symbol/>  
1422 - <target_grouping_symbol/>  
1423 - <target_currency_symbol/>  
1424 - <target_null_string/>  
1425 - <target_aggregation_type>-</target_aggregation_type>  
1426 - </field>  
1427 - <field>  
1428 - <field_name>all_content</field_name>  
1429 - <key_value>21</key_value>  
1430 - <target_name>fcno21</target_name>  
1431 - <target_type>String</target_type>  
1432 - <target_format/>  
1433 - <target_length>-1</target_length>  
1434 - <target_precision>-1</target_precision>  
1435 - <target_decimal_symbol/>  
1436 - <target_grouping_symbol/>  
1437 - <target_currency_symbol/>  
1438 - <target_null_string/>  
1439 - <target_aggregation_type>-</target_aggregation_type>  
1440 - </field>  
1441 - <field>  
1442 - <field_name>all_content</field_name>  
1443 - <key_value>22</key_value>  
1444 - <target_name>fcno22</target_name>  
1445 - <target_type>String</target_type>  
1446 - <target_format/>  
1447 - <target_length>-1</target_length>  
1448 - <target_precision>-1</target_precision>  
1449 - <target_decimal_symbol/>  
1450 - <target_grouping_symbol/>  
1451 - <target_currency_symbol/>  
1452 - <target_null_string/>  
1453 - <target_aggregation_type>-</target_aggregation_type>  
1454 - </field>  
1455 - <field>  
1456 - <field_name>all_content</field_name>  
1457 - <key_value>23</key_value>  
1458 - <target_name>fcno23</target_name>  
1459 - <target_type>String</target_type>  
1460 - <target_format/>  
1461 - <target_length>-1</target_length>  
1462 - <target_precision>-1</target_precision>  
1463 - <target_decimal_symbol/>  
1464 - <target_grouping_symbol/>  
1465 - <target_currency_symbol/>  
1466 - <target_null_string/>  
1467 - <target_aggregation_type>-</target_aggregation_type>  
1468 - </field>  
1469 - <field>  
1470 - <field_name>all_content</field_name>  
1471 - <key_value>24</key_value>  
1472 - <target_name>fcno24</target_name>  
1473 - <target_type>String</target_type>  
1474 - <target_format/>  
1475 - <target_length>-1</target_length>  
1476 - <target_precision>-1</target_precision>  
1477 - <target_decimal_symbol/>  
1478 - <target_grouping_symbol/>  
1479 - <target_currency_symbol/>  
1480 - <target_null_string/>  
1481 - <target_aggregation_type>-</target_aggregation_type>  
1482 - </field>  
1483 - <field>  
1484 - <field_name>all_content</field_name>  
1485 - <key_value>25</key_value>  
1486 - <target_name>fcno25</target_name>  
1487 - <target_type>String</target_type>  
1488 - <target_format/>  
1489 - <target_length>-1</target_length>  
1490 - <target_precision>-1</target_precision>  
1491 - <target_decimal_symbol/>  
1492 - <target_grouping_symbol/>  
1493 - <target_currency_symbol/>  
1494 - <target_null_string/>  
1495 - <target_aggregation_type>-</target_aggregation_type>  
1496 - </field>  
1497 - <field>  
1498 - <field_name>all_content</field_name>  
1499 - <key_value>26</key_value>  
1500 - <target_name>fcno26</target_name>  
1501 - <target_type>String</target_type>  
1502 - <target_format/>  
1503 - <target_length>-1</target_length>  
1504 - <target_precision>-1</target_precision>  
1505 - <target_decimal_symbol/>  
1506 - <target_grouping_symbol/>  
1507 - <target_currency_symbol/>  
1508 - <target_null_string/>  
1509 - <target_aggregation_type>-</target_aggregation_type>  
1510 - </field>  
1511 - <field>  
1512 - <field_name>all_content</field_name>  
1513 - <key_value>27</key_value>  
1514 - <target_name>fcno27</target_name>  
1515 - <target_type>String</target_type>  
1516 - <target_format/>  
1517 - <target_length>-1</target_length>  
1518 - <target_precision>-1</target_precision>  
1519 - <target_decimal_symbol/>  
1520 - <target_grouping_symbol/>  
1521 - <target_currency_symbol/>  
1522 - <target_null_string/>  
1523 - <target_aggregation_type>-</target_aggregation_type>  
1524 - </field>  
1525 - <field>  
1526 - <field_name>all_content</field_name>  
1527 - <key_value>28</key_value>  
1528 - <target_name>fcno28</target_name>  
1529 - <target_type>String</target_type>  
1530 - <target_format/>  
1531 - <target_length>-1</target_length>  
1532 - <target_precision>-1</target_precision>  
1533 - <target_decimal_symbol/>  
1534 - <target_grouping_symbol/>  
1535 - <target_currency_symbol/>  
1536 - <target_null_string/>  
1537 - <target_aggregation_type>-</target_aggregation_type>  
1538 - </field>  
1539 - <field>  
1540 - <field_name>all_content</field_name>  
1541 - <key_value>29</key_value>  
1542 - <target_name>fcno29</target_name>  
1543 - <target_type>String</target_type>  
1544 - <target_format/>  
1545 - <target_length>-1</target_length>  
1546 - <target_precision>-1</target_precision>  
1547 - <target_decimal_symbol/>  
1548 - <target_grouping_symbol/>  
1549 - <target_currency_symbol/>  
1550 - <target_null_string/>  
1551 - <target_aggregation_type>-</target_aggregation_type>  
1552 - </field>  
1553 - <field>  
1554 - <field_name>all_content</field_name>  
1555 - <key_value>30</key_value>  
1556 - <target_name>fcno30</target_name>  
1557 - <target_type>String</target_type>  
1558 - <target_format/>  
1559 - <target_length>-1</target_length>  
1560 - <target_precision>-1</target_precision>  
1561 - <target_decimal_symbol/>  
1562 - <target_grouping_symbol/>  
1563 - <target_currency_symbol/>  
1564 - <target_null_string/>  
1565 - <target_aggregation_type>-</target_aggregation_type>  
1566 - </field>  
1567 - <field>  
1568 - <field_name>all_content</field_name>  
1569 - <key_value>31</key_value>  
1570 - <target_name>fcno31</target_name>  
1571 - <target_type>String</target_type>  
1572 - <target_format/>  
1573 - <target_length>-1</target_length>  
1574 - <target_precision>-1</target_precision>  
1575 - <target_decimal_symbol/>  
1576 - <target_grouping_symbol/>  
1577 - <target_currency_symbol/>  
1578 - <target_null_string/>  
1579 - <target_aggregation_type>-</target_aggregation_type>  
1580 - </field>  
1581 - <field>  
1582 - <field_name>all_content</field_name>  
1583 - <key_value>32</key_value>  
1584 - <target_name>fcno32</target_name>  
1585 - <target_type>String</target_type>  
1586 - <target_format/>  
1587 - <target_length>-1</target_length>  
1588 - <target_precision>-1</target_precision>  
1589 - <target_decimal_symbol/>  
1590 - <target_grouping_symbol/>  
1591 - <target_currency_symbol/>  
1592 - <target_null_string/>  
1593 - <target_aggregation_type>-</target_aggregation_type>  
1594 - </field>  
1595 - <field>  
1596 - <field_name>all_content</field_name>  
1597 - <key_value>33</key_value>  
1598 - <target_name>fcno33</target_name>  
1599 - <target_type>String</target_type>  
1600 - <target_format/>  
1601 - <target_length>-1</target_length>  
1602 - <target_precision>-1</target_precision>  
1603 - <target_decimal_symbol/>  
1604 - <target_grouping_symbol/>  
1605 - <target_currency_symbol/>  
1606 - <target_null_string/>  
1607 - <target_aggregation_type>-</target_aggregation_type>  
1608 - </field>  
1609 - <field>  
1610 - <field_name>all_content</field_name>  
1611 - <key_value>34</key_value>  
1612 - <target_name>fcno34</target_name>  
1613 - <target_type>String</target_type>  
1614 - <target_format/>  
1615 - <target_length>-1</target_length>  
1616 - <target_precision>-1</target_precision>  
1617 - <target_decimal_symbol/>  
1618 - <target_grouping_symbol/>  
1619 - <target_currency_symbol/>  
1620 - <target_null_string/>  
1621 - <target_aggregation_type>-</target_aggregation_type>  
1622 - </field>  
1623 - <field>  
1624 - <field_name>all_content</field_name>  
1625 - <key_value>35</key_value>  
1626 - <target_name>fcno35</target_name>  
1627 - <target_type>String</target_type>  
1628 - <target_format/>  
1629 - <target_length>-1</target_length>  
1630 - <target_precision>-1</target_precision>  
1631 - <target_decimal_symbol/>  
1632 - <target_grouping_symbol/>  
1633 - <target_currency_symbol/>  
1634 - <target_null_string/>  
1635 - <target_aggregation_type>-</target_aggregation_type>  
1636 - </field>  
1637 - <field>  
1638 - <field_name>all_content</field_name>  
1639 - <key_value>36</key_value>  
1640 - <target_name>fcno36</target_name>  
1641 - <target_type>String</target_type>  
1642 - <target_format/>  
1643 - <target_length>-1</target_length>  
1644 - <target_precision>-1</target_precision>  
1645 - <target_decimal_symbol/>  
1646 - <target_grouping_symbol/>  
1647 - <target_currency_symbol/>  
1648 - <target_null_string/>  
1649 - <target_aggregation_type>-</target_aggregation_type>  
1650 - </field>  
1651 - <field>  
1652 - <field_name>all_content</field_name>  
1653 - <key_value>37</key_value>  
1654 - <target_name>fcno37</target_name>  
1655 - <target_type>String</target_type>  
1656 - <target_format/>  
1657 - <target_length>-1</target_length>  
1658 - <target_precision>-1</target_precision>  
1659 - <target_decimal_symbol/>  
1660 - <target_grouping_symbol/>  
1661 - <target_currency_symbol/>  
1662 - <target_null_string/>  
1663 - <target_aggregation_type>-</target_aggregation_type>  
1664 - </field>  
1665 - <field>  
1666 - <field_name>all_content</field_name>  
1667 - <key_value>38</key_value>  
1668 - <target_name>fcno38</target_name>  
1669 - <target_type>String</target_type>  
1670 - <target_format/>  
1671 - <target_length>-1</target_length>  
1672 - <target_precision>-1</target_precision>  
1673 - <target_decimal_symbol/>  
1674 - <target_grouping_symbol/>  
1675 - <target_currency_symbol/>  
1676 - <target_null_string/>  
1677 - <target_aggregation_type>-</target_aggregation_type>  
1678 - </field>  
1679 - <field>  
1680 - <field_name>all_content</field_name>  
1681 - <key_value>39</key_value>  
1682 - <target_name>fcno39</target_name>  
1683 - <target_type>String</target_type>  
1684 - <target_format/>  
1685 - <target_length>-1</target_length>  
1686 - <target_precision>-1</target_precision>  
1687 - <target_decimal_symbol/>  
1688 - <target_grouping_symbol/>  
1689 - <target_currency_symbol/>  
1690 - <target_null_string/>  
1691 - <target_aggregation_type>-</target_aggregation_type>  
1692 - </field>  
1693 - <field>  
1694 - <field_name>all_content</field_name>  
1695 - <key_value>40</key_value>  
1696 - <target_name>fcno40</target_name>  
1697 - <target_type>String</target_type>  
1698 - <target_format/>  
1699 - <target_length>-1</target_length>  
1700 - <target_precision>-1</target_precision>  
1701 - <target_decimal_symbol/>  
1702 - <target_grouping_symbol/>  
1703 - <target_currency_symbol/>  
1704 - <target_null_string/>  
1705 - <target_aggregation_type>-</target_aggregation_type>  
1706 - </field>  
1707 - <field>  
1708 - <field_name>all_content</field_name>  
1709 - <key_value>41</key_value>  
1710 - <target_name>fcno41</target_name>  
1711 - <target_type>String</target_type>  
1712 - <target_format/>  
1713 - <target_length>-1</target_length>  
1714 - <target_precision>-1</target_precision>  
1715 - <target_decimal_symbol/>  
1716 - <target_grouping_symbol/>  
1717 - <target_currency_symbol/>  
1718 - <target_null_string/>  
1719 - <target_aggregation_type>-</target_aggregation_type>  
1720 - </field>  
1721 - <field>  
1722 - <field_name>all_content</field_name>  
1723 - <key_value>42</key_value>  
1724 - <target_name>fcno42</target_name>  
1725 - <target_type>String</target_type>  
1726 - <target_format/>  
1727 - <target_length>-1</target_length>  
1728 - <target_precision>-1</target_precision>  
1729 - <target_decimal_symbol/>  
1730 - <target_grouping_symbol/>  
1731 - <target_currency_symbol/>  
1732 - <target_null_string/>  
1733 - <target_aggregation_type>-</target_aggregation_type>  
1734 - </field>  
1735 - <field>  
1736 - <field_name>all_content</field_name>  
1737 - <key_value>43</key_value>  
1738 - <target_name>fcno43</target_name>  
1739 - <target_type>String</target_type>  
1740 - <target_format/>  
1741 - <target_length>-1</target_length>  
1742 - <target_precision>-1</target_precision>  
1743 - <target_decimal_symbol/>  
1744 - <target_grouping_symbol/>  
1745 - <target_currency_symbol/>  
1746 - <target_null_string/>  
1747 - <target_aggregation_type>-</target_aggregation_type>  
1748 - </field>  
1749 - <field>  
1750 - <field_name>all_content</field_name>  
1751 - <key_value>44</key_value>  
1752 - <target_name>fcno44</target_name>  
1753 - <target_type>String</target_type>  
1754 - <target_format/>  
1755 - <target_length>-1</target_length>  
1756 - <target_precision>-1</target_precision>  
1757 - <target_decimal_symbol/>  
1758 - <target_grouping_symbol/>  
1759 - <target_currency_symbol/>  
1760 - <target_null_string/>  
1761 - <target_aggregation_type>-</target_aggregation_type>  
1762 - </field>  
1763 - <field>  
1764 - <field_name>all_content</field_name>  
1765 - <key_value>45</key_value>  
1766 - <target_name>fcno45</target_name>  
1767 - <target_type>String</target_type>  
1768 - <target_format/>  
1769 - <target_length>-1</target_length>  
1770 - <target_precision>-1</target_precision>  
1771 - <target_decimal_symbol/>  
1772 - <target_grouping_symbol/>  
1773 - <target_currency_symbol/>  
1774 - <target_null_string/>  
1775 - <target_aggregation_type>-</target_aggregation_type>  
1776 - </field>  
1777 - <field>  
1778 - <field_name>all_content</field_name>  
1779 - <key_value>46</key_value>  
1780 - <target_name>fcno46</target_name>  
1781 - <target_type>String</target_type>  
1782 - <target_format/>  
1783 - <target_length>-1</target_length>  
1784 - <target_precision>-1</target_precision>  
1785 - <target_decimal_symbol/>  
1786 - <target_grouping_symbol/>  
1787 - <target_currency_symbol/>  
1788 - <target_null_string/>  
1789 - <target_aggregation_type>-</target_aggregation_type>  
1790 - </field>  
1791 - <field>  
1792 - <field_name>all_content</field_name>  
1793 - <key_value>47</key_value>  
1794 - <target_name>fcno47</target_name>  
1795 - <target_type>String</target_type>  
1796 - <target_format/>  
1797 - <target_length>-1</target_length>  
1798 - <target_precision>-1</target_precision>  
1799 - <target_decimal_symbol/>  
1800 - <target_grouping_symbol/>  
1801 - <target_currency_symbol/>  
1802 - <target_null_string/>  
1803 - <target_aggregation_type>-</target_aggregation_type>  
1804 - </field>  
1805 - <field>  
1806 - <field_name>all_content</field_name>  
1807 - <key_value>48</key_value>  
1808 - <target_name>fcno48</target_name>  
1809 - <target_type>String</target_type>  
1810 - <target_format/>  
1811 - <target_length>-1</target_length>  
1812 - <target_precision>-1</target_precision>  
1813 - <target_decimal_symbol/>  
1814 - <target_grouping_symbol/>  
1815 - <target_currency_symbol/>  
1816 - <target_null_string/>  
1817 - <target_aggregation_type>-</target_aggregation_type>  
1818 - </field>  
1819 - <field>  
1820 - <field_name>all_content</field_name>  
1821 - <key_value>49</key_value>  
1822 - <target_name>fcno49</target_name>  
1823 - <target_type>String</target_type>  
1824 - <target_format/>  
1825 - <target_length>-1</target_length>  
1826 - <target_precision>-1</target_precision>  
1827 - <target_decimal_symbol/>  
1828 - <target_grouping_symbol/>  
1829 - <target_currency_symbol/>  
1830 - <target_null_string/>  
1831 - <target_aggregation_type>-</target_aggregation_type>  
1832 - </field>  
1833 - <field>  
1834 - <field_name>all_content</field_name>  
1835 - <key_value>50</key_value>  
1836 - <target_name>fcno50</target_name>  
1837 - <target_type>String</target_type>  
1838 - <target_format/>  
1839 - <target_length>-1</target_length>  
1840 - <target_precision>-1</target_precision>  
1841 - <target_decimal_symbol/>  
1842 - <target_grouping_symbol/>  
1843 - <target_currency_symbol/>  
1844 - <target_null_string/>  
1845 - <target_aggregation_type>-</target_aggregation_type>  
1846 - </field>  
1847 - <field>  
1848 - <field_name>all_content</field_name>  
1849 - <key_value>51</key_value>  
1850 - <target_name>fcno51</target_name>  
1851 - <target_type>String</target_type>  
1852 - <target_format/>  
1853 - <target_length>-1</target_length>  
1854 - <target_precision>-1</target_precision>  
1855 - <target_decimal_symbol/>  
1856 - <target_grouping_symbol/>  
1857 - <target_currency_symbol/>  
1858 - <target_null_string/>  
1859 - <target_aggregation_type>-</target_aggregation_type>  
1860 - </field>  
1861 - <field>  
1862 - <field_name>all_content</field_name>  
1863 - <key_value>52</key_value>  
1864 - <target_name>fcno52</target_name>  
1865 - <target_type>String</target_type>  
1866 - <target_format/>  
1867 - <target_length>-1</target_length>  
1868 - <target_precision>-1</target_precision>  
1869 - <target_decimal_symbol/>  
1870 - <target_grouping_symbol/>  
1871 - <target_currency_symbol/>  
1872 - <target_null_string/>  
1873 - <target_aggregation_type>-</target_aggregation_type>  
1874 - </field>  
1875 - <field>  
1876 - <field_name>all_content</field_name>  
1877 - <key_value>53</key_value>  
1878 - <target_name>fcno53</target_name>  
1879 - <target_type>String</target_type>  
1880 - <target_format/>  
1881 - <target_length>-1</target_length>  
1882 - <target_precision>-1</target_precision>  
1883 - <target_decimal_symbol/>  
1884 - <target_grouping_symbol/>  
1885 - <target_currency_symbol/>  
1886 - <target_null_string/>  
1887 - <target_aggregation_type>-</target_aggregation_type>  
1888 - </field>  
1889 - <field>  
1890 - <field_name>all_content</field_name>  
1891 - <key_value>54</key_value>  
1892 - <target_name>fcno54</target_name>  
1893 - <target_type>String</target_type>  
1894 - <target_format/>  
1895 - <target_length>-1</target_length>  
1896 - <target_precision>-1</target_precision>  
1897 - <target_decimal_symbol/>  
1898 - <target_grouping_symbol/>  
1899 - <target_currency_symbol/>  
1900 - <target_null_string/>  
1901 - <target_aggregation_type>-</target_aggregation_type>  
1902 - </field>  
1903 - <field>  
1904 - <field_name>all_content</field_name>  
1905 - <key_value>55</key_value>  
1906 - <target_name>fcno55</target_name>  
1907 - <target_type>String</target_type>  
1908 - <target_format/>  
1909 - <target_length>-1</target_length>  
1910 - <target_precision>-1</target_precision>  
1911 - <target_decimal_symbol/>  
1912 - <target_grouping_symbol/>  
1913 - <target_currency_symbol/>  
1914 - <target_null_string/>  
1915 - <target_aggregation_type>-</target_aggregation_type>  
1916 - </field>  
1917 - <field>  
1918 - <field_name>all_content</field_name>  
1919 - <key_value>56</key_value>  
1920 - <target_name>fcno56</target_name>  
1921 - <target_type>String</target_type>  
1922 - <target_format/>  
1923 - <target_length>-1</target_length>  
1924 - <target_precision>-1</target_precision>  
1925 - <target_decimal_symbol/>  
1926 - <target_grouping_symbol/>  
1927 - <target_currency_symbol/>  
1928 - <target_null_string/>  
1929 - <target_aggregation_type>-</target_aggregation_type>  
1930 - </field>  
1931 - <field>  
1932 - <field_name>all_content</field_name>  
1933 - <key_value>57</key_value>  
1934 - <target_name>fcno57</target_name>  
1935 - <target_type>String</target_type>  
1936 - <target_format/>  
1937 - <target_length>-1</target_length>  
1938 - <target_precision>-1</target_precision>  
1939 - <target_decimal_symbol/>  
1940 - <target_grouping_symbol/>  
1941 - <target_currency_symbol/>  
1942 - <target_null_string/>  
1943 - <target_aggregation_type>-</target_aggregation_type>  
1944 - </field>  
1945 - <field>  
1946 - <field_name>all_content</field_name>  
1947 - <key_value>58</key_value>  
1948 - <target_name>fcno58</target_name>  
1949 - <target_type>String</target_type>  
1950 - <target_format/>  
1951 - <target_length>-1</target_length>  
1952 - <target_precision>-1</target_precision>  
1953 - <target_decimal_symbol/>  
1954 - <target_grouping_symbol/>  
1955 - <target_currency_symbol/>  
1956 - <target_null_string/>  
1957 - <target_aggregation_type>-</target_aggregation_type>  
1958 - </field>  
1959 - <field>  
1960 - <field_name>all_content</field_name>  
1961 - <key_value>59</key_value>  
1962 - <target_name>fcno59</target_name>  
1963 - <target_type>String</target_type>  
1964 - <target_format/>  
1965 - <target_length>-1</target_length>  
1966 - <target_precision>-1</target_precision>  
1967 - <target_decimal_symbol/>  
1968 - <target_grouping_symbol/>  
1969 - <target_currency_symbol/>  
1970 - <target_null_string/>  
1971 - <target_aggregation_type>-</target_aggregation_type>  
1972 - </field>  
1973 - <field>  
1974 - <field_name>all_content</field_name>  
1975 - <key_value>60</key_value>  
1976 - <target_name>fcno60</target_name>  
1977 - <target_type>String</target_type>  
1978 - <target_format/>  
1979 - <target_length>-1</target_length>  
1980 - <target_precision>-1</target_precision>  
1981 - <target_decimal_symbol/>  
1982 - <target_grouping_symbol/>  
1983 - <target_currency_symbol/>  
1984 - <target_null_string/>  
1985 - <target_aggregation_type>-</target_aggregation_type>  
1986 - </field>  
1987 - <field>  
1988 - <field_name>all_content</field_name>  
1989 - <key_value>61</key_value>  
1990 - <target_name>fcno61</target_name>  
1991 - <target_type>String</target_type>  
1992 - <target_format/>  
1993 - <target_length>-1</target_length>  
1994 - <target_precision>-1</target_precision>  
1995 - <target_decimal_symbol/>  
1996 - <target_grouping_symbol/>  
1997 - <target_currency_symbol/>  
1998 - <target_null_string/>  
1999 - <target_aggregation_type>-</target_aggregation_type>  
2000 - </field>  
2001 - <field>  
2002 - <field_name>all_content</field_name>  
2003 - <key_value>62</key_value>  
2004 - <target_name>fcno62</target_name>  
2005 - <target_type>String</target_type>  
2006 - <target_format/>  
2007 - <target_length>-1</target_length>  
2008 - <target_precision>-1</target_precision>  
2009 - <target_decimal_symbol/>  
2010 - <target_grouping_symbol/>  
2011 - <target_currency_symbol/>  
2012 - <target_null_string/>  
2013 - <target_aggregation_type>-</target_aggregation_type>  
2014 - </field>  
2015 - <field>  
2016 - <field_name>all_content</field_name>  
2017 - <key_value>63</key_value>  
2018 - <target_name>fcno63</target_name>  
2019 - <target_type>String</target_type>  
2020 - <target_format/>  
2021 - <target_length>-1</target_length>  
2022 - <target_precision>-1</target_precision>  
2023 - <target_decimal_symbol/>  
2024 - <target_grouping_symbol/>  
2025 - <target_currency_symbol/>  
2026 - <target_null_string/>  
2027 - <target_aggregation_type>-</target_aggregation_type>  
2028 - </field>  
2029 - <field>  
2030 - <field_name>all_content</field_name>  
2031 - <key_value>64</key_value>  
2032 - <target_name>fcno64</target_name>  
2033 - <target_type>String</target_type>  
2034 - <target_format/>  
2035 - <target_length>-1</target_length>  
2036 - <target_precision>-1</target_precision>  
2037 - <target_decimal_symbol/>  
2038 - <target_grouping_symbol/>  
2039 - <target_currency_symbol/>  
2040 - <target_null_string/>  
2041 - <target_aggregation_type>-</target_aggregation_type>  
2042 - </field>  
2043 - <field>  
2044 - <field_name>all_content</field_name>  
2045 - <key_value>65</key_value>  
2046 - <target_name>fcno65</target_name>  
2047 - <target_type>String</target_type>  
2048 - <target_format/>  
2049 - <target_length>-1</target_length>  
2050 - <target_precision>-1</target_precision>  
2051 - <target_decimal_symbol/>  
2052 - <target_grouping_symbol/>  
2053 - <target_currency_symbol/>  
2054 - <target_null_string/>  
2055 - <target_aggregation_type>-</target_aggregation_type>  
2056 - </field>  
2057 - <field>  
2058 - <field_name>all_content</field_name>  
2059 - <key_value>66</key_value>  
2060 - <target_name>fcno66</target_name>  
2061 - <target_type>String</target_type>  
2062 - <target_format/>  
2063 - <target_length>-1</target_length>  
2064 - <target_precision>-1</target_precision>  
2065 - <target_decimal_symbol/>  
2066 - <target_grouping_symbol/>  
2067 - <target_currency_symbol/>  
2068 - <target_null_string/>  
2069 - <target_aggregation_type>-</target_aggregation_type>  
2070 - </field>  
2071 - <field>  
2072 - <field_name>all_content</field_name>  
2073 - <key_value>67</key_value>  
2074 - <target_name>fcno67</target_name>  
2075 - <target_type>String</target_type>  
2076 - <target_format/>  
2077 - <target_length>-1</target_length>  
2078 - <target_precision>-1</target_precision>  
2079 - <target_decimal_symbol/>  
2080 - <target_grouping_symbol/>  
2081 - <target_currency_symbol/>  
2082 - <target_null_string/>  
2083 - <target_aggregation_type>-</target_aggregation_type>  
2084 - </field>  
2085 - <field>  
2086 - <field_name>all_content</field_name>  
2087 - <key_value>68</key_value>  
2088 - <target_name>fcno68</target_name>  
2089 - <target_type>String</target_type>  
2090 - <target_format/>  
2091 - <target_length>-1</target_length>  
2092 - <target_precision>-1</target_precision>  
2093 - <target_decimal_symbol/>  
2094 - <target_grouping_symbol/>  
2095 - <target_currency_symbol/>  
2096 - <target_null_string/>  
2097 - <target_aggregation_type>-</target_aggregation_type>  
2098 - </field>  
2099 - <field>  
2100 - <field_name>all_content</field_name>  
2101 - <key_value>69</key_value>  
2102 - <target_name>fcno69</target_name>  
2103 - <target_type>String</target_type>  
2104 - <target_format/>  
2105 - <target_length>-1</target_length>  
2106 - <target_precision>-1</target_precision>  
2107 - <target_decimal_symbol/>  
2108 - <target_grouping_symbol/>  
2109 - <target_currency_symbol/>  
2110 - <target_null_string/>  
2111 - <target_aggregation_type>-</target_aggregation_type>  
2112 - </field>  
2113 - <field>  
2114 - <field_name>all_content</field_name>  
2115 - <key_value>70</key_value>  
2116 - <target_name>fcno70</target_name>  
2117 - <target_type>String</target_type>  
2118 - <target_format/>  
2119 - <target_length>-1</target_length>  
2120 - <target_precision>-1</target_precision>  
2121 - <target_decimal_symbol/>  
2122 - <target_grouping_symbol/>  
2123 - <target_currency_symbol/>  
2124 - <target_null_string/>  
2125 - <target_aggregation_type>-</target_aggregation_type>  
2126 - </field>  
2127 - <field>  
2128 - <field_name>all_content</field_name>  
2129 - <key_value>71</key_value>  
2130 - <target_name>fcno71</target_name>  
2131 - <target_type>String</target_type>  
2132 - <target_format/>  
2133 - <target_length>-1</target_length>  
2134 - <target_precision>-1</target_precision>  
2135 - <target_decimal_symbol/>  
2136 - <target_grouping_symbol/>  
2137 - <target_currency_symbol/>  
2138 - <target_null_string/>  
2139 - <target_aggregation_type>-</target_aggregation_type>  
2140 - </field>  
2141 - <field>  
2142 - <field_name>all_content</field_name>  
2143 - <key_value>72</key_value>  
2144 - <target_name>fcno72</target_name>  
2145 - <target_type>String</target_type>  
2146 - <target_format/>  
2147 - <target_length>-1</target_length>  
2148 - <target_precision>-1</target_precision>  
2149 - <target_decimal_symbol/>  
2150 - <target_grouping_symbol/>  
2151 - <target_currency_symbol/>  
2152 - <target_null_string/>  
2153 - <target_aggregation_type>-</target_aggregation_type>  
2154 - </field>  
2155 - <field>  
2156 - <field_name>all_content</field_name>  
2157 - <key_value>73</key_value>  
2158 - <target_name>fcno73</target_name>  
2159 - <target_type>String</target_type>  
2160 - <target_format/>  
2161 - <target_length>-1</target_length>  
2162 - <target_precision>-1</target_precision>  
2163 - <target_decimal_symbol/>  
2164 - <target_grouping_symbol/>  
2165 - <target_currency_symbol/>  
2166 - <target_null_string/>  
2167 - <target_aggregation_type>-</target_aggregation_type>  
2168 - </field>  
2169 - <field>  
2170 - <field_name>all_content</field_name>  
2171 - <key_value>74</key_value>  
2172 - <target_name>fcno74</target_name>  
2173 - <target_type>String</target_type>  
2174 - <target_format/>  
2175 - <target_length>-1</target_length>  
2176 - <target_precision>-1</target_precision>  
2177 - <target_decimal_symbol/>  
2178 - <target_grouping_symbol/>  
2179 - <target_currency_symbol/>  
2180 - <target_null_string/>  
2181 - <target_aggregation_type>-</target_aggregation_type>  
2182 - </field>  
2183 - <field>  
2184 - <field_name>all_content</field_name>  
2185 - <key_value>75</key_value>  
2186 - <target_name>fcno75</target_name>  
2187 - <target_type>String</target_type>  
2188 - <target_format/>  
2189 - <target_length>-1</target_length>  
2190 - <target_precision>-1</target_precision>  
2191 - <target_decimal_symbol/>  
2192 - <target_grouping_symbol/>  
2193 - <target_currency_symbol/>  
2194 - <target_null_string/>  
2195 - <target_aggregation_type>-</target_aggregation_type>  
2196 - </field>  
2197 - <field>  
2198 - <field_name>all_content</field_name>  
2199 - <key_value>76</key_value>  
2200 - <target_name>fcno76</target_name>  
2201 - <target_type>String</target_type>  
2202 - <target_format/>  
2203 - <target_length>-1</target_length>  
2204 - <target_precision>-1</target_precision>  
2205 - <target_decimal_symbol/>  
2206 - <target_grouping_symbol/>  
2207 - <target_currency_symbol/>  
2208 - <target_null_string/>  
2209 - <target_aggregation_type>-</target_aggregation_type>  
2210 - </field>  
2211 - <field>  
2212 - <field_name>all_content</field_name>  
2213 - <key_value>77</key_value>  
2214 - <target_name>fcno77</target_name>  
2215 - <target_type>String</target_type>  
2216 - <target_format/>  
2217 - <target_length>-1</target_length>  
2218 - <target_precision>-1</target_precision>  
2219 - <target_decimal_symbol/>  
2220 - <target_grouping_symbol/>  
2221 - <target_currency_symbol/>  
2222 - <target_null_string/>  
2223 - <target_aggregation_type>-</target_aggregation_type>  
2224 - </field>  
2225 - <field>  
2226 - <field_name>all_content</field_name>  
2227 - <key_value>78</key_value>  
2228 - <target_name>fcno78</target_name>  
2229 - <target_type>String</target_type>  
2230 - <target_format/>  
2231 - <target_length>-1</target_length>  
2232 - <target_precision>-1</target_precision>  
2233 - <target_decimal_symbol/>  
2234 - <target_grouping_symbol/>  
2235 - <target_currency_symbol/>  
2236 - <target_null_string/>  
2237 - <target_aggregation_type>-</target_aggregation_type>  
2238 - </field>  
2239 - <field>  
2240 - <field_name>all_content</field_name>  
2241 - <key_value>79</key_value>  
2242 - <target_name>fcno79</target_name>  
2243 - <target_type>String</target_type>  
2244 - <target_format/>  
2245 - <target_length>-1</target_length>  
2246 - <target_precision>-1</target_precision>  
2247 - <target_decimal_symbol/>  
2248 - <target_grouping_symbol/>  
2249 - <target_currency_symbol/>  
2250 - <target_null_string/>  
2251 - <target_aggregation_type>-</target_aggregation_type>  
2252 - </field>  
2253 - <field>  
2254 - <field_name>all_content</field_name>  
2255 - <key_value>80</key_value>  
2256 - <target_name>fcno80</target_name>  
2257 - <target_type>String</target_type>  
2258 - <target_format/>  
2259 - <target_length>-1</target_length>  
2260 - <target_precision>-1</target_precision>  
2261 - <target_decimal_symbol/>  
2262 - <target_grouping_symbol/>  
2263 - <target_currency_symbol/>  
2264 - <target_null_string/>  
2265 - <target_aggregation_type>-</target_aggregation_type>  
2266 - </field>  
2267 - <field>  
2268 - <field_name>all_content</field_name>  
2269 - <key_value>81</key_value>  
2270 - <target_name>fcno81</target_name>  
2271 - <target_type>String</target_type>  
2272 - <target_format/>  
2273 - <target_length>-1</target_length>  
2274 - <target_precision>-1</target_precision>  
2275 - <target_decimal_symbol/>  
2276 - <target_grouping_symbol/>  
2277 - <target_currency_symbol/>  
2278 - <target_null_string/>  
2279 - <target_aggregation_type>-</target_aggregation_type>  
2280 - </field>  
2281 - <field>  
2282 - <field_name>all_content</field_name>  
2283 - <key_value>82</key_value>  
2284 - <target_name>fcno82</target_name>  
2285 - <target_type>String</target_type>  
2286 - <target_format/>  
2287 - <target_length>-1</target_length>  
2288 - <target_precision>-1</target_precision>  
2289 - <target_decimal_symbol/>  
2290 - <target_grouping_symbol/>  
2291 - <target_currency_symbol/>  
2292 - <target_null_string/>  
2293 - <target_aggregation_type>-</target_aggregation_type>  
2294 - </field>  
2295 - <field>  
2296 - <field_name>all_content</field_name>  
2297 - <key_value>83</key_value>  
2298 - <target_name>fcno83</target_name>  
2299 - <target_type>String</target_type>  
2300 - <target_format/>  
2301 - <target_length>-1</target_length>  
2302 - <target_precision>-1</target_precision>  
2303 - <target_decimal_symbol/>  
2304 - <target_grouping_symbol/>  
2305 - <target_currency_symbol/>  
2306 - <target_null_string/>  
2307 - <target_aggregation_type>-</target_aggregation_type>  
2308 - </field>  
2309 - <field>  
2310 - <field_name>all_content</field_name>  
2311 - <key_value>84</key_value>  
2312 - <target_name>fcno84</target_name>  
2313 - <target_type>String</target_type>  
2314 - <target_format/>  
2315 - <target_length>-1</target_length>  
2316 - <target_precision>-1</target_precision>  
2317 - <target_decimal_symbol/>  
2318 - <target_grouping_symbol/>  
2319 - <target_currency_symbol/>  
2320 - <target_null_string/>  
2321 - <target_aggregation_type>-</target_aggregation_type>  
2322 - </field>  
2323 - <field>  
2324 - <field_name>all_content</field_name>  
2325 - <key_value>85</key_value>  
2326 - <target_name>fcno85</target_name>  
2327 - <target_type>String</target_type>  
2328 - <target_format/>  
2329 - <target_length>-1</target_length>  
2330 - <target_precision>-1</target_precision>  
2331 - <target_decimal_symbol/>  
2332 - <target_grouping_symbol/>  
2333 - <target_currency_symbol/>  
2334 - <target_null_string/>  
2335 - <target_aggregation_type>-</target_aggregation_type>  
2336 - </field>  
2337 - <field>  
2338 - <field_name>all_content</field_name>  
2339 - <key_value>86</key_value>  
2340 - <target_name>fcno86</target_name>  
2341 - <target_type>String</target_type>  
2342 - <target_format/>  
2343 - <target_length>-1</target_length>  
2344 - <target_precision>-1</target_precision>  
2345 - <target_decimal_symbol/>  
2346 - <target_grouping_symbol/>  
2347 - <target_currency_symbol/>  
2348 - <target_null_string/>  
2349 - <target_aggregation_type>-</target_aggregation_type>  
2350 - </field>  
2351 - <field>  
2352 - <field_name>all_content</field_name>  
2353 - <key_value>87</key_value>  
2354 - <target_name>fcno87</target_name>  
2355 - <target_type>String</target_type>  
2356 - <target_format/>  
2357 - <target_length>-1</target_length>  
2358 - <target_precision>-1</target_precision>  
2359 - <target_decimal_symbol/>  
2360 - <target_grouping_symbol/>  
2361 - <target_currency_symbol/>  
2362 - <target_null_string/>  
2363 - <target_aggregation_type>-</target_aggregation_type>  
2364 - </field>  
2365 - <field>  
2366 - <field_name>all_content</field_name>  
2367 - <key_value>88</key_value>  
2368 - <target_name>fcno88</target_name>  
2369 - <target_type>String</target_type>  
2370 - <target_format/>  
2371 - <target_length>-1</target_length>  
2372 - <target_precision>-1</target_precision>  
2373 - <target_decimal_symbol/>  
2374 - <target_grouping_symbol/>  
2375 - <target_currency_symbol/>  
2376 - <target_null_string/>  
2377 - <target_aggregation_type>-</target_aggregation_type>  
2378 - </field>  
2379 - <field>  
2380 - <field_name>all_content</field_name>  
2381 - <key_value>89</key_value>  
2382 - <target_name>fcno89</target_name>  
2383 - <target_type>String</target_type>  
2384 - <target_format/>  
2385 - <target_length>-1</target_length>  
2386 - <target_precision>-1</target_precision>  
2387 - <target_decimal_symbol/>  
2388 - <target_grouping_symbol/>  
2389 - <target_currency_symbol/>  
2390 - <target_null_string/>  
2391 - <target_aggregation_type>-</target_aggregation_type>  
2392 - </field>  
2393 - <field>  
2394 - <field_name>all_content</field_name>  
2395 - <key_value>90</key_value>  
2396 - <target_name>fcno90</target_name>  
2397 - <target_type>String</target_type>  
2398 - <target_format/>  
2399 - <target_length>-1</target_length>  
2400 - <target_precision>-1</target_precision>  
2401 - <target_decimal_symbol/>  
2402 - <target_grouping_symbol/>  
2403 - <target_currency_symbol/>  
2404 - <target_null_string/>  
2405 - <target_aggregation_type>-</target_aggregation_type>  
2406 - </field>  
2407 - <field>  
2408 - <field_name>all_content</field_name>  
2409 - <key_value>91</key_value>  
2410 - <target_name>fcno91</target_name>  
2411 - <target_type>String</target_type>  
2412 - <target_format/>  
2413 - <target_length>-1</target_length>  
2414 - <target_precision>-1</target_precision>  
2415 - <target_decimal_symbol/>  
2416 - <target_grouping_symbol/>  
2417 - <target_currency_symbol/>  
2418 - <target_null_string/>  
2419 - <target_aggregation_type>-</target_aggregation_type>  
2420 - </field>  
2421 - <field>  
2422 - <field_name>all_content</field_name>  
2423 - <key_value>92</key_value>  
2424 - <target_name>fcno92</target_name>  
2425 - <target_type>String</target_type>  
2426 - <target_format/>  
2427 - <target_length>-1</target_length>  
2428 - <target_precision>-1</target_precision>  
2429 - <target_decimal_symbol/>  
2430 - <target_grouping_symbol/>  
2431 - <target_currency_symbol/>  
2432 - <target_null_string/>  
2433 - <target_aggregation_type>-</target_aggregation_type>  
2434 - </field>  
2435 - <field>  
2436 - <field_name>all_content</field_name>  
2437 - <key_value>93</key_value>  
2438 - <target_name>fcno93</target_name>  
2439 - <target_type>String</target_type>  
2440 - <target_format/>  
2441 - <target_length>-1</target_length>  
2442 - <target_precision>-1</target_precision>  
2443 - <target_decimal_symbol/>  
2444 - <target_grouping_symbol/>  
2445 - <target_currency_symbol/>  
2446 - <target_null_string/>  
2447 - <target_aggregation_type>-</target_aggregation_type>  
2448 - </field>  
2449 - <field>  
2450 - <field_name>all_content</field_name>  
2451 - <key_value>94</key_value>  
2452 - <target_name>fcno94</target_name>  
2453 - <target_type>String</target_type>  
2454 - <target_format/>  
2455 - <target_length>-1</target_length>  
2456 - <target_precision>-1</target_precision>  
2457 - <target_decimal_symbol/>  
2458 - <target_grouping_symbol/>  
2459 - <target_currency_symbol/>  
2460 - <target_null_string/>  
2461 - <target_aggregation_type>-</target_aggregation_type>  
2462 - </field>  
2463 - <field>  
2464 - <field_name>all_content</field_name>  
2465 - <key_value>95</key_value>  
2466 - <target_name>fcno95</target_name>  
2467 - <target_type>String</target_type>  
2468 - <target_format/>  
2469 - <target_length>-1</target_length>  
2470 - <target_precision>-1</target_precision>  
2471 - <target_decimal_symbol/>  
2472 - <target_grouping_symbol/>  
2473 - <target_currency_symbol/>  
2474 - <target_null_string/>  
2475 - <target_aggregation_type>-</target_aggregation_type>  
2476 - </field>  
2477 - <field>  
2478 - <field_name>all_content</field_name>  
2479 - <key_value>96</key_value>  
2480 - <target_name>fcno96</target_name>  
2481 - <target_type>String</target_type>  
2482 - <target_format/>  
2483 - <target_length>-1</target_length>  
2484 - <target_precision>-1</target_precision>  
2485 - <target_decimal_symbol/>  
2486 - <target_grouping_symbol/>  
2487 - <target_currency_symbol/>  
2488 - <target_null_string/>  
2489 - <target_aggregation_type>-</target_aggregation_type>  
2490 - </field>  
2491 - <field>  
2492 - <field_name>all_content</field_name>  
2493 - <key_value>97</key_value>  
2494 - <target_name>fcno97</target_name>  
2495 - <target_type>String</target_type>  
2496 - <target_format/>  
2497 - <target_length>-1</target_length>  
2498 - <target_precision>-1</target_precision>  
2499 - <target_decimal_symbol/>  
2500 - <target_grouping_symbol/>  
2501 - <target_currency_symbol/>  
2502 - <target_null_string/>  
2503 - <target_aggregation_type>-</target_aggregation_type>  
2504 - </field>  
2505 - <field>  
2506 - <field_name>all_content</field_name>  
2507 - <key_value>98</key_value>  
2508 - <target_name>fcno98</target_name>  
2509 - <target_type>String</target_type>  
2510 - <target_format/>  
2511 - <target_length>-1</target_length>  
2512 - <target_precision>-1</target_precision>  
2513 - <target_decimal_symbol/>  
2514 - <target_grouping_symbol/>  
2515 - <target_currency_symbol/>  
2516 - <target_null_string/>  
2517 - <target_aggregation_type>-</target_aggregation_type>  
2518 - </field>  
2519 - <field>  
2520 - <field_name>all_content</field_name>  
2521 - <key_value>99</key_value>  
2522 - <target_name>fcno99</target_name>  
2523 - <target_type>String</target_type>  
2524 - <target_format/>  
2525 - <target_length>-1</target_length>  
2526 - <target_precision>-1</target_precision>  
2527 - <target_decimal_symbol/>  
2528 - <target_grouping_symbol/>  
2529 - <target_currency_symbol/>  
2530 - <target_null_string/>  
2531 - <target_aggregation_type>-</target_aggregation_type>  
2532 - </field>  
2533 - <field>  
2534 - <field_name>all_content</field_name>  
2535 - <key_value>100</key_value>  
2536 - <target_name>fcno100</target_name>  
2537 - <target_type>String</target_type>  
2538 - <target_format/>  
2539 - <target_length>-1</target_length>  
2540 - <target_precision>-1</target_precision>  
2541 - <target_decimal_symbol/>  
2542 - <target_grouping_symbol/>  
2543 - <target_currency_symbol/>  
2544 - <target_null_string/>  
2545 - <target_aggregation_type>-</target_aggregation_type>  
2546 - </field>  
2547 - <field>  
2548 - <field_name>all_content</field_name>  
2549 - <key_value>101</key_value>  
2550 - <target_name>fcno101</target_name>  
2551 - <target_type>String</target_type>  
2552 - <target_format/>  
2553 - <target_length>-1</target_length>  
2554 - <target_precision>-1</target_precision>  
2555 - <target_decimal_symbol/>  
2556 - <target_grouping_symbol/>  
2557 - <target_currency_symbol/>  
2558 - <target_null_string/>  
2559 - <target_aggregation_type>-</target_aggregation_type>  
2560 - </field>  
2561 - <field>  
2562 - <field_name>all_content</field_name>  
2563 - <key_value>102</key_value>  
2564 - <target_name>fcno102</target_name>  
2565 - <target_type>String</target_type>  
2566 - <target_format/>  
2567 - <target_length>-1</target_length>  
2568 - <target_precision>-1</target_precision>  
2569 - <target_decimal_symbol/>  
2570 - <target_grouping_symbol/>  
2571 - <target_currency_symbol/>  
2572 - <target_null_string/>  
2573 - <target_aggregation_type>-</target_aggregation_type>  
2574 - </field>  
2575 - <field>  
2576 - <field_name>all_content</field_name>  
2577 - <key_value>103</key_value>  
2578 - <target_name>fcno103</target_name>  
2579 - <target_type>String</target_type>  
2580 - <target_format/>  
2581 - <target_length>-1</target_length>  
2582 - <target_precision>-1</target_precision>  
2583 - <target_decimal_symbol/>  
2584 - <target_grouping_symbol/>  
2585 - <target_currency_symbol/>  
2586 - <target_null_string/>  
2587 - <target_aggregation_type>-</target_aggregation_type>  
2588 - </field>  
2589 - <field>  
2590 - <field_name>all_content</field_name>  
2591 - <key_value>104</key_value>  
2592 - <target_name>fcno104</target_name>  
2593 - <target_type>String</target_type>  
2594 - <target_format/>  
2595 - <target_length>-1</target_length>  
2596 - <target_precision>-1</target_precision>  
2597 - <target_decimal_symbol/>  
2598 - <target_grouping_symbol/>  
2599 - <target_currency_symbol/>  
2600 - <target_null_string/>  
2601 - <target_aggregation_type>-</target_aggregation_type>  
2602 - </field>  
2603 - <field>  
2604 - <field_name>all_content</field_name>  
2605 - <key_value>105</key_value>  
2606 - <target_name>fcno105</target_name>  
2607 - <target_type>String</target_type>  
2608 - <target_format/>  
2609 - <target_length>-1</target_length>  
2610 - <target_precision>-1</target_precision>  
2611 - <target_decimal_symbol/>  
2612 - <target_grouping_symbol/>  
2613 - <target_currency_symbol/>  
2614 - <target_null_string/>  
2615 - <target_aggregation_type>-</target_aggregation_type>  
2616 - </field>  
2617 - <field>  
2618 - <field_name>all_content</field_name>  
2619 - <key_value>106</key_value>  
2620 - <target_name>fcno106</target_name>  
2621 - <target_type>String</target_type>  
2622 - <target_format/>  
2623 - <target_length>-1</target_length>  
2624 - <target_precision>-1</target_precision>  
2625 - <target_decimal_symbol/>  
2626 - <target_grouping_symbol/>  
2627 - <target_currency_symbol/>  
2628 - <target_null_string/>  
2629 - <target_aggregation_type>-</target_aggregation_type>  
2630 - </field>  
2631 - <field>  
2632 - <field_name>all_content</field_name>  
2633 - <key_value>107</key_value>  
2634 - <target_name>fcno107</target_name>  
2635 - <target_type>String</target_type>  
2636 - <target_format/>  
2637 - <target_length>-1</target_length>  
2638 - <target_precision>-1</target_precision>  
2639 - <target_decimal_symbol/>  
2640 - <target_grouping_symbol/>  
2641 - <target_currency_symbol/>  
2642 - <target_null_string/>  
2643 - <target_aggregation_type>-</target_aggregation_type>  
2644 - </field>  
2645 - <field>  
2646 - <field_name>all_content</field_name>  
2647 - <key_value>108</key_value>  
2648 - <target_name>fcno108</target_name>  
2649 - <target_type>String</target_type>  
2650 - <target_format/>  
2651 - <target_length>-1</target_length>  
2652 - <target_precision>-1</target_precision>  
2653 - <target_decimal_symbol/>  
2654 - <target_grouping_symbol/>  
2655 - <target_currency_symbol/>  
2656 - <target_null_string/>  
2657 - <target_aggregation_type>-</target_aggregation_type>  
2658 - </field>  
2659 - <field>  
2660 - <field_name>all_content</field_name>  
2661 - <key_value>109</key_value>  
2662 - <target_name>fcno109</target_name>  
2663 - <target_type>String</target_type>  
2664 - <target_format/>  
2665 - <target_length>-1</target_length>  
2666 - <target_precision>-1</target_precision>  
2667 - <target_decimal_symbol/>  
2668 - <target_grouping_symbol/>  
2669 - <target_currency_symbol/>  
2670 - <target_null_string/>  
2671 - <target_aggregation_type>-</target_aggregation_type>  
2672 - </field>  
2673 - <field>  
2674 - <field_name>all_content</field_name>  
2675 - <key_value>110</key_value>  
2676 - <target_name>fcno110</target_name>  
2677 - <target_type>String</target_type>  
2678 - <target_format/>  
2679 - <target_length>-1</target_length>  
2680 - <target_precision>-1</target_precision>  
2681 - <target_decimal_symbol/>  
2682 - <target_grouping_symbol/>  
2683 - <target_currency_symbol/>  
2684 - <target_null_string/>  
2685 - <target_aggregation_type>-</target_aggregation_type>  
2686 - </field>  
2687 - <field>  
2688 - <field_name>all_content</field_name>  
2689 - <key_value>111</key_value>  
2690 - <target_name>fcno111</target_name>  
2691 - <target_type>String</target_type>  
2692 - <target_format/>  
2693 - <target_length>-1</target_length>  
2694 - <target_precision>-1</target_precision>  
2695 - <target_decimal_symbol/>  
2696 - <target_grouping_symbol/>  
2697 - <target_currency_symbol/>  
2698 - <target_null_string/>  
2699 - <target_aggregation_type>-</target_aggregation_type>  
2700 - </field>  
2701 - <field>  
2702 - <field_name>all_content</field_name>  
2703 - <key_value>112</key_value>  
2704 - <target_name>fcno112</target_name>  
2705 - <target_type>String</target_type>  
2706 - <target_format/>  
2707 - <target_length>-1</target_length>  
2708 - <target_precision>-1</target_precision>  
2709 - <target_decimal_symbol/>  
2710 - <target_grouping_symbol/>  
2711 - <target_currency_symbol/>  
2712 - <target_null_string/>  
2713 - <target_aggregation_type>-</target_aggregation_type>  
2714 - </field>  
2715 - <field>  
2716 - <field_name>all_content</field_name>  
2717 - <key_value>113</key_value>  
2718 - <target_name>fcno113</target_name>  
2719 - <target_type>String</target_type>  
2720 - <target_format/>  
2721 - <target_length>-1</target_length>  
2722 - <target_precision>-1</target_precision>  
2723 - <target_decimal_symbol/>  
2724 - <target_grouping_symbol/>  
2725 - <target_currency_symbol/>  
2726 - <target_null_string/>  
2727 - <target_aggregation_type>-</target_aggregation_type>  
2728 - </field>  
2729 - <field>  
2730 - <field_name>all_content</field_name>  
2731 - <key_value>114</key_value>  
2732 - <target_name>fcno114</target_name>  
2733 - <target_type>String</target_type>  
2734 - <target_format/>  
2735 - <target_length>-1</target_length>  
2736 - <target_precision>-1</target_precision>  
2737 - <target_decimal_symbol/>  
2738 - <target_grouping_symbol/>  
2739 - <target_currency_symbol/>  
2740 - <target_null_string/>  
2741 - <target_aggregation_type>-</target_aggregation_type>  
2742 - </field>  
2743 - <field>  
2744 - <field_name>all_content</field_name>  
2745 - <key_value>115</key_value>  
2746 - <target_name>fcno115</target_name>  
2747 - <target_type>String</target_type>  
2748 - <target_format/>  
2749 - <target_length>-1</target_length>  
2750 - <target_precision>-1</target_precision>  
2751 - <target_decimal_symbol/>  
2752 - <target_grouping_symbol/>  
2753 - <target_currency_symbol/>  
2754 - <target_null_string/>  
2755 - <target_aggregation_type>-</target_aggregation_type>  
2756 - </field>  
2757 - <field>  
2758 - <field_name>all_content</field_name>  
2759 - <key_value>116</key_value>  
2760 - <target_name>fcno116</target_name>  
2761 - <target_type>String</target_type>  
2762 - <target_format/>  
2763 - <target_length>-1</target_length>  
2764 - <target_precision>-1</target_precision>  
2765 - <target_decimal_symbol/>  
2766 - <target_grouping_symbol/>  
2767 - <target_currency_symbol/>  
2768 - <target_null_string/>  
2769 - <target_aggregation_type>-</target_aggregation_type>  
2770 - </field>  
2771 - <field>  
2772 - <field_name>all_content</field_name>  
2773 - <key_value>117</key_value>  
2774 - <target_name>fcno117</target_name>  
2775 - <target_type>String</target_type>  
2776 - <target_format/>  
2777 - <target_length>-1</target_length>  
2778 - <target_precision>-1</target_precision>  
2779 - <target_decimal_symbol/>  
2780 - <target_grouping_symbol/>  
2781 - <target_currency_symbol/>  
2782 - <target_null_string/>  
2783 - <target_aggregation_type>-</target_aggregation_type>  
2784 - </field>  
2785 - <field>  
2786 - <field_name>all_content</field_name>  
2787 - <key_value>118</key_value>  
2788 - <target_name>fcno118</target_name>  
2789 - <target_type>String</target_type>  
2790 - <target_format/>  
2791 - <target_length>-1</target_length>  
2792 - <target_precision>-1</target_precision>  
2793 - <target_decimal_symbol/>  
2794 - <target_grouping_symbol/>  
2795 - <target_currency_symbol/>  
2796 - <target_null_string/>  
2797 - <target_aggregation_type>-</target_aggregation_type>  
2798 - </field>  
2799 - <field>  
2800 - <field_name>all_content</field_name>  
2801 - <key_value>119</key_value>  
2802 - <target_name>fcno119</target_name>  
2803 - <target_type>String</target_type>  
2804 - <target_format/>  
2805 - <target_length>-1</target_length>  
2806 - <target_precision>-1</target_precision>  
2807 - <target_decimal_symbol/>  
2808 - <target_grouping_symbol/>  
2809 - <target_currency_symbol/>  
2810 - <target_null_string/>  
2811 - <target_aggregation_type>-</target_aggregation_type>  
2812 - </field>  
2813 - <field>  
2814 - <field_name>all_content</field_name>  
2815 - <key_value>120</key_value>  
2816 - <target_name>fcno120</target_name>  
2817 - <target_type>String</target_type>  
2818 - <target_format/>  
2819 - <target_length>-1</target_length>  
2820 - <target_precision>-1</target_precision>  
2821 - <target_decimal_symbol/>  
2822 - <target_grouping_symbol/>  
2823 - <target_currency_symbol/>  
2824 - <target_null_string/>  
2825 - <target_aggregation_type>-</target_aggregation_type>  
2826 - </field>  
2827 - <field>  
2828 - <field_name>all_content</field_name>  
2829 - <key_value>121</key_value>  
2830 - <target_name>fcno121</target_name>  
2831 - <target_type>String</target_type>  
2832 - <target_format/>  
2833 - <target_length>-1</target_length>  
2834 - <target_precision>-1</target_precision>  
2835 - <target_decimal_symbol/>  
2836 - <target_grouping_symbol/>  
2837 - <target_currency_symbol/>  
2838 - <target_null_string/>  
2839 - <target_aggregation_type>-</target_aggregation_type>  
2840 - </field>  
2841 - <field>  
2842 - <field_name>all_content</field_name>  
2843 - <key_value>122</key_value>  
2844 - <target_name>fcno122</target_name>  
2845 - <target_type>String</target_type>  
2846 - <target_format/>  
2847 - <target_length>-1</target_length>  
2848 - <target_precision>-1</target_precision>  
2849 - <target_decimal_symbol/>  
2850 - <target_grouping_symbol/>  
2851 - <target_currency_symbol/>  
2852 - <target_null_string/>  
2853 - <target_aggregation_type>-</target_aggregation_type>  
2854 - </field>  
2855 - <field>  
2856 - <field_name>all_content</field_name>  
2857 - <key_value>123</key_value>  
2858 - <target_name>fcno123</target_name>  
2859 - <target_type>String</target_type>  
2860 - <target_format/>  
2861 - <target_length>-1</target_length>  
2862 - <target_precision>-1</target_precision>  
2863 - <target_decimal_symbol/>  
2864 - <target_grouping_symbol/>  
2865 - <target_currency_symbol/>  
2866 - <target_null_string/>  
2867 - <target_aggregation_type>-</target_aggregation_type>  
2868 - </field>  
2869 - <field>  
2870 - <field_name>all_content</field_name>  
2871 - <key_value>124</key_value>  
2872 - <target_name>fcno124</target_name>  
2873 - <target_type>String</target_type>  
2874 - <target_format/>  
2875 - <target_length>-1</target_length>  
2876 - <target_precision>-1</target_precision>  
2877 - <target_decimal_symbol/>  
2878 - <target_grouping_symbol/>  
2879 - <target_currency_symbol/>  
2880 - <target_null_string/>  
2881 - <target_aggregation_type>-</target_aggregation_type>  
2882 - </field>  
2883 - <field>  
2884 - <field_name>all_content</field_name>  
2885 - <key_value>125</key_value>  
2886 - <target_name>fcno125</target_name>  
2887 - <target_type>String</target_type>  
2888 - <target_format/>  
2889 - <target_length>-1</target_length>  
2890 - <target_precision>-1</target_precision>  
2891 - <target_decimal_symbol/>  
2892 - <target_grouping_symbol/>  
2893 - <target_currency_symbol/>  
2894 - <target_null_string/>  
2895 - <target_aggregation_type>-</target_aggregation_type>  
2896 - </field>  
2897 - <field>  
2898 - <field_name>all_content</field_name>  
2899 - <key_value>126</key_value>  
2900 - <target_name>fcno126</target_name>  
2901 - <target_type>String</target_type>  
2902 - <target_format/>  
2903 - <target_length>-1</target_length>  
2904 - <target_precision>-1</target_precision>  
2905 - <target_decimal_symbol/>  
2906 - <target_grouping_symbol/>  
2907 - <target_currency_symbol/>  
2908 - <target_null_string/>  
2909 - <target_aggregation_type>-</target_aggregation_type>  
2910 - </field>  
2911 - <field>  
2912 - <field_name>all_content</field_name>  
2913 - <key_value>127</key_value>  
2914 - <target_name>fcno127</target_name>  
2915 - <target_type>String</target_type>  
2916 - <target_format/>  
2917 - <target_length>-1</target_length>  
2918 - <target_precision>-1</target_precision>  
2919 - <target_decimal_symbol/>  
2920 - <target_grouping_symbol/>  
2921 - <target_currency_symbol/>  
2922 - <target_null_string/>  
2923 - <target_aggregation_type>-</target_aggregation_type>  
2924 - </field>  
2925 - <field>  
2926 - <field_name>all_content</field_name>  
2927 - <key_value>128</key_value>  
2928 - <target_name>fcno128</target_name>  
2929 - <target_type>String</target_type>  
2930 - <target_format/>  
2931 - <target_length>-1</target_length>  
2932 - <target_precision>-1</target_precision>  
2933 - <target_decimal_symbol/>  
2934 - <target_grouping_symbol/>  
2935 - <target_currency_symbol/>  
2936 - <target_null_string/>  
2937 - <target_aggregation_type>-</target_aggregation_type>  
2938 - </field>  
2939 - <field>  
2940 - <field_name>all_content</field_name>  
2941 - <key_value>129</key_value>  
2942 - <target_name>fcno129</target_name>  
2943 - <target_type>String</target_type>  
2944 - <target_format/>  
2945 - <target_length>-1</target_length>  
2946 - <target_precision>-1</target_precision>  
2947 - <target_decimal_symbol/>  
2948 - <target_grouping_symbol/>  
2949 - <target_currency_symbol/>  
2950 - <target_null_string/>  
2951 - <target_aggregation_type>-</target_aggregation_type>  
2952 - </field>  
2953 - <field>  
2954 - <field_name>all_content</field_name>  
2955 - <key_value>130</key_value>  
2956 - <target_name>fcno130</target_name>  
2957 - <target_type>String</target_type>  
2958 - <target_format/>  
2959 - <target_length>-1</target_length>  
2960 - <target_precision>-1</target_precision>  
2961 - <target_decimal_symbol/>  
2962 - <target_grouping_symbol/>  
2963 - <target_currency_symbol/>  
2964 - <target_null_string/>  
2965 - <target_aggregation_type>-</target_aggregation_type>  
2966 - </field>  
2967 - <field>  
2968 - <field_name>all_content</field_name>  
2969 - <key_value>131</key_value>  
2970 - <target_name>fcno131</target_name>  
2971 - <target_type>String</target_type>  
2972 - <target_format/>  
2973 - <target_length>-1</target_length>  
2974 - <target_precision>-1</target_precision>  
2975 - <target_decimal_symbol/>  
2976 - <target_grouping_symbol/>  
2977 - <target_currency_symbol/>  
2978 - <target_null_string/>  
2979 - <target_aggregation_type>-</target_aggregation_type>  
2980 - </field>  
2981 - <field>  
2982 - <field_name>all_content</field_name>  
2983 - <key_value>132</key_value>  
2984 - <target_name>fcno132</target_name>  
2985 - <target_type>String</target_type>  
2986 - <target_format/>  
2987 - <target_length>-1</target_length>  
2988 - <target_precision>-1</target_precision>  
2989 - <target_decimal_symbol/>  
2990 - <target_grouping_symbol/>  
2991 - <target_currency_symbol/>  
2992 - <target_null_string/>  
2993 - <target_aggregation_type>-</target_aggregation_type>  
2994 - </field>  
2995 - <field>  
2996 - <field_name>all_content</field_name>  
2997 - <key_value>133</key_value>  
2998 - <target_name>fcno133</target_name>  
2999 - <target_type>String</target_type>  
3000 - <target_format/>  
3001 - <target_length>-1</target_length>  
3002 - <target_precision>-1</target_precision>  
3003 - <target_decimal_symbol/>  
3004 - <target_grouping_symbol/>  
3005 - <target_currency_symbol/>  
3006 - <target_null_string/>  
3007 - <target_aggregation_type>-</target_aggregation_type>  
3008 - </field>  
3009 - <field>  
3010 - <field_name>all_content</field_name>  
3011 - <key_value>134</key_value>  
3012 - <target_name>fcno134</target_name>  
3013 - <target_type>String</target_type>  
3014 - <target_format/>  
3015 - <target_length>-1</target_length>  
3016 - <target_precision>-1</target_precision>  
3017 - <target_decimal_symbol/>  
3018 - <target_grouping_symbol/>  
3019 - <target_currency_symbol/>  
3020 - <target_null_string/>  
3021 - <target_aggregation_type>-</target_aggregation_type>  
3022 - </field>  
3023 - <field>  
3024 - <field_name>all_content</field_name>  
3025 - <key_value>135</key_value>  
3026 - <target_name>fcno135</target_name>  
3027 - <target_type>String</target_type>  
3028 - <target_format/>  
3029 - <target_length>-1</target_length>  
3030 - <target_precision>-1</target_precision>  
3031 - <target_decimal_symbol/>  
3032 - <target_grouping_symbol/>  
3033 - <target_currency_symbol/>  
3034 - <target_null_string/>  
3035 - <target_aggregation_type>-</target_aggregation_type>  
3036 - </field>  
3037 - <field>  
3038 - <field_name>all_content</field_name>  
3039 - <key_value>136</key_value>  
3040 - <target_name>fcno136</target_name>  
3041 - <target_type>String</target_type>  
3042 - <target_format/>  
3043 - <target_length>-1</target_length>  
3044 - <target_precision>-1</target_precision>  
3045 - <target_decimal_symbol/>  
3046 - <target_grouping_symbol/>  
3047 - <target_currency_symbol/>  
3048 - <target_null_string/>  
3049 - <target_aggregation_type>-</target_aggregation_type>  
3050 - </field>  
3051 - <field>  
3052 - <field_name>all_content</field_name>  
3053 - <key_value>137</key_value>  
3054 - <target_name>fcno137</target_name>  
3055 - <target_type>String</target_type>  
3056 - <target_format/>  
3057 - <target_length>-1</target_length>  
3058 - <target_precision>-1</target_precision>  
3059 - <target_decimal_symbol/>  
3060 - <target_grouping_symbol/>  
3061 - <target_currency_symbol/>  
3062 - <target_null_string/>  
3063 - <target_aggregation_type>-</target_aggregation_type>  
3064 - </field>  
3065 - <field>  
3066 - <field_name>all_content</field_name>  
3067 - <key_value>138</key_value>  
3068 - <target_name>fcno138</target_name>  
3069 - <target_type>String</target_type>  
3070 - <target_format/>  
3071 - <target_length>-1</target_length>  
3072 - <target_precision>-1</target_precision>  
3073 - <target_decimal_symbol/>  
3074 - <target_grouping_symbol/>  
3075 - <target_currency_symbol/>  
3076 - <target_null_string/>  
3077 - <target_aggregation_type>-</target_aggregation_type>  
3078 - </field>  
3079 - <field>  
3080 - <field_name>all_content</field_name>  
3081 - <key_value>139</key_value>  
3082 - <target_name>fcno139</target_name>  
3083 - <target_type>String</target_type>  
3084 - <target_format/>  
3085 - <target_length>-1</target_length>  
3086 - <target_precision>-1</target_precision>  
3087 - <target_decimal_symbol/>  
3088 - <target_grouping_symbol/>  
3089 - <target_currency_symbol/>  
3090 - <target_null_string/>  
3091 - <target_aggregation_type>-</target_aggregation_type>  
3092 - </field>  
3093 - <field>  
3094 - <field_name>all_content</field_name>  
3095 - <key_value>140</key_value>  
3096 - <target_name>fcno140</target_name>  
3097 - <target_type>String</target_type>  
3098 - <target_format/>  
3099 - <target_length>-1</target_length>  
3100 - <target_precision>-1</target_precision>  
3101 - <target_decimal_symbol/>  
3102 - <target_grouping_symbol/>  
3103 - <target_currency_symbol/>  
3104 - <target_null_string/>  
3105 - <target_aggregation_type>-</target_aggregation_type>  
3106 - </field>  
3107 - <field>  
3108 - <field_name>all_content</field_name>  
3109 - <key_value>141</key_value>  
3110 - <target_name>fcno141</target_name>  
3111 - <target_type>String</target_type>  
3112 - <target_format/>  
3113 - <target_length>-1</target_length>  
3114 - <target_precision>-1</target_precision>  
3115 - <target_decimal_symbol/>  
3116 - <target_grouping_symbol/>  
3117 - <target_currency_symbol/>  
3118 - <target_null_string/>  
3119 - <target_aggregation_type>-</target_aggregation_type>  
3120 - </field>  
3121 - <field>  
3122 - <field_name>all_content</field_name>  
3123 - <key_value>142</key_value>  
3124 - <target_name>fcno142</target_name>  
3125 - <target_type>String</target_type>  
3126 - <target_format/>  
3127 - <target_length>-1</target_length>  
3128 - <target_precision>-1</target_precision>  
3129 - <target_decimal_symbol/>  
3130 - <target_grouping_symbol/>  
3131 - <target_currency_symbol/>  
3132 - <target_null_string/>  
3133 - <target_aggregation_type>-</target_aggregation_type>  
3134 - </field>  
3135 - <field>  
3136 - <field_name>all_content</field_name>  
3137 - <key_value>143</key_value>  
3138 - <target_name>fcno143</target_name>  
3139 - <target_type>String</target_type>  
3140 - <target_format/>  
3141 - <target_length>-1</target_length>  
3142 - <target_precision>-1</target_precision>  
3143 - <target_decimal_symbol/>  
3144 - <target_grouping_symbol/>  
3145 - <target_currency_symbol/>  
3146 - <target_null_string/>  
3147 - <target_aggregation_type>-</target_aggregation_type>  
3148 - </field>  
3149 - <field>  
3150 - <field_name>all_content</field_name>  
3151 - <key_value>144</key_value>  
3152 - <target_name>fcno144</target_name>  
3153 - <target_type>String</target_type>  
3154 - <target_format/>  
3155 - <target_length>-1</target_length>  
3156 - <target_precision>-1</target_precision>  
3157 - <target_decimal_symbol/>  
3158 - <target_grouping_symbol/>  
3159 - <target_currency_symbol/>  
3160 - <target_null_string/>  
3161 - <target_aggregation_type>-</target_aggregation_type>  
3162 - </field>  
3163 - <field>  
3164 - <field_name>all_content</field_name>  
3165 - <key_value>145</key_value>  
3166 - <target_name>fcno145</target_name>  
3167 - <target_type>String</target_type>  
3168 - <target_format/>  
3169 - <target_length>-1</target_length>  
3170 - <target_precision>-1</target_precision>  
3171 - <target_decimal_symbol/>  
3172 - <target_grouping_symbol/>  
3173 - <target_currency_symbol/>  
3174 - <target_null_string/>  
3175 - <target_aggregation_type>-</target_aggregation_type>  
3176 - </field>  
3177 - <field>  
3178 - <field_name>all_content</field_name>  
3179 - <key_value>146</key_value>  
3180 - <target_name>fcno146</target_name>  
3181 - <target_type>String</target_type>  
3182 - <target_format/>  
3183 - <target_length>-1</target_length>  
3184 - <target_precision>-1</target_precision>  
3185 - <target_decimal_symbol/>  
3186 - <target_grouping_symbol/>  
3187 - <target_currency_symbol/>  
3188 - <target_null_string/>  
3189 - <target_aggregation_type>-</target_aggregation_type>  
3190 - </field>  
3191 - <field>  
3192 - <field_name>all_content</field_name>  
3193 - <key_value>147</key_value>  
3194 - <target_name>fcno147</target_name>  
3195 - <target_type>String</target_type>  
3196 - <target_format/>  
3197 - <target_length>-1</target_length>  
3198 - <target_precision>-1</target_precision>  
3199 - <target_decimal_symbol/>  
3200 - <target_grouping_symbol/>  
3201 - <target_currency_symbol/>  
3202 - <target_null_string/>  
3203 - <target_aggregation_type>-</target_aggregation_type>  
3204 - </field>  
3205 - <field>  
3206 - <field_name>all_content</field_name>  
3207 - <key_value>148</key_value>  
3208 - <target_name>fcno148</target_name>  
3209 - <target_type>String</target_type>  
3210 - <target_format/>  
3211 - <target_length>-1</target_length>  
3212 - <target_precision>-1</target_precision>  
3213 - <target_decimal_symbol/>  
3214 - <target_grouping_symbol/>  
3215 - <target_currency_symbol/>  
3216 - <target_null_string/>  
3217 - <target_aggregation_type>-</target_aggregation_type>  
3218 - </field>  
3219 - <field>  
3220 - <field_name>all_content</field_name>  
3221 - <key_value>149</key_value>  
3222 - <target_name>fcno149</target_name>  
3223 - <target_type>String</target_type>  
3224 - <target_format/>  
3225 - <target_length>-1</target_length>  
3226 - <target_precision>-1</target_precision>  
3227 - <target_decimal_symbol/>  
3228 - <target_grouping_symbol/>  
3229 - <target_currency_symbol/>  
3230 - <target_null_string/>  
3231 - <target_aggregation_type>-</target_aggregation_type>  
3232 - </field>  
3233 - <field>  
3234 - <field_name>all_content</field_name>  
3235 - <key_value>150</key_value>  
3236 - <target_name>fcno150</target_name>  
3237 - <target_type>String</target_type>  
3238 - <target_format/>  
3239 - <target_length>-1</target_length>  
3240 - <target_precision>-1</target_precision>  
3241 - <target_decimal_symbol/>  
3242 - <target_grouping_symbol/>  
3243 - <target_currency_symbol/>  
3244 - <target_null_string/>  
3245 - <target_aggregation_type>-</target_aggregation_type>  
3246 - </field>  
3247 - </fields>  
3248 - <cluster_schema/>  
3249 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
3250 - <xloc>683</xloc>  
3251 - <yloc>184</yloc>  
3252 - <draw>Y</draw>  
3253 - </GUI>  
3254 - </step>  
3255 -  
3256 - <step>  
3257 - <name>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</name>  
3258 - <type>SelectValues</type>  
3259 - <description/>  
3260 - <distribute>N</distribute>  
3261 - <custom_distribution/>  
3262 - <copies>1</copies>  
3263 - <partitioning>  
3264 - <method>none</method>  
3265 - <schema_name/>  
3266 - </partitioning>  
3267 - <fields> <field> <name>lp</name>  
3268 - <rename/>  
3269 - <length>-2</length>  
3270 - <precision>-2</precision>  
3271 - </field> <field> <name>fcno1</name>  
3272 - <rename/>  
3273 - <length>-2</length>  
3274 - <precision>-2</precision>  
3275 - </field> <field> <name>fcno2</name>  
3276 - <rename/>  
3277 - <length>-2</length>  
3278 - <precision>-2</precision>  
3279 - </field> <field> <name>fcno3</name>  
3280 - <rename/>  
3281 - <length>-2</length>  
3282 - <precision>-2</precision>  
3283 - </field> <field> <name>fcno4</name>  
3284 - <rename/>  
3285 - <length>-2</length>  
3286 - <precision>-2</precision>  
3287 - </field> <field> <name>fcno5</name>  
3288 - <rename/>  
3289 - <length>-2</length>  
3290 - <precision>-2</precision>  
3291 - </field> <field> <name>fcno6</name>  
3292 - <rename/>  
3293 - <length>-2</length>  
3294 - <precision>-2</precision>  
3295 - </field> <field> <name>fcno7</name>  
3296 - <rename/>  
3297 - <length>-2</length>  
3298 - <precision>-2</precision>  
3299 - </field> <field> <name>fcno8</name>  
3300 - <rename/>  
3301 - <length>-2</length>  
3302 - <precision>-2</precision>  
3303 - </field> <field> <name>fcno9</name>  
3304 - <rename/>  
3305 - <length>-2</length>  
3306 - <precision>-2</precision>  
3307 - </field> <field> <name>fcno10</name>  
3308 - <rename/>  
3309 - <length>-2</length>  
3310 - <precision>-2</precision>  
3311 - </field> <field> <name>fcno11</name>  
3312 - <rename/>  
3313 - <length>-2</length>  
3314 - <precision>-2</precision>  
3315 - </field> <field> <name>fcno12</name>  
3316 - <rename/>  
3317 - <length>-2</length>  
3318 - <precision>-2</precision>  
3319 - </field> <field> <name>fcno13</name>  
3320 - <rename/>  
3321 - <length>-2</length>  
3322 - <precision>-2</precision>  
3323 - </field> <field> <name>fcno14</name>  
3324 - <rename/>  
3325 - <length>-2</length>  
3326 - <precision>-2</precision>  
3327 - </field> <field> <name>fcno15</name>  
3328 - <rename/>  
3329 - <length>-2</length>  
3330 - <precision>-2</precision>  
3331 - </field> <field> <name>fcno16</name>  
3332 - <rename/>  
3333 - <length>-2</length>  
3334 - <precision>-2</precision>  
3335 - </field> <field> <name>fcno17</name>  
3336 - <rename/>  
3337 - <length>-2</length>  
3338 - <precision>-2</precision>  
3339 - </field> <field> <name>fcno18</name>  
3340 - <rename/>  
3341 - <length>-2</length>  
3342 - <precision>-2</precision>  
3343 - </field> <field> <name>fcno19</name>  
3344 - <rename/>  
3345 - <length>-2</length>  
3346 - <precision>-2</precision>  
3347 - </field> <field> <name>fcno20</name>  
3348 - <rename/>  
3349 - <length>-2</length>  
3350 - <precision>-2</precision>  
3351 - </field> <field> <name>fcno21</name>  
3352 - <rename/>  
3353 - <length>-2</length>  
3354 - <precision>-2</precision>  
3355 - </field> <field> <name>fcno22</name>  
3356 - <rename/>  
3357 - <length>-2</length>  
3358 - <precision>-2</precision>  
3359 - </field> <field> <name>fcno23</name>  
3360 - <rename/>  
3361 - <length>-2</length>  
3362 - <precision>-2</precision>  
3363 - </field> <field> <name>fcno24</name>  
3364 - <rename/>  
3365 - <length>-2</length>  
3366 - <precision>-2</precision>  
3367 - </field> <field> <name>fcno25</name>  
3368 - <rename/>  
3369 - <length>-2</length>  
3370 - <precision>-2</precision>  
3371 - </field> <field> <name>fcno26</name>  
3372 - <rename/>  
3373 - <length>-2</length>  
3374 - <precision>-2</precision>  
3375 - </field> <field> <name>fcno27</name>  
3376 - <rename/>  
3377 - <length>-2</length>  
3378 - <precision>-2</precision>  
3379 - </field> <field> <name>fcno28</name>  
3380 - <rename/>  
3381 - <length>-2</length>  
3382 - <precision>-2</precision>  
3383 - </field> <field> <name>fcno29</name>  
3384 - <rename/>  
3385 - <length>-2</length>  
3386 - <precision>-2</precision>  
3387 - </field> <field> <name>fcno30</name>  
3388 - <rename/>  
3389 - <length>-2</length>  
3390 - <precision>-2</precision>  
3391 - </field> <field> <name>fcno31</name>  
3392 - <rename/>  
3393 - <length>-2</length>  
3394 - <precision>-2</precision>  
3395 - </field> <field> <name>fcno32</name>  
3396 - <rename/>  
3397 - <length>-2</length>  
3398 - <precision>-2</precision>  
3399 - </field> <field> <name>fcno33</name>  
3400 - <rename/>  
3401 - <length>-2</length>  
3402 - <precision>-2</precision>  
3403 - </field> <field> <name>fcno34</name>  
3404 - <rename/>  
3405 - <length>-2</length>  
3406 - <precision>-2</precision>  
3407 - </field> <field> <name>fcno35</name>  
3408 - <rename/>  
3409 - <length>-2</length>  
3410 - <precision>-2</precision>  
3411 - </field> <field> <name>fcno36</name>  
3412 - <rename/>  
3413 - <length>-2</length>  
3414 - <precision>-2</precision>  
3415 - </field> <field> <name>fcno37</name>  
3416 - <rename/>  
3417 - <length>-2</length>  
3418 - <precision>-2</precision>  
3419 - </field> <field> <name>fcno38</name>  
3420 - <rename/>  
3421 - <length>-2</length>  
3422 - <precision>-2</precision>  
3423 - </field> <field> <name>fcno39</name>  
3424 - <rename/>  
3425 - <length>-2</length>  
3426 - <precision>-2</precision>  
3427 - </field> <field> <name>fcno40</name>  
3428 - <rename/>  
3429 - <length>-2</length>  
3430 - <precision>-2</precision>  
3431 - </field> <field> <name>fcno41</name>  
3432 - <rename/>  
3433 - <length>-2</length>  
3434 - <precision>-2</precision>  
3435 - </field> <field> <name>fcno42</name>  
3436 - <rename/>  
3437 - <length>-2</length>  
3438 - <precision>-2</precision>  
3439 - </field> <field> <name>fcno43</name>  
3440 - <rename/>  
3441 - <length>-2</length>  
3442 - <precision>-2</precision>  
3443 - </field> <field> <name>fcno44</name>  
3444 - <rename/>  
3445 - <length>-2</length>  
3446 - <precision>-2</precision>  
3447 - </field> <field> <name>fcno45</name>  
3448 - <rename/>  
3449 - <length>-2</length>  
3450 - <precision>-2</precision>  
3451 - </field> <field> <name>fcno46</name>  
3452 - <rename/>  
3453 - <length>-2</length>  
3454 - <precision>-2</precision>  
3455 - </field> <field> <name>fcno47</name>  
3456 - <rename/>  
3457 - <length>-2</length>  
3458 - <precision>-2</precision>  
3459 - </field> <field> <name>fcno48</name>  
3460 - <rename/>  
3461 - <length>-2</length>  
3462 - <precision>-2</precision>  
3463 - </field> <field> <name>fcno49</name>  
3464 - <rename/>  
3465 - <length>-2</length>  
3466 - <precision>-2</precision>  
3467 - </field> <field> <name>fcno50</name>  
3468 - <rename/>  
3469 - <length>-2</length>  
3470 - <precision>-2</precision>  
3471 - </field> <field> <name>fcno51</name>  
3472 - <rename/>  
3473 - <length>-2</length>  
3474 - <precision>-2</precision>  
3475 - </field> <field> <name>fcno52</name>  
3476 - <rename/>  
3477 - <length>-2</length>  
3478 - <precision>-2</precision>  
3479 - </field> <field> <name>fcno53</name>  
3480 - <rename/>  
3481 - <length>-2</length>  
3482 - <precision>-2</precision>  
3483 - </field> <field> <name>fcno54</name>  
3484 - <rename/>  
3485 - <length>-2</length>  
3486 - <precision>-2</precision>  
3487 - </field> <field> <name>fcno55</name>  
3488 - <rename/>  
3489 - <length>-2</length>  
3490 - <precision>-2</precision>  
3491 - </field> <field> <name>fcno56</name>  
3492 - <rename/>  
3493 - <length>-2</length>  
3494 - <precision>-2</precision>  
3495 - </field> <field> <name>fcno57</name>  
3496 - <rename/>  
3497 - <length>-2</length>  
3498 - <precision>-2</precision>  
3499 - </field> <field> <name>fcno58</name>  
3500 - <rename/>  
3501 - <length>-2</length>  
3502 - <precision>-2</precision>  
3503 - </field> <field> <name>fcno59</name>  
3504 - <rename/>  
3505 - <length>-2</length>  
3506 - <precision>-2</precision>  
3507 - </field> <field> <name>fcno60</name>  
3508 - <rename/>  
3509 - <length>-2</length>  
3510 - <precision>-2</precision>  
3511 - </field> <field> <name>fcno61</name>  
3512 - <rename/>  
3513 - <length>-2</length>  
3514 - <precision>-2</precision>  
3515 - </field> <field> <name>fcno62</name>  
3516 - <rename/>  
3517 - <length>-2</length>  
3518 - <precision>-2</precision>  
3519 - </field> <field> <name>fcno63</name>  
3520 - <rename/>  
3521 - <length>-2</length>  
3522 - <precision>-2</precision>  
3523 - </field> <field> <name>fcno64</name>  
3524 - <rename/>  
3525 - <length>-2</length>  
3526 - <precision>-2</precision>  
3527 - </field> <field> <name>fcno65</name>  
3528 - <rename/>  
3529 - <length>-2</length>  
3530 - <precision>-2</precision>  
3531 - </field> <field> <name>fcno66</name>  
3532 - <rename/>  
3533 - <length>-2</length>  
3534 - <precision>-2</precision>  
3535 - </field> <field> <name>fcno67</name>  
3536 - <rename/>  
3537 - <length>-2</length>  
3538 - <precision>-2</precision>  
3539 - </field> <field> <name>fcno68</name>  
3540 - <rename/>  
3541 - <length>-2</length>  
3542 - <precision>-2</precision>  
3543 - </field> <field> <name>fcno69</name>  
3544 - <rename/>  
3545 - <length>-2</length>  
3546 - <precision>-2</precision>  
3547 - </field> <field> <name>fcno70</name>  
3548 - <rename/>  
3549 - <length>-2</length>  
3550 - <precision>-2</precision>  
3551 - </field> <field> <name>fcno71</name>  
3552 - <rename/>  
3553 - <length>-2</length>  
3554 - <precision>-2</precision>  
3555 - </field> <field> <name>fcno72</name>  
3556 - <rename/>  
3557 - <length>-2</length>  
3558 - <precision>-2</precision>  
3559 - </field> <field> <name>fcno73</name>  
3560 - <rename/>  
3561 - <length>-2</length>  
3562 - <precision>-2</precision>  
3563 - </field> <field> <name>fcno74</name>  
3564 - <rename/>  
3565 - <length>-2</length>  
3566 - <precision>-2</precision>  
3567 - </field> <field> <name>fcno75</name>  
3568 - <rename/>  
3569 - <length>-2</length>  
3570 - <precision>-2</precision>  
3571 - </field> <field> <name>fcno76</name>  
3572 - <rename/>  
3573 - <length>-2</length>  
3574 - <precision>-2</precision>  
3575 - </field> <field> <name>fcno77</name>  
3576 - <rename/>  
3577 - <length>-2</length>  
3578 - <precision>-2</precision>  
3579 - </field> <field> <name>fcno78</name>  
3580 - <rename/>  
3581 - <length>-2</length>  
3582 - <precision>-2</precision>  
3583 - </field> <field> <name>fcno79</name>  
3584 - <rename/>  
3585 - <length>-2</length>  
3586 - <precision>-2</precision>  
3587 - </field> <field> <name>fcno80</name>  
3588 - <rename/>  
3589 - <length>-2</length>  
3590 - <precision>-2</precision>  
3591 - </field> <field> <name>fcno81</name>  
3592 - <rename/>  
3593 - <length>-2</length>  
3594 - <precision>-2</precision>  
3595 - </field> <field> <name>fcno82</name>  
3596 - <rename/>  
3597 - <length>-2</length>  
3598 - <precision>-2</precision>  
3599 - </field> <field> <name>fcno83</name>  
3600 - <rename/>  
3601 - <length>-2</length>  
3602 - <precision>-2</precision>  
3603 - </field> <field> <name>fcno84</name>  
3604 - <rename/>  
3605 - <length>-2</length>  
3606 - <precision>-2</precision>  
3607 - </field> <field> <name>fcno85</name>  
3608 - <rename/>  
3609 - <length>-2</length>  
3610 - <precision>-2</precision>  
3611 - </field> <field> <name>fcno86</name>  
3612 - <rename/>  
3613 - <length>-2</length>  
3614 - <precision>-2</precision>  
3615 - </field> <field> <name>fcno87</name>  
3616 - <rename/>  
3617 - <length>-2</length>  
3618 - <precision>-2</precision>  
3619 - </field> <field> <name>fcno88</name>  
3620 - <rename/>  
3621 - <length>-2</length>  
3622 - <precision>-2</precision>  
3623 - </field> <field> <name>fcno89</name>  
3624 - <rename/>  
3625 - <length>-2</length>  
3626 - <precision>-2</precision>  
3627 - </field> <field> <name>fcno90</name>  
3628 - <rename/>  
3629 - <length>-2</length>  
3630 - <precision>-2</precision>  
3631 - </field> <field> <name>fcno91</name>  
3632 - <rename/>  
3633 - <length>-2</length>  
3634 - <precision>-2</precision>  
3635 - </field> <field> <name>fcno92</name>  
3636 - <rename/>  
3637 - <length>-2</length>  
3638 - <precision>-2</precision>  
3639 - </field> <field> <name>fcno93</name>  
3640 - <rename/>  
3641 - <length>-2</length>  
3642 - <precision>-2</precision>  
3643 - </field> <field> <name>fcno94</name>  
3644 - <rename/>  
3645 - <length>-2</length>  
3646 - <precision>-2</precision>  
3647 - </field> <field> <name>fcno95</name>  
3648 - <rename/>  
3649 - <length>-2</length>  
3650 - <precision>-2</precision>  
3651 - </field> <field> <name>fcno96</name>  
3652 - <rename/>  
3653 - <length>-2</length>  
3654 - <precision>-2</precision>  
3655 - </field> <field> <name>fcno97</name>  
3656 - <rename/>  
3657 - <length>-2</length>  
3658 - <precision>-2</precision>  
3659 - </field> <field> <name>fcno98</name>  
3660 - <rename/>  
3661 - <length>-2</length>  
3662 - <precision>-2</precision>  
3663 - </field> <field> <name>fcno99</name>  
3664 - <rename/>  
3665 - <length>-2</length>  
3666 - <precision>-2</precision>  
3667 - </field> <field> <name>fcno100</name>  
3668 - <rename/>  
3669 - <length>-2</length>  
3670 - <precision>-2</precision>  
3671 - </field> <field> <name>fcno101</name>  
3672 - <rename/>  
3673 - <length>-2</length>  
3674 - <precision>-2</precision>  
3675 - </field> <field> <name>fcno102</name>  
3676 - <rename/>  
3677 - <length>-2</length>  
3678 - <precision>-2</precision>  
3679 - </field> <field> <name>fcno103</name>  
3680 - <rename/>  
3681 - <length>-2</length>  
3682 - <precision>-2</precision>  
3683 - </field> <field> <name>fcno104</name>  
3684 - <rename/>  
3685 - <length>-2</length>  
3686 - <precision>-2</precision>  
3687 - </field> <field> <name>fcno105</name>  
3688 - <rename/>  
3689 - <length>-2</length>  
3690 - <precision>-2</precision>  
3691 - </field> <field> <name>fcno106</name>  
3692 - <rename/>  
3693 - <length>-2</length>  
3694 - <precision>-2</precision>  
3695 - </field> <field> <name>fcno107</name>  
3696 - <rename/>  
3697 - <length>-2</length>  
3698 - <precision>-2</precision>  
3699 - </field> <field> <name>fcno108</name>  
3700 - <rename/>  
3701 - <length>-2</length>  
3702 - <precision>-2</precision>  
3703 - </field> <field> <name>fcno109</name>  
3704 - <rename/>  
3705 - <length>-2</length>  
3706 - <precision>-2</precision>  
3707 - </field> <field> <name>fcno110</name>  
3708 - <rename/>  
3709 - <length>-2</length>  
3710 - <precision>-2</precision>  
3711 - </field> <field> <name>fcno111</name>  
3712 - <rename/>  
3713 - <length>-2</length>  
3714 - <precision>-2</precision>  
3715 - </field> <field> <name>fcno112</name>  
3716 - <rename/>  
3717 - <length>-2</length>  
3718 - <precision>-2</precision>  
3719 - </field> <field> <name>fcno113</name>  
3720 - <rename/>  
3721 - <length>-2</length>  
3722 - <precision>-2</precision>  
3723 - </field> <field> <name>fcno114</name>  
3724 - <rename/>  
3725 - <length>-2</length>  
3726 - <precision>-2</precision>  
3727 - </field> <field> <name>fcno115</name>  
3728 - <rename/>  
3729 - <length>-2</length>  
3730 - <precision>-2</precision>  
3731 - </field> <field> <name>fcno116</name>  
3732 - <rename/>  
3733 - <length>-2</length>  
3734 - <precision>-2</precision>  
3735 - </field> <field> <name>fcno117</name>  
3736 - <rename/>  
3737 - <length>-2</length>  
3738 - <precision>-2</precision>  
3739 - </field> <field> <name>fcno118</name>  
3740 - <rename/>  
3741 - <length>-2</length>  
3742 - <precision>-2</precision>  
3743 - </field> <field> <name>fcno119</name>  
3744 - <rename/>  
3745 - <length>-2</length>  
3746 - <precision>-2</precision>  
3747 - </field> <field> <name>fcno120</name>  
3748 - <rename/>  
3749 - <length>-2</length>  
3750 - <precision>-2</precision>  
3751 - </field> <field> <name>fcno121</name>  
3752 - <rename/>  
3753 - <length>-2</length>  
3754 - <precision>-2</precision>  
3755 - </field> <field> <name>fcno122</name>  
3756 - <rename/>  
3757 - <length>-2</length>  
3758 - <precision>-2</precision>  
3759 - </field> <field> <name>fcno123</name>  
3760 - <rename/>  
3761 - <length>-2</length>  
3762 - <precision>-2</precision>  
3763 - </field> <field> <name>fcno124</name>  
3764 - <rename/>  
3765 - <length>-2</length>  
3766 - <precision>-2</precision>  
3767 - </field> <field> <name>fcno125</name>  
3768 - <rename/>  
3769 - <length>-2</length>  
3770 - <precision>-2</precision>  
3771 - </field> <field> <name>fcno126</name>  
3772 - <rename/>  
3773 - <length>-2</length>  
3774 - <precision>-2</precision>  
3775 - </field> <field> <name>fcno127</name>  
3776 - <rename/>  
3777 - <length>-2</length>  
3778 - <precision>-2</precision>  
3779 - </field> <field> <name>fcno128</name>  
3780 - <rename/>  
3781 - <length>-2</length>  
3782 - <precision>-2</precision>  
3783 - </field> <field> <name>fcno129</name>  
3784 - <rename/>  
3785 - <length>-2</length>  
3786 - <precision>-2</precision>  
3787 - </field> <field> <name>fcno130</name>  
3788 - <rename/>  
3789 - <length>-2</length>  
3790 - <precision>-2</precision>  
3791 - </field> <field> <name>fcno131</name>  
3792 - <rename/>  
3793 - <length>-2</length>  
3794 - <precision>-2</precision>  
3795 - </field> <field> <name>fcno132</name>  
3796 - <rename/>  
3797 - <length>-2</length>  
3798 - <precision>-2</precision>  
3799 - </field> <field> <name>fcno133</name>  
3800 - <rename/>  
3801 - <length>-2</length>  
3802 - <precision>-2</precision>  
3803 - </field> <field> <name>fcno134</name>  
3804 - <rename/>  
3805 - <length>-2</length>  
3806 - <precision>-2</precision>  
3807 - </field> <field> <name>fcno135</name>  
3808 - <rename/>  
3809 - <length>-2</length>  
3810 - <precision>-2</precision>  
3811 - </field> <field> <name>fcno136</name>  
3812 - <rename/>  
3813 - <length>-2</length>  
3814 - <precision>-2</precision>  
3815 - </field> <field> <name>fcno137</name>  
3816 - <rename/>  
3817 - <length>-2</length>  
3818 - <precision>-2</precision>  
3819 - </field> <field> <name>fcno138</name>  
3820 - <rename/>  
3821 - <length>-2</length>  
3822 - <precision>-2</precision>  
3823 - </field> <field> <name>fcno139</name>  
3824 - <rename/>  
3825 - <length>-2</length>  
3826 - <precision>-2</precision>  
3827 - </field> <field> <name>fcno140</name>  
3828 - <rename/>  
3829 - <length>-2</length>  
3830 - <precision>-2</precision>  
3831 - </field> <field> <name>fcno141</name>  
3832 - <rename/>  
3833 - <length>-2</length>  
3834 - <precision>-2</precision>  
3835 - </field> <field> <name>fcno142</name>  
3836 - <rename/>  
3837 - <length>-2</length>  
3838 - <precision>-2</precision>  
3839 - </field> <field> <name>fcno143</name>  
3840 - <rename/>  
3841 - <length>-2</length>  
3842 - <precision>-2</precision>  
3843 - </field> <field> <name>fcno144</name>  
3844 - <rename/>  
3845 - <length>-2</length>  
3846 - <precision>-2</precision>  
3847 - </field> <field> <name>fcno145</name>  
3848 - <rename/>  
3849 - <length>-2</length>  
3850 - <precision>-2</precision>  
3851 - </field> <field> <name>fcno146</name>  
3852 - <rename/>  
3853 - <length>-2</length>  
3854 - <precision>-2</precision>  
3855 - </field> <field> <name>fcno147</name>  
3856 - <rename/>  
3857 - <length>-2</length>  
3858 - <precision>-2</precision>  
3859 - </field> <field> <name>fcno148</name>  
3860 - <rename/>  
3861 - <length>-2</length>  
3862 - <precision>-2</precision>  
3863 - </field> <field> <name>fcno149</name>  
3864 - <rename/>  
3865 - <length>-2</length>  
3866 - <precision>-2</precision>  
3867 - </field> <field> <name>fcno150</name>  
3868 - <rename/>  
3869 - <length>-2</length>  
3870 - <precision>-2</precision>  
3871 - </field> <select_unspecified>N</select_unspecified>  
3872 - </fields> <cluster_schema/>  
3873 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
3874 - <xloc>691</xloc>  
3875 - <yloc>361</yloc>  
3876 - <draw>Y</draw>  
3877 - </GUI>  
3878 - </step>  
3879 -  
3880 - <step>  
3881 - <name>&#x5408;&#x5e76;&#x5185;&#x5bb9;</name>  
3882 - <type>ScriptValueMod</type>  
3883 - <description/>  
3884 - <distribute>Y</distribute>  
3885 - <custom_distribution/>  
3886 - <copies>1</copies>  
3887 - <partitioning>  
3888 - <method>none</method>  
3889 - <schema_name/>  
3890 - </partitioning>  
3891 - <compatible>N</compatible>  
3892 - <optimizationLevel>9</optimizationLevel>  
3893 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
3894 - <jsScript_name>Script 1</jsScript_name>  
3895 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x987a;&#x5e8f;&#xff0c;id,fcsj,jhlc,zdname,bctype,xldir,isfb&#xa;var all_content_array &#x3d; &#x5b;&#x5d;&#x3b;&#xa;var all_content &#x3d; &#x22;&#x22;&#x3b; &#xa;all_content_array.push&#x28;id&#x29;&#x3b;&#xa;all_content_array.push&#x28;fcsj&#x29;&#x3b;&#xa;all_content_array.push&#x28;jhlc&#x29;&#x3b;&#xa;all_content_array.push&#x28;fczdName&#x29;&#x3b;&#xa;all_content_array.push&#x28;bc_type&#x29;&#x3b;&#xa;all_content_array.push&#x28;xl_dir&#x29;&#x3b;&#xa;all_content_array.push&#x28;isfb&#x29;&#x3b;&#xa;all_content_array.push&#x28;qdz_code &#x7c;&#x7c; &#x27;null&#x27;&#x29;&#x3b;&#xa;all_content_array.push&#x28;zdz_code &#x7c;&#x7c; &#x27;null&#x27;&#x29;&#x3b;&#xa;all_content_array.push&#x28;ists&#x29;&#x3b;&#xa;&#xa;all_content &#x3d; all_content_array.join&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x9017;&#x53f7;&#x5206;&#x9694;</jsScript_script>  
3896 - </jsScript> </jsScripts> <fields> <field> <name>all_content</name>  
3897 - <rename>all_content</rename>  
3898 - <type>String</type>  
3899 - <length>-1</length>  
3900 - <precision>-1</precision>  
3901 - <replace>N</replace>  
3902 - </field> </fields> <cluster_schema/>  
3903 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
3904 - <xloc>441</xloc>  
3905 - <yloc>84</yloc>  
3906 - <draw>Y</draw>  
3907 - </GUI>  
3908 - </step>  
3909 -  
3910 - <step>  
3911 - <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>  
3912 - <type>GetVariable</type>  
3913 - <description/>  
3914 - <distribute>Y</distribute>  
3915 - <custom_distribution/>  
3916 - <copies>1</copies>  
3917 - <partitioning>  
3918 - <method>none</method>  
3919 - <schema_name/>  
3920 - </partitioning>  
3921 - <fields>  
3922 - <field>  
3923 - <name>xlid_</name>  
3924 - <variable>&#x24;&#x7b;xlid&#x7d;</variable>  
3925 - <type>Integer</type>  
3926 - <format/>  
3927 - <currency/>  
3928 - <decimal/>  
3929 - <group/>  
3930 - <length>-1</length>  
3931 - <precision>-1</precision>  
3932 - <trim_type>none</trim_type>  
3933 - </field>  
3934 - <field>  
3935 - <name>ttid_</name>  
3936 - <variable>&#x24;&#x7b;ttid&#x7d;</variable>  
3937 - <type>Number</type>  
3938 - <format/>  
3939 - <currency/>  
3940 - <decimal/>  
3941 - <group/>  
3942 - <length>-1</length>  
3943 - <precision>-1</precision>  
3944 - <trim_type>none</trim_type>  
3945 - </field>  
3946 - </fields>  
3947 - <cluster_schema/>  
3948 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
3949 - <xloc>45</xloc>  
3950 - <yloc>189</yloc>  
3951 - <draw>Y</draw>  
3952 - </GUI>  
3953 - </step>  
3954 -  
3955 - <step>  
3956 - <name>&#x8868;&#x8f93;&#x5165;</name>  
3957 - <type>TableInput</type>  
3958 - <description/>  
3959 - <distribute>Y</distribute>  
3960 - <custom_distribution/>  
3961 - <copies>1</copies>  
3962 - <partitioning>  
3963 - <method>none</method>  
3964 - <schema_name/>  
3965 - </partitioning>  
3966 - <connection>bus_control_variable</connection>  
3967 - <sql>select &#xa;t.id as id&#xa;, concat&#x28;g.id, &#x27;_&#x27;, g.lp_name&#x29; as lp&#xa;, g.xl as xl&#xa;, qdz_code&#xa;, qdz_name&#xa;, zdz_code&#xa;, zdz_name&#xa;, fcsj&#xa;, jhlc&#xa;, bc_type &#xa;, bcs&#xa;, fcno&#xa;, xl_dir&#xa;, isfb&#xa;, ists&#xa;from bsth_c_s_ttinfo_detail t left join &#xa;bsth_c_s_gbi g on t.lp &#x3d; g.id &#xa;where &#xa;g.xl &#x3d; &#x3f; and&#xa;t.ttinfo &#x3d; &#x3f; &#xa;order by g.lp_no asc, t.bcs asc</sql>  
3968 - <limit>0</limit>  
3969 - <lookup>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</lookup>  
3970 - <execute_each_row>N</execute_each_row>  
3971 - <variables_active>Y</variables_active>  
3972 - <lazy_conversion_active>N</lazy_conversion_active>  
3973 - <cluster_schema/>  
3974 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
3975 - <xloc>130</xloc>  
3976 - <yloc>85</yloc>  
3977 - <draw>Y</draw>  
3978 - </GUI>  
3979 - </step>  
3980 -  
3981 - <step>  
3982 - <name>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</name>  
3983 - <type>ScriptValueMod</type>  
3984 - <description/>  
3985 - <distribute>Y</distribute>  
3986 - <custom_distribution/>  
3987 - <copies>1</copies>  
3988 - <partitioning>  
3989 - <method>none</method>  
3990 - <schema_name/>  
3991 - </partitioning>  
3992 - <compatible>N</compatible>  
3993 - <optimizationLevel>9</optimizationLevel>  
3994 - <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>  
3995 - <jsScript_name>Script 1</jsScript_name>  
3996 - <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var fczdName &#x3d; null&#x3b; &#x2f;&#x2f; &#x53d1;&#x8f66;&#x7ad9;&#x70b9;&#x540d;&#x5b57;&#xa;if &#x28;bc_type &#x3d;&#x3d; &#x22;in&#x22;&#x29; &#x7b;&#xa; fczdName &#x3d; &#x22;&#x8fdb;&#x573a;&#x22;&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x22;out&#x22;&#x29; &#x7b;&#xa; fczdName &#x3d; &#x22;&#x51fa;&#x573a;&#x22;&#x3b;&#xa;&#x7d; else &#x7b;&#xa; fczdName &#x3d; qdz_name&#x3b;&#xa;&#x7d;</jsScript_script>  
3997 - </jsScript> </jsScripts> <fields> <field> <name>fczdName</name>  
3998 - <rename>fczdName</rename>  
3999 - <type>String</type>  
4000 - <length>-1</length>  
4001 - <precision>-1</precision>  
4002 - <replace>N</replace>  
4003 - </field> </fields> <cluster_schema/>  
4004 - <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>  
4005 - <xloc>282</xloc>  
4006 - <yloc>82</yloc>  
4007 - <draw>Y</draw>  
4008 - </GUI>  
4009 - </step>  
4010 -  
4011 - <step_error_handling>  
4012 - </step_error_handling>  
4013 - <slave-step-copy-partition-distribution>  
4014 -</slave-step-copy-partition-distribution>  
4015 - <slave_transformation>N</slave_transformation>  
4016 -  
4017 -</transformation> 1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<transformation>
  3 + <info>
  4 + <name>ttinfodetailoutputforedit</name>
  5 + <description/>
  6 + <extended_description/>
  7 + <trans_version/>
  8 + <trans_type>Normal</trans_type>
  9 + <trans_status>0</trans_status>
  10 + <directory>&#x2f;</directory>
  11 + <parameters>
  12 + <parameter>
  13 + <name>tempfilepath</name>
  14 + <default_value>&#x2f;Users&#x2f;xu&#x2f;resource&#x2f;project_code&#x2f;runtime_temp&#x2f;bsth_control_u_d_files&#x2f;temp&#x2f;test</default_value>
  15 + <description>&#x9ed8;&#x8ba4;&#x8f93;&#x51fa;&#x7684;&#x6587;&#x4ef6;&#x8def;&#x5f84;&#x540d;</description>
  16 + </parameter>
  17 + <parameter>
  18 + <name>ttid</name>
  19 + <default_value>79</default_value>
  20 + <description>&#x65f6;&#x523b;&#x8868;id</description>
  21 + </parameter>
  22 + <parameter>
  23 + <name>xlid</name>
  24 + <default_value>63020</default_value>
  25 + <description>&#x7ebf;&#x8def;id</description>
  26 + </parameter>
  27 + </parameters>
  28 + <log>
  29 +<trans-log-table><connection/>
  30 +<schema/>
  31 +<table/>
  32 +<size_limit_lines/>
  33 +<interval/>
  34 +<timeout_days/>
  35 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STATUS</id><enabled>Y</enabled><name>STATUS</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name><subject/></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name><subject/></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name><subject/></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name><subject/></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name><subject/></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name><subject/></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>STARTDATE</id><enabled>Y</enabled><name>STARTDATE</name></field><field><id>ENDDATE</id><enabled>Y</enabled><name>ENDDATE</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>DEPDATE</id><enabled>Y</enabled><name>DEPDATE</name></field><field><id>REPLAYDATE</id><enabled>Y</enabled><name>REPLAYDATE</name></field><field><id>LOG_FIELD</id><enabled>Y</enabled><name>LOG_FIELD</name></field><field><id>EXECUTING_SERVER</id><enabled>N</enabled><name>EXECUTING_SERVER</name></field><field><id>EXECUTING_USER</id><enabled>N</enabled><name>EXECUTING_USER</name></field><field><id>CLIENT</id><enabled>N</enabled><name>CLIENT</name></field></trans-log-table>
  36 +<perf-log-table><connection/>
  37 +<schema/>
  38 +<table/>
  39 +<interval/>
  40 +<timeout_days/>
  41 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>SEQ_NR</id><enabled>Y</enabled><name>SEQ_NR</name></field><field><id>LOGDATE</id><enabled>Y</enabled><name>LOGDATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>INPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>INPUT_BUFFER_ROWS</name></field><field><id>OUTPUT_BUFFER_ROWS</id><enabled>Y</enabled><name>OUTPUT_BUFFER_ROWS</name></field></perf-log-table>
  42 +<channel-log-table><connection/>
  43 +<schema/>
  44 +<table/>
  45 +<timeout_days/>
  46 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>LOGGING_OBJECT_TYPE</id><enabled>Y</enabled><name>LOGGING_OBJECT_TYPE</name></field><field><id>OBJECT_NAME</id><enabled>Y</enabled><name>OBJECT_NAME</name></field><field><id>OBJECT_COPY</id><enabled>Y</enabled><name>OBJECT_COPY</name></field><field><id>REPOSITORY_DIRECTORY</id><enabled>Y</enabled><name>REPOSITORY_DIRECTORY</name></field><field><id>FILENAME</id><enabled>Y</enabled><name>FILENAME</name></field><field><id>OBJECT_ID</id><enabled>Y</enabled><name>OBJECT_ID</name></field><field><id>OBJECT_REVISION</id><enabled>Y</enabled><name>OBJECT_REVISION</name></field><field><id>PARENT_CHANNEL_ID</id><enabled>Y</enabled><name>PARENT_CHANNEL_ID</name></field><field><id>ROOT_CHANNEL_ID</id><enabled>Y</enabled><name>ROOT_CHANNEL_ID</name></field></channel-log-table>
  47 +<step-log-table><connection/>
  48 +<schema/>
  49 +<table/>
  50 +<timeout_days/>
  51 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>TRANSNAME</id><enabled>Y</enabled><name>TRANSNAME</name></field><field><id>STEPNAME</id><enabled>Y</enabled><name>STEPNAME</name></field><field><id>STEP_COPY</id><enabled>Y</enabled><name>STEP_COPY</name></field><field><id>LINES_READ</id><enabled>Y</enabled><name>LINES_READ</name></field><field><id>LINES_WRITTEN</id><enabled>Y</enabled><name>LINES_WRITTEN</name></field><field><id>LINES_UPDATED</id><enabled>Y</enabled><name>LINES_UPDATED</name></field><field><id>LINES_INPUT</id><enabled>Y</enabled><name>LINES_INPUT</name></field><field><id>LINES_OUTPUT</id><enabled>Y</enabled><name>LINES_OUTPUT</name></field><field><id>LINES_REJECTED</id><enabled>Y</enabled><name>LINES_REJECTED</name></field><field><id>ERRORS</id><enabled>Y</enabled><name>ERRORS</name></field><field><id>LOG_FIELD</id><enabled>N</enabled><name>LOG_FIELD</name></field></step-log-table>
  52 +<metrics-log-table><connection/>
  53 +<schema/>
  54 +<table/>
  55 +<timeout_days/>
  56 +<field><id>ID_BATCH</id><enabled>Y</enabled><name>ID_BATCH</name></field><field><id>CHANNEL_ID</id><enabled>Y</enabled><name>CHANNEL_ID</name></field><field><id>LOG_DATE</id><enabled>Y</enabled><name>LOG_DATE</name></field><field><id>METRICS_DATE</id><enabled>Y</enabled><name>METRICS_DATE</name></field><field><id>METRICS_CODE</id><enabled>Y</enabled><name>METRICS_CODE</name></field><field><id>METRICS_DESCRIPTION</id><enabled>Y</enabled><name>METRICS_DESCRIPTION</name></field><field><id>METRICS_SUBJECT</id><enabled>Y</enabled><name>METRICS_SUBJECT</name></field><field><id>METRICS_TYPE</id><enabled>Y</enabled><name>METRICS_TYPE</name></field><field><id>METRICS_VALUE</id><enabled>Y</enabled><name>METRICS_VALUE</name></field></metrics-log-table>
  57 + </log>
  58 + <maxdate>
  59 + <connection/>
  60 + <table/>
  61 + <field/>
  62 + <offset>0.0</offset>
  63 + <maxdiff>0.0</maxdiff>
  64 + </maxdate>
  65 + <size_rowset>10000</size_rowset>
  66 + <sleep_time_empty>50</sleep_time_empty>
  67 + <sleep_time_full>50</sleep_time_full>
  68 + <unique_connections>N</unique_connections>
  69 + <feedback_shown>Y</feedback_shown>
  70 + <feedback_size>50000</feedback_size>
  71 + <using_thread_priorities>Y</using_thread_priorities>
  72 + <shared_objects_file/>
  73 + <capture_step_performance>N</capture_step_performance>
  74 + <step_performance_capturing_delay>1000</step_performance_capturing_delay>
  75 + <step_performance_capturing_size_limit>100</step_performance_capturing_size_limit>
  76 + <dependencies>
  77 + </dependencies>
  78 + <partitionschemas>
  79 + </partitionschemas>
  80 + <slaveservers>
  81 + </slaveservers>
  82 + <clusterschemas>
  83 + </clusterschemas>
  84 + <created_user>-</created_user>
  85 + <created_date>2016&#x2f;07&#x2f;11 21&#x3a;45&#x3a;05.041</created_date>
  86 + <modified_user>-</modified_user>
  87 + <modified_date>2016&#x2f;07&#x2f;11 21&#x3a;45&#x3a;05.041</modified_date>
  88 + <key_for_session_key>H4sIAAAAAAAAAAMAAAAAAAAAAAA&#x3d;</key_for_session_key>
  89 + <is_key_private>N</is_key_private>
  90 + </info>
  91 + <notepads>
  92 + <notepad>
  93 + <note>&#x6b64;&#x5904;&#x8f6c;&#x6362;excel&#x6709;&#x95ee;&#x9898;&#xff0c;&#xa;2003&#x683c;&#x5f0f;&#x7684;xls&#x6700;&#x591a;256&#x5217;&#xff0c;&#xa;&#x8fd9;&#x91cc;&#x660e;&#x663e;&#x8d85;&#x8fc7;&#xff0c;&#x6240;&#x4ee5;&#x628a;&#x6240;&#x6709;&#x5185;&#x5bb9;&#x5408;&#x5e76;&#x6210;1&#x5217;&#xff0c;&#xa;&#x7528;,&#x5206;&#x9694;</note>
  94 + <xloc>316</xloc>
  95 + <yloc>166</yloc>
  96 + <width>245</width>
  97 + <heigth>74</heigth>
  98 + <fontname>YaHei Consolas Hybrid</fontname>
  99 + <fontsize>12</fontsize>
  100 + <fontbold>N</fontbold>
  101 + <fontitalic>N</fontitalic>
  102 + <fontcolorred>0</fontcolorred>
  103 + <fontcolorgreen>0</fontcolorgreen>
  104 + <fontcolorblue>0</fontcolorblue>
  105 + <backgroundcolorred>255</backgroundcolorred>
  106 + <backgroundcolorgreen>205</backgroundcolorgreen>
  107 + <backgroundcolorblue>112</backgroundcolorblue>
  108 + <bordercolorred>100</bordercolorred>
  109 + <bordercolorgreen>100</bordercolorgreen>
  110 + <bordercolorblue>100</bordercolorblue>
  111 + <drawshadow>Y</drawshadow>
  112 + </notepad>
  113 + </notepads>
  114 + <connection>
  115 + <name>192.168.168.1_jwgl_dw</name>
  116 + <server>192.168.168.1</server>
  117 + <type>ORACLE</type>
  118 + <access>Native</access>
  119 + <database>orcl</database>
  120 + <port>1521</port>
  121 + <username>jwgl_dw</username>
  122 + <password>Encrypted 2be98afc86aa7f2e4cb13b977d2adabcd</password>
  123 + <servername/>
  124 + <data_tablespace/>
  125 + <index_tablespace/>
  126 + <attributes>
  127 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  128 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  129 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  130 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  131 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  132 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  133 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  134 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  135 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  136 + </attributes>
  137 + </connection>
  138 + <connection>
  139 + <name>bus_control_variable</name>
  140 + <server>&#x24;&#x7b;v_db_ip&#x7d;</server>
  141 + <type>MYSQL</type>
  142 + <access>Native</access>
  143 + <database>&#x24;&#x7b;v_db_dname&#x7d;</database>
  144 + <port>3306</port>
  145 + <username>&#x24;&#x7b;v_db_uname&#x7d;</username>
  146 + <password>&#x24;&#x7b;v_db_pwd&#x7d;</password>
  147 + <servername/>
  148 + <data_tablespace/>
  149 + <index_tablespace/>
  150 + <attributes>
  151 + <attribute><code>EXTRA_OPTION_MYSQL.characterEncoding</code><attribute>utf8</attribute></attribute>
  152 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  153 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  154 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  155 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  156 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  157 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  158 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  159 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  160 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  161 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  162 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  163 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  164 + </attributes>
  165 + </connection>
  166 + <connection>
  167 + <name>bus_control_&#x516c;&#x53f8;_201</name>
  168 + <server>localhost</server>
  169 + <type>MYSQL</type>
  170 + <access>Native</access>
  171 + <database>control</database>
  172 + <port>3306</port>
  173 + <username>root</username>
  174 + <password>Encrypted </password>
  175 + <servername/>
  176 + <data_tablespace/>
  177 + <index_tablespace/>
  178 + <attributes>
  179 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  180 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  181 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  182 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  183 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  184 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  185 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  186 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  187 + <attribute><code>STREAM_RESULTS</code><attribute>N</attribute></attribute>
  188 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  189 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  190 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  191 + </attributes>
  192 + </connection>
  193 + <connection>
  194 + <name>bus_control_&#x672c;&#x673a;</name>
  195 + <server>localhost</server>
  196 + <type>MYSQL</type>
  197 + <access>Native</access>
  198 + <database>control</database>
  199 + <port>3306</port>
  200 + <username>root</username>
  201 + <password>Encrypted </password>
  202 + <servername/>
  203 + <data_tablespace/>
  204 + <index_tablespace/>
  205 + <attributes>
  206 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  207 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  208 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  209 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  210 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  211 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  212 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  213 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  214 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  215 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  216 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  217 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  218 + </attributes>
  219 + </connection>
  220 + <connection>
  221 + <name>JGJW_VM</name>
  222 + <server>192.168.198.240</server>
  223 + <type>ORACLE</type>
  224 + <access>Native</access>
  225 + <database>orcl</database>
  226 + <port>1521</port>
  227 + <username>jwgl</username>
  228 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  229 + <servername/>
  230 + <data_tablespace/>
  231 + <index_tablespace/>
  232 + <attributes>
  233 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  234 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  235 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  236 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  237 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  238 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  239 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  240 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  241 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  242 + </attributes>
  243 + </connection>
  244 + <connection>
  245 + <name>NHJW_VM</name>
  246 + <server>192.168.198.240</server>
  247 + <type>ORACLE</type>
  248 + <access>Native</access>
  249 + <database>orcl</database>
  250 + <port>1521</port>
  251 + <username>nhjw</username>
  252 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d09aa5cd</password>
  253 + <servername/>
  254 + <data_tablespace/>
  255 + <index_tablespace/>
  256 + <attributes>
  257 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  258 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  259 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  260 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  261 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  262 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  263 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  264 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  265 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  266 + </attributes>
  267 + </connection>
  268 + <connection>
  269 + <name>PDGJ_VM</name>
  270 + <server>192.168.198.240</server>
  271 + <type>ORACLE</type>
  272 + <access>Native</access>
  273 + <database>orcl</database>
  274 + <port>1521</port>
  275 + <username>pdgj</username>
  276 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10ce96a8d0</password>
  277 + <servername/>
  278 + <data_tablespace/>
  279 + <index_tablespace/>
  280 + <attributes>
  281 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  282 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  283 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  284 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  285 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  286 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  287 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  288 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  289 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  290 + </attributes>
  291 + </connection>
  292 + <connection>
  293 + <name>SNJW_VM</name>
  294 + <server>192.168.198.240</server>
  295 + <type>ORACLE</type>
  296 + <access>Native</access>
  297 + <database>orcl</database>
  298 + <port>1521</port>
  299 + <username>snjw</username>
  300 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  301 + <servername/>
  302 + <data_tablespace/>
  303 + <index_tablespace/>
  304 + <attributes>
  305 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  306 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  307 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  308 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  309 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  310 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  311 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  312 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  313 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  314 + </attributes>
  315 + </connection>
  316 + <connection>
  317 + <name>xlab_mysql_youle</name>
  318 + <server>101.231.124.8</server>
  319 + <type>MYSQL</type>
  320 + <access>Native</access>
  321 + <database>xlab_youle</database>
  322 + <port>45687</port>
  323 + <username>xlab-youle</username>
  324 + <password>Encrypted 2be98afc86aa78a88aa1be369d187a3df</password>
  325 + <servername/>
  326 + <data_tablespace/>
  327 + <index_tablespace/>
  328 + <attributes>
  329 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  330 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  331 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  332 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  333 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  334 + <attribute><code>PORT_NUMBER</code><attribute>45687</attribute></attribute>
  335 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  336 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  337 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  338 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  339 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  340 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  341 + </attributes>
  342 + </connection>
  343 + <connection>
  344 + <name>xlab_mysql_youle&#xff08;&#x672c;&#x673a;&#xff09;</name>
  345 + <server>localhost</server>
  346 + <type>MYSQL</type>
  347 + <access>Native</access>
  348 + <database>xlab_youle</database>
  349 + <port>3306</port>
  350 + <username>root</username>
  351 + <password>Encrypted </password>
  352 + <servername/>
  353 + <data_tablespace/>
  354 + <index_tablespace/>
  355 + <attributes>
  356 + <attribute><code>EXTRA_OPTION_MYSQL.defaultFetchSize</code><attribute>500</attribute></attribute>
  357 + <attribute><code>EXTRA_OPTION_MYSQL.useCursorFetch</code><attribute>true</attribute></attribute>
  358 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  359 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  360 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  361 + <attribute><code>PORT_NUMBER</code><attribute>3306</attribute></attribute>
  362 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  363 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  364 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  365 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>N</attribute></attribute>
  366 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>N</attribute></attribute>
  367 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  368 + </attributes>
  369 + </connection>
  370 + <connection>
  371 + <name>xlab_youle</name>
  372 + <server/>
  373 + <type>MYSQL</type>
  374 + <access>JNDI</access>
  375 + <database>xlab_youle</database>
  376 + <port>1521</port>
  377 + <username/>
  378 + <password>Encrypted </password>
  379 + <servername/>
  380 + <data_tablespace/>
  381 + <index_tablespace/>
  382 + <attributes>
  383 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  384 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  385 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  386 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  387 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  388 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  389 + <attribute><code>STREAM_RESULTS</code><attribute>Y</attribute></attribute>
  390 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  391 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  392 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  393 + </attributes>
  394 + </connection>
  395 + <connection>
  396 + <name>YGJW_VM</name>
  397 + <server>192.168.198.240</server>
  398 + <type>ORACLE</type>
  399 + <access>Native</access>
  400 + <database>orcl</database>
  401 + <port>1521</port>
  402 + <username>ygjw</username>
  403 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  404 + <servername/>
  405 + <data_tablespace/>
  406 + <index_tablespace/>
  407 + <attributes>
  408 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  409 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  410 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  411 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  412 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  413 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  414 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  415 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  416 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  417 + </attributes>
  418 + </connection>
  419 + <connection>
  420 + <name>&#x516c;&#x53f8;jgjw</name>
  421 + <server>192.168.168.1</server>
  422 + <type>ORACLE</type>
  423 + <access>Native</access>
  424 + <database>orcl</database>
  425 + <port>1521</port>
  426 + <username>jwgl</username>
  427 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10d485a8d6</password>
  428 + <servername/>
  429 + <data_tablespace/>
  430 + <index_tablespace/>
  431 + <attributes>
  432 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  433 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  434 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  435 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  436 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  437 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  438 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  439 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  440 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  441 + </attributes>
  442 + </connection>
  443 + <connection>
  444 + <name>&#x516c;&#x53f8;snjw</name>
  445 + <server>192.168.168.1</server>
  446 + <type>ORACLE</type>
  447 + <access>Native</access>
  448 + <database>orcl</database>
  449 + <port>1521</port>
  450 + <username>snjw</username>
  451 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10cd9ca5cd</password>
  452 + <servername/>
  453 + <data_tablespace/>
  454 + <index_tablespace/>
  455 + <attributes>
  456 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  457 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  458 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  459 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  460 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  461 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  462 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  463 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  464 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  465 + </attributes>
  466 + </connection>
  467 + <connection>
  468 + <name>&#x516c;&#x53f8;ygjw</name>
  469 + <server>192.168.168.1</server>
  470 + <type>ORACLE</type>
  471 + <access>Native</access>
  472 + <database>orcl</database>
  473 + <port>1521</port>
  474 + <username>ygjw</username>
  475 + <password>Encrypted 2be98afc86aa7f2e4cb79ce10c795a5cd</password>
  476 + <servername/>
  477 + <data_tablespace/>
  478 + <index_tablespace/>
  479 + <attributes>
  480 + <attribute><code>FORCE_IDENTIFIERS_TO_LOWERCASE</code><attribute>N</attribute></attribute>
  481 + <attribute><code>FORCE_IDENTIFIERS_TO_UPPERCASE</code><attribute>N</attribute></attribute>
  482 + <attribute><code>IS_CLUSTERED</code><attribute>N</attribute></attribute>
  483 + <attribute><code>PORT_NUMBER</code><attribute>1521</attribute></attribute>
  484 + <attribute><code>PRESERVE_RESERVED_WORD_CASE</code><attribute>N</attribute></attribute>
  485 + <attribute><code>QUOTE_ALL_FIELDS</code><attribute>N</attribute></attribute>
  486 + <attribute><code>SUPPORTS_BOOLEAN_DATA_TYPE</code><attribute>Y</attribute></attribute>
  487 + <attribute><code>SUPPORTS_TIMESTAMP_DATA_TYPE</code><attribute>Y</attribute></attribute>
  488 + <attribute><code>USE_POOLING</code><attribute>N</attribute></attribute>
  489 + </attributes>
  490 + </connection>
  491 + <order>
  492 + <hop> <from>&#x5217;&#x8f6c;&#x884c;</from><to>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</to><enabled>Y</enabled> </hop>
  493 + <hop> <from>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</from><to>Excel&#x8f93;&#x51fa;</to><enabled>Y</enabled> </hop>
  494 + <hop> <from>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</from><to>&#x8868;&#x8f93;&#x5165;</to><enabled>Y</enabled> </hop>
  495 + <hop> <from>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</from><to>&#x5408;&#x5e76;&#x5185;&#x5bb9;</to><enabled>Y</enabled> </hop>
  496 + <hop> <from>&#x5408;&#x5e76;&#x5185;&#x5bb9;</from><to>&#x5217;&#x8f6c;&#x884c;</to><enabled>Y</enabled> </hop>
  497 + <hop> <from>&#x8868;&#x8f93;&#x5165;</from><to>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</to><enabled>Y</enabled> </hop>
  498 + </order>
  499 + <step>
  500 + <name>Excel&#x8f93;&#x51fa;</name>
  501 + <type>ExcelOutput</type>
  502 + <description/>
  503 + <distribute>Y</distribute>
  504 + <custom_distribution/>
  505 + <copies>1</copies>
  506 + <partitioning>
  507 + <method>none</method>
  508 + <schema_name/>
  509 + </partitioning>
  510 + <header>Y</header>
  511 + <footer>N</footer>
  512 + <encoding/>
  513 + <append>N</append>
  514 + <add_to_result_filenames>Y</add_to_result_filenames>
  515 + <file>
  516 + <name>&#x24;&#x7b;tempfilepath&#x7d;</name>
  517 + <extention>xls</extention>
  518 + <do_not_open_newfile_init>N</do_not_open_newfile_init>
  519 + <create_parent_folder>N</create_parent_folder>
  520 + <split>N</split>
  521 + <add_date>N</add_date>
  522 + <add_time>N</add_time>
  523 + <SpecifyFormat>N</SpecifyFormat>
  524 + <date_time_format/>
  525 + <sheetname>Sheet1</sheetname>
  526 + <autosizecolums>N</autosizecolums>
  527 + <nullisblank>N</nullisblank>
  528 + <protect_sheet>N</protect_sheet>
  529 + <password>Encrypted </password>
  530 + <splitevery>0</splitevery>
  531 + <usetempfiles>N</usetempfiles>
  532 + <tempdirectory/>
  533 + </file>
  534 + <template>
  535 + <enabled>N</enabled>
  536 + <append>N</append>
  537 + <filename>template.xls</filename>
  538 + </template>
  539 + <fields>
  540 + <field>
  541 + <name>lp</name>
  542 + <type>String</type>
  543 + <format/>
  544 + </field>
  545 + <field>
  546 + <name>fcno1</name>
  547 + <type>String</type>
  548 + <format/>
  549 + </field>
  550 + <field>
  551 + <name>fcno2</name>
  552 + <type>String</type>
  553 + <format/>
  554 + </field>
  555 + <field>
  556 + <name>fcno3</name>
  557 + <type>String</type>
  558 + <format/>
  559 + </field>
  560 + <field>
  561 + <name>fcno4</name>
  562 + <type>String</type>
  563 + <format/>
  564 + </field>
  565 + <field>
  566 + <name>fcno5</name>
  567 + <type>String</type>
  568 + <format/>
  569 + </field>
  570 + <field>
  571 + <name>fcno6</name>
  572 + <type>String</type>
  573 + <format/>
  574 + </field>
  575 + <field>
  576 + <name>fcno7</name>
  577 + <type>String</type>
  578 + <format/>
  579 + </field>
  580 + <field>
  581 + <name>fcno8</name>
  582 + <type>String</type>
  583 + <format/>
  584 + </field>
  585 + <field>
  586 + <name>fcno9</name>
  587 + <type>String</type>
  588 + <format/>
  589 + </field>
  590 + <field>
  591 + <name>fcno10</name>
  592 + <type>String</type>
  593 + <format/>
  594 + </field>
  595 + <field>
  596 + <name>fcno11</name>
  597 + <type>String</type>
  598 + <format/>
  599 + </field>
  600 + <field>
  601 + <name>fcno12</name>
  602 + <type>String</type>
  603 + <format/>
  604 + </field>
  605 + <field>
  606 + <name>fcno13</name>
  607 + <type>String</type>
  608 + <format/>
  609 + </field>
  610 + <field>
  611 + <name>fcno14</name>
  612 + <type>String</type>
  613 + <format/>
  614 + </field>
  615 + <field>
  616 + <name>fcno15</name>
  617 + <type>String</type>
  618 + <format/>
  619 + </field>
  620 + <field>
  621 + <name>fcno16</name>
  622 + <type>String</type>
  623 + <format/>
  624 + </field>
  625 + <field>
  626 + <name>fcno17</name>
  627 + <type>String</type>
  628 + <format/>
  629 + </field>
  630 + <field>
  631 + <name>fcno18</name>
  632 + <type>String</type>
  633 + <format/>
  634 + </field>
  635 + <field>
  636 + <name>fcno19</name>
  637 + <type>String</type>
  638 + <format/>
  639 + </field>
  640 + <field>
  641 + <name>fcno20</name>
  642 + <type>String</type>
  643 + <format/>
  644 + </field>
  645 + <field>
  646 + <name>fcno21</name>
  647 + <type>String</type>
  648 + <format/>
  649 + </field>
  650 + <field>
  651 + <name>fcno22</name>
  652 + <type>String</type>
  653 + <format/>
  654 + </field>
  655 + <field>
  656 + <name>fcno23</name>
  657 + <type>String</type>
  658 + <format/>
  659 + </field>
  660 + <field>
  661 + <name>fcno24</name>
  662 + <type>String</type>
  663 + <format/>
  664 + </field>
  665 + <field>
  666 + <name>fcno25</name>
  667 + <type>String</type>
  668 + <format/>
  669 + </field>
  670 + <field>
  671 + <name>fcno26</name>
  672 + <type>String</type>
  673 + <format/>
  674 + </field>
  675 + <field>
  676 + <name>fcno27</name>
  677 + <type>String</type>
  678 + <format/>
  679 + </field>
  680 + <field>
  681 + <name>fcno28</name>
  682 + <type>String</type>
  683 + <format/>
  684 + </field>
  685 + <field>
  686 + <name>fcno29</name>
  687 + <type>String</type>
  688 + <format/>
  689 + </field>
  690 + <field>
  691 + <name>fcno30</name>
  692 + <type>String</type>
  693 + <format/>
  694 + </field>
  695 + <field>
  696 + <name>fcno31</name>
  697 + <type>String</type>
  698 + <format/>
  699 + </field>
  700 + <field>
  701 + <name>fcno32</name>
  702 + <type>String</type>
  703 + <format/>
  704 + </field>
  705 + <field>
  706 + <name>fcno33</name>
  707 + <type>String</type>
  708 + <format/>
  709 + </field>
  710 + <field>
  711 + <name>fcno34</name>
  712 + <type>String</type>
  713 + <format/>
  714 + </field>
  715 + <field>
  716 + <name>fcno35</name>
  717 + <type>String</type>
  718 + <format/>
  719 + </field>
  720 + <field>
  721 + <name>fcno36</name>
  722 + <type>String</type>
  723 + <format/>
  724 + </field>
  725 + <field>
  726 + <name>fcno37</name>
  727 + <type>String</type>
  728 + <format/>
  729 + </field>
  730 + <field>
  731 + <name>fcno38</name>
  732 + <type>String</type>
  733 + <format/>
  734 + </field>
  735 + <field>
  736 + <name>fcno39</name>
  737 + <type>String</type>
  738 + <format/>
  739 + </field>
  740 + <field>
  741 + <name>fcno40</name>
  742 + <type>String</type>
  743 + <format/>
  744 + </field>
  745 + <field>
  746 + <name>fcno41</name>
  747 + <type>String</type>
  748 + <format/>
  749 + </field>
  750 + <field>
  751 + <name>fcno42</name>
  752 + <type>String</type>
  753 + <format/>
  754 + </field>
  755 + <field>
  756 + <name>fcno43</name>
  757 + <type>String</type>
  758 + <format/>
  759 + </field>
  760 + <field>
  761 + <name>fcno44</name>
  762 + <type>String</type>
  763 + <format/>
  764 + </field>
  765 + <field>
  766 + <name>fcno45</name>
  767 + <type>String</type>
  768 + <format/>
  769 + </field>
  770 + <field>
  771 + <name>fcno46</name>
  772 + <type>String</type>
  773 + <format/>
  774 + </field>
  775 + <field>
  776 + <name>fcno47</name>
  777 + <type>String</type>
  778 + <format/>
  779 + </field>
  780 + <field>
  781 + <name>fcno48</name>
  782 + <type>String</type>
  783 + <format/>
  784 + </field>
  785 + <field>
  786 + <name>fcno49</name>
  787 + <type>String</type>
  788 + <format/>
  789 + </field>
  790 + <field>
  791 + <name>fcno50</name>
  792 + <type>String</type>
  793 + <format/>
  794 + </field>
  795 + <field>
  796 + <name>fcno51</name>
  797 + <type>String</type>
  798 + <format/>
  799 + </field>
  800 + <field>
  801 + <name>fcno52</name>
  802 + <type>String</type>
  803 + <format/>
  804 + </field>
  805 + <field>
  806 + <name>fcno53</name>
  807 + <type>String</type>
  808 + <format/>
  809 + </field>
  810 + <field>
  811 + <name>fcno54</name>
  812 + <type>String</type>
  813 + <format/>
  814 + </field>
  815 + <field>
  816 + <name>fcno55</name>
  817 + <type>String</type>
  818 + <format/>
  819 + </field>
  820 + <field>
  821 + <name>fcno56</name>
  822 + <type>String</type>
  823 + <format/>
  824 + </field>
  825 + <field>
  826 + <name>fcno57</name>
  827 + <type>String</type>
  828 + <format/>
  829 + </field>
  830 + <field>
  831 + <name>fcno58</name>
  832 + <type>String</type>
  833 + <format/>
  834 + </field>
  835 + <field>
  836 + <name>fcno59</name>
  837 + <type>String</type>
  838 + <format/>
  839 + </field>
  840 + <field>
  841 + <name>fcno60</name>
  842 + <type>String</type>
  843 + <format/>
  844 + </field>
  845 + <field>
  846 + <name>fcno61</name>
  847 + <type>String</type>
  848 + <format/>
  849 + </field>
  850 + <field>
  851 + <name>fcno62</name>
  852 + <type>String</type>
  853 + <format/>
  854 + </field>
  855 + <field>
  856 + <name>fcno63</name>
  857 + <type>String</type>
  858 + <format/>
  859 + </field>
  860 + <field>
  861 + <name>fcno64</name>
  862 + <type>String</type>
  863 + <format/>
  864 + </field>
  865 + <field>
  866 + <name>fcno65</name>
  867 + <type>String</type>
  868 + <format/>
  869 + </field>
  870 + <field>
  871 + <name>fcno66</name>
  872 + <type>String</type>
  873 + <format/>
  874 + </field>
  875 + <field>
  876 + <name>fcno67</name>
  877 + <type>String</type>
  878 + <format/>
  879 + </field>
  880 + <field>
  881 + <name>fcno68</name>
  882 + <type>String</type>
  883 + <format/>
  884 + </field>
  885 + <field>
  886 + <name>fcno69</name>
  887 + <type>String</type>
  888 + <format/>
  889 + </field>
  890 + <field>
  891 + <name>fcno70</name>
  892 + <type>String</type>
  893 + <format/>
  894 + </field>
  895 + <field>
  896 + <name>fcno71</name>
  897 + <type>String</type>
  898 + <format/>
  899 + </field>
  900 + <field>
  901 + <name>fcno72</name>
  902 + <type>String</type>
  903 + <format/>
  904 + </field>
  905 + <field>
  906 + <name>fcno73</name>
  907 + <type>String</type>
  908 + <format/>
  909 + </field>
  910 + <field>
  911 + <name>fcno74</name>
  912 + <type>String</type>
  913 + <format/>
  914 + </field>
  915 + <field>
  916 + <name>fcno75</name>
  917 + <type>String</type>
  918 + <format/>
  919 + </field>
  920 + <field>
  921 + <name>fcno76</name>
  922 + <type>String</type>
  923 + <format/>
  924 + </field>
  925 + <field>
  926 + <name>fcno77</name>
  927 + <type>String</type>
  928 + <format/>
  929 + </field>
  930 + <field>
  931 + <name>fcno78</name>
  932 + <type>String</type>
  933 + <format/>
  934 + </field>
  935 + <field>
  936 + <name>fcno79</name>
  937 + <type>String</type>
  938 + <format/>
  939 + </field>
  940 + <field>
  941 + <name>fcno80</name>
  942 + <type>String</type>
  943 + <format/>
  944 + </field>
  945 + <field>
  946 + <name>fcno81</name>
  947 + <type>String</type>
  948 + <format/>
  949 + </field>
  950 + <field>
  951 + <name>fcno82</name>
  952 + <type>String</type>
  953 + <format/>
  954 + </field>
  955 + <field>
  956 + <name>fcno83</name>
  957 + <type>String</type>
  958 + <format/>
  959 + </field>
  960 + <field>
  961 + <name>fcno84</name>
  962 + <type>String</type>
  963 + <format/>
  964 + </field>
  965 + <field>
  966 + <name>fcno85</name>
  967 + <type>String</type>
  968 + <format/>
  969 + </field>
  970 + <field>
  971 + <name>fcno86</name>
  972 + <type>String</type>
  973 + <format/>
  974 + </field>
  975 + <field>
  976 + <name>fcno87</name>
  977 + <type>String</type>
  978 + <format/>
  979 + </field>
  980 + <field>
  981 + <name>fcno88</name>
  982 + <type>String</type>
  983 + <format/>
  984 + </field>
  985 + <field>
  986 + <name>fcno89</name>
  987 + <type>String</type>
  988 + <format/>
  989 + </field>
  990 + <field>
  991 + <name>fcno90</name>
  992 + <type>String</type>
  993 + <format/>
  994 + </field>
  995 + <field>
  996 + <name>fcno91</name>
  997 + <type>String</type>
  998 + <format/>
  999 + </field>
  1000 + <field>
  1001 + <name>fcno92</name>
  1002 + <type>String</type>
  1003 + <format/>
  1004 + </field>
  1005 + <field>
  1006 + <name>fcno93</name>
  1007 + <type>String</type>
  1008 + <format/>
  1009 + </field>
  1010 + <field>
  1011 + <name>fcno94</name>
  1012 + <type>String</type>
  1013 + <format/>
  1014 + </field>
  1015 + <field>
  1016 + <name>fcno95</name>
  1017 + <type>String</type>
  1018 + <format/>
  1019 + </field>
  1020 + <field>
  1021 + <name>fcno96</name>
  1022 + <type>String</type>
  1023 + <format/>
  1024 + </field>
  1025 + <field>
  1026 + <name>fcno97</name>
  1027 + <type>String</type>
  1028 + <format/>
  1029 + </field>
  1030 + <field>
  1031 + <name>fcno98</name>
  1032 + <type>String</type>
  1033 + <format/>
  1034 + </field>
  1035 + <field>
  1036 + <name>fcno99</name>
  1037 + <type>String</type>
  1038 + <format/>
  1039 + </field>
  1040 + <field>
  1041 + <name>fcno100</name>
  1042 + <type>String</type>
  1043 + <format/>
  1044 + </field>
  1045 + <field>
  1046 + <name>fcno101</name>
  1047 + <type>String</type>
  1048 + <format/>
  1049 + </field>
  1050 + <field>
  1051 + <name>fcno102</name>
  1052 + <type>String</type>
  1053 + <format/>
  1054 + </field>
  1055 + <field>
  1056 + <name>fcno103</name>
  1057 + <type>String</type>
  1058 + <format/>
  1059 + </field>
  1060 + <field>
  1061 + <name>fcno104</name>
  1062 + <type>String</type>
  1063 + <format/>
  1064 + </field>
  1065 + <field>
  1066 + <name>fcno105</name>
  1067 + <type>String</type>
  1068 + <format/>
  1069 + </field>
  1070 + <field>
  1071 + <name>fcno106</name>
  1072 + <type>String</type>
  1073 + <format/>
  1074 + </field>
  1075 + <field>
  1076 + <name>fcno107</name>
  1077 + <type>String</type>
  1078 + <format/>
  1079 + </field>
  1080 + <field>
  1081 + <name>fcno108</name>
  1082 + <type>String</type>
  1083 + <format/>
  1084 + </field>
  1085 + <field>
  1086 + <name>fcno109</name>
  1087 + <type>String</type>
  1088 + <format/>
  1089 + </field>
  1090 + <field>
  1091 + <name>fcno110</name>
  1092 + <type>String</type>
  1093 + <format/>
  1094 + </field>
  1095 + <field>
  1096 + <name>fcno111</name>
  1097 + <type>String</type>
  1098 + <format/>
  1099 + </field>
  1100 + <field>
  1101 + <name>fcno112</name>
  1102 + <type>String</type>
  1103 + <format/>
  1104 + </field>
  1105 + <field>
  1106 + <name>fcno113</name>
  1107 + <type>String</type>
  1108 + <format/>
  1109 + </field>
  1110 + <field>
  1111 + <name>fcno114</name>
  1112 + <type>String</type>
  1113 + <format/>
  1114 + </field>
  1115 + <field>
  1116 + <name>fcno115</name>
  1117 + <type>String</type>
  1118 + <format/>
  1119 + </field>
  1120 + <field>
  1121 + <name>fcno116</name>
  1122 + <type>String</type>
  1123 + <format/>
  1124 + </field>
  1125 + <field>
  1126 + <name>fcno117</name>
  1127 + <type>String</type>
  1128 + <format/>
  1129 + </field>
  1130 + <field>
  1131 + <name>fcno118</name>
  1132 + <type>String</type>
  1133 + <format/>
  1134 + </field>
  1135 + <field>
  1136 + <name>fcno119</name>
  1137 + <type>String</type>
  1138 + <format/>
  1139 + </field>
  1140 + <field>
  1141 + <name>fcno120</name>
  1142 + <type>String</type>
  1143 + <format/>
  1144 + </field>
  1145 + <field>
  1146 + <name>fcno121</name>
  1147 + <type>String</type>
  1148 + <format/>
  1149 + </field>
  1150 + <field>
  1151 + <name>fcno122</name>
  1152 + <type>String</type>
  1153 + <format/>
  1154 + </field>
  1155 + <field>
  1156 + <name>fcno123</name>
  1157 + <type>String</type>
  1158 + <format/>
  1159 + </field>
  1160 + <field>
  1161 + <name>fcno124</name>
  1162 + <type>String</type>
  1163 + <format/>
  1164 + </field>
  1165 + <field>
  1166 + <name>fcno125</name>
  1167 + <type>String</type>
  1168 + <format/>
  1169 + </field>
  1170 + <field>
  1171 + <name>fcno126</name>
  1172 + <type>String</type>
  1173 + <format/>
  1174 + </field>
  1175 + <field>
  1176 + <name>fcno127</name>
  1177 + <type>String</type>
  1178 + <format/>
  1179 + </field>
  1180 + <field>
  1181 + <name>fcno128</name>
  1182 + <type>String</type>
  1183 + <format/>
  1184 + </field>
  1185 + <field>
  1186 + <name>fcno129</name>
  1187 + <type>String</type>
  1188 + <format/>
  1189 + </field>
  1190 + <field>
  1191 + <name>fcno130</name>
  1192 + <type>String</type>
  1193 + <format/>
  1194 + </field>
  1195 + <field>
  1196 + <name>fcno131</name>
  1197 + <type>String</type>
  1198 + <format/>
  1199 + </field>
  1200 + <field>
  1201 + <name>fcno132</name>
  1202 + <type>String</type>
  1203 + <format/>
  1204 + </field>
  1205 + <field>
  1206 + <name>fcno133</name>
  1207 + <type>String</type>
  1208 + <format/>
  1209 + </field>
  1210 + <field>
  1211 + <name>fcno134</name>
  1212 + <type>String</type>
  1213 + <format/>
  1214 + </field>
  1215 + <field>
  1216 + <name>fcno135</name>
  1217 + <type>String</type>
  1218 + <format/>
  1219 + </field>
  1220 + <field>
  1221 + <name>fcno136</name>
  1222 + <type>String</type>
  1223 + <format/>
  1224 + </field>
  1225 + <field>
  1226 + <name>fcno137</name>
  1227 + <type>String</type>
  1228 + <format/>
  1229 + </field>
  1230 + <field>
  1231 + <name>fcno138</name>
  1232 + <type>String</type>
  1233 + <format/>
  1234 + </field>
  1235 + <field>
  1236 + <name>fcno139</name>
  1237 + <type>String</type>
  1238 + <format/>
  1239 + </field>
  1240 + <field>
  1241 + <name>fcno140</name>
  1242 + <type>String</type>
  1243 + <format/>
  1244 + </field>
  1245 + <field>
  1246 + <name>fcno141</name>
  1247 + <type>String</type>
  1248 + <format/>
  1249 + </field>
  1250 + <field>
  1251 + <name>fcno142</name>
  1252 + <type>String</type>
  1253 + <format/>
  1254 + </field>
  1255 + <field>
  1256 + <name>fcno143</name>
  1257 + <type>String</type>
  1258 + <format/>
  1259 + </field>
  1260 + <field>
  1261 + <name>fcno144</name>
  1262 + <type>String</type>
  1263 + <format/>
  1264 + </field>
  1265 + <field>
  1266 + <name>fcno145</name>
  1267 + <type>String</type>
  1268 + <format/>
  1269 + </field>
  1270 + <field>
  1271 + <name>fcno146</name>
  1272 + <type>String</type>
  1273 + <format/>
  1274 + </field>
  1275 + <field>
  1276 + <name>fcno147</name>
  1277 + <type>String</type>
  1278 + <format/>
  1279 + </field>
  1280 + <field>
  1281 + <name>fcno148</name>
  1282 + <type>String</type>
  1283 + <format/>
  1284 + </field>
  1285 + <field>
  1286 + <name>fcno149</name>
  1287 + <type>String</type>
  1288 + <format/>
  1289 + </field>
  1290 + <field>
  1291 + <name>fcno150</name>
  1292 + <type>String</type>
  1293 + <format/>
  1294 + </field>
  1295 + </fields>
  1296 + <custom>
  1297 + <header_font_name>arial</header_font_name>
  1298 + <header_font_size>10</header_font_size>
  1299 + <header_font_bold>N</header_font_bold>
  1300 + <header_font_italic>N</header_font_italic>
  1301 + <header_font_underline>no</header_font_underline>
  1302 + <header_font_orientation>horizontal</header_font_orientation>
  1303 + <header_font_color>black</header_font_color>
  1304 + <header_background_color>none</header_background_color>
  1305 + <header_row_height>255</header_row_height>
  1306 + <header_alignment>left</header_alignment>
  1307 + <header_image/>
  1308 + <row_font_name>arial</row_font_name>
  1309 + <row_font_size>10</row_font_size>
  1310 + <row_font_color>black</row_font_color>
  1311 + <row_background_color>none</row_background_color>
  1312 + </custom>
  1313 + <cluster_schema/>
  1314 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  1315 + <xloc>692</xloc>
  1316 + <yloc>514</yloc>
  1317 + <draw>Y</draw>
  1318 + </GUI>
  1319 + </step>
  1320 +
  1321 + <step>
  1322 + <name>&#x5217;&#x8f6c;&#x884c;</name>
  1323 + <type>Denormaliser</type>
  1324 + <description/>
  1325 + <distribute>N</distribute>
  1326 + <custom_distribution/>
  1327 + <copies>1</copies>
  1328 + <partitioning>
  1329 + <method>none</method>
  1330 + <schema_name/>
  1331 + </partitioning>
  1332 + <key_field>fcno</key_field>
  1333 + <group>
  1334 + <field>
  1335 + <name>lp</name>
  1336 + </field>
  1337 + </group>
  1338 + <fields>
  1339 + <field>
  1340 + <field_name>all_content</field_name>
  1341 + <key_value>1</key_value>
  1342 + <target_name>fcno1</target_name>
  1343 + <target_type>String</target_type>
  1344 + <target_format/>
  1345 + <target_length>-1</target_length>
  1346 + <target_precision>-1</target_precision>
  1347 + <target_decimal_symbol/>
  1348 + <target_grouping_symbol/>
  1349 + <target_currency_symbol/>
  1350 + <target_null_string/>
  1351 + <target_aggregation_type>-</target_aggregation_type>
  1352 + </field>
  1353 + <field>
  1354 + <field_name>all_content</field_name>
  1355 + <key_value>2</key_value>
  1356 + <target_name>fcno2</target_name>
  1357 + <target_type>String</target_type>
  1358 + <target_format/>
  1359 + <target_length>-1</target_length>
  1360 + <target_precision>-1</target_precision>
  1361 + <target_decimal_symbol/>
  1362 + <target_grouping_symbol/>
  1363 + <target_currency_symbol/>
  1364 + <target_null_string/>
  1365 + <target_aggregation_type>-</target_aggregation_type>
  1366 + </field>
  1367 + <field>
  1368 + <field_name>all_content</field_name>
  1369 + <key_value>3</key_value>
  1370 + <target_name>fcno3</target_name>
  1371 + <target_type>String</target_type>
  1372 + <target_format/>
  1373 + <target_length>-1</target_length>
  1374 + <target_precision>-1</target_precision>
  1375 + <target_decimal_symbol/>
  1376 + <target_grouping_symbol/>
  1377 + <target_currency_symbol/>
  1378 + <target_null_string/>
  1379 + <target_aggregation_type>-</target_aggregation_type>
  1380 + </field>
  1381 + <field>
  1382 + <field_name>all_content</field_name>
  1383 + <key_value>4</key_value>
  1384 + <target_name>fcno4</target_name>
  1385 + <target_type>String</target_type>
  1386 + <target_format/>
  1387 + <target_length>-1</target_length>
  1388 + <target_precision>-1</target_precision>
  1389 + <target_decimal_symbol/>
  1390 + <target_grouping_symbol/>
  1391 + <target_currency_symbol/>
  1392 + <target_null_string/>
  1393 + <target_aggregation_type>-</target_aggregation_type>
  1394 + </field>
  1395 + <field>
  1396 + <field_name>all_content</field_name>
  1397 + <key_value>5</key_value>
  1398 + <target_name>fcno5</target_name>
  1399 + <target_type>String</target_type>
  1400 + <target_format/>
  1401 + <target_length>-1</target_length>
  1402 + <target_precision>-1</target_precision>
  1403 + <target_decimal_symbol/>
  1404 + <target_grouping_symbol/>
  1405 + <target_currency_symbol/>
  1406 + <target_null_string/>
  1407 + <target_aggregation_type>-</target_aggregation_type>
  1408 + </field>
  1409 + <field>
  1410 + <field_name>all_content</field_name>
  1411 + <key_value>6</key_value>
  1412 + <target_name>fcno6</target_name>
  1413 + <target_type>String</target_type>
  1414 + <target_format/>
  1415 + <target_length>-1</target_length>
  1416 + <target_precision>-1</target_precision>
  1417 + <target_decimal_symbol/>
  1418 + <target_grouping_symbol/>
  1419 + <target_currency_symbol/>
  1420 + <target_null_string/>
  1421 + <target_aggregation_type>-</target_aggregation_type>
  1422 + </field>
  1423 + <field>
  1424 + <field_name>all_content</field_name>
  1425 + <key_value>7</key_value>
  1426 + <target_name>fcno7</target_name>
  1427 + <target_type>String</target_type>
  1428 + <target_format/>
  1429 + <target_length>-1</target_length>
  1430 + <target_precision>-1</target_precision>
  1431 + <target_decimal_symbol/>
  1432 + <target_grouping_symbol/>
  1433 + <target_currency_symbol/>
  1434 + <target_null_string/>
  1435 + <target_aggregation_type>-</target_aggregation_type>
  1436 + </field>
  1437 + <field>
  1438 + <field_name>all_content</field_name>
  1439 + <key_value>8</key_value>
  1440 + <target_name>fcno8</target_name>
  1441 + <target_type>String</target_type>
  1442 + <target_format/>
  1443 + <target_length>-1</target_length>
  1444 + <target_precision>-1</target_precision>
  1445 + <target_decimal_symbol/>
  1446 + <target_grouping_symbol/>
  1447 + <target_currency_symbol/>
  1448 + <target_null_string/>
  1449 + <target_aggregation_type>-</target_aggregation_type>
  1450 + </field>
  1451 + <field>
  1452 + <field_name>all_content</field_name>
  1453 + <key_value>9</key_value>
  1454 + <target_name>fcno9</target_name>
  1455 + <target_type>String</target_type>
  1456 + <target_format/>
  1457 + <target_length>-1</target_length>
  1458 + <target_precision>-1</target_precision>
  1459 + <target_decimal_symbol/>
  1460 + <target_grouping_symbol/>
  1461 + <target_currency_symbol/>
  1462 + <target_null_string/>
  1463 + <target_aggregation_type>-</target_aggregation_type>
  1464 + </field>
  1465 + <field>
  1466 + <field_name>all_content</field_name>
  1467 + <key_value>10</key_value>
  1468 + <target_name>fcno10</target_name>
  1469 + <target_type>String</target_type>
  1470 + <target_format/>
  1471 + <target_length>-1</target_length>
  1472 + <target_precision>-1</target_precision>
  1473 + <target_decimal_symbol/>
  1474 + <target_grouping_symbol/>
  1475 + <target_currency_symbol/>
  1476 + <target_null_string/>
  1477 + <target_aggregation_type>-</target_aggregation_type>
  1478 + </field>
  1479 + <field>
  1480 + <field_name>all_content</field_name>
  1481 + <key_value>11</key_value>
  1482 + <target_name>fcno11</target_name>
  1483 + <target_type>String</target_type>
  1484 + <target_format/>
  1485 + <target_length>-1</target_length>
  1486 + <target_precision>-1</target_precision>
  1487 + <target_decimal_symbol/>
  1488 + <target_grouping_symbol/>
  1489 + <target_currency_symbol/>
  1490 + <target_null_string/>
  1491 + <target_aggregation_type>-</target_aggregation_type>
  1492 + </field>
  1493 + <field>
  1494 + <field_name>all_content</field_name>
  1495 + <key_value>12</key_value>
  1496 + <target_name>fcno12</target_name>
  1497 + <target_type>String</target_type>
  1498 + <target_format/>
  1499 + <target_length>-1</target_length>
  1500 + <target_precision>-1</target_precision>
  1501 + <target_decimal_symbol/>
  1502 + <target_grouping_symbol/>
  1503 + <target_currency_symbol/>
  1504 + <target_null_string/>
  1505 + <target_aggregation_type>-</target_aggregation_type>
  1506 + </field>
  1507 + <field>
  1508 + <field_name>all_content</field_name>
  1509 + <key_value>13</key_value>
  1510 + <target_name>fcno13</target_name>
  1511 + <target_type>String</target_type>
  1512 + <target_format/>
  1513 + <target_length>-1</target_length>
  1514 + <target_precision>-1</target_precision>
  1515 + <target_decimal_symbol/>
  1516 + <target_grouping_symbol/>
  1517 + <target_currency_symbol/>
  1518 + <target_null_string/>
  1519 + <target_aggregation_type>-</target_aggregation_type>
  1520 + </field>
  1521 + <field>
  1522 + <field_name>all_content</field_name>
  1523 + <key_value>14</key_value>
  1524 + <target_name>fcno14</target_name>
  1525 + <target_type>String</target_type>
  1526 + <target_format/>
  1527 + <target_length>-1</target_length>
  1528 + <target_precision>-1</target_precision>
  1529 + <target_decimal_symbol/>
  1530 + <target_grouping_symbol/>
  1531 + <target_currency_symbol/>
  1532 + <target_null_string/>
  1533 + <target_aggregation_type>-</target_aggregation_type>
  1534 + </field>
  1535 + <field>
  1536 + <field_name>all_content</field_name>
  1537 + <key_value>15</key_value>
  1538 + <target_name>fcno15</target_name>
  1539 + <target_type>String</target_type>
  1540 + <target_format/>
  1541 + <target_length>-1</target_length>
  1542 + <target_precision>-1</target_precision>
  1543 + <target_decimal_symbol/>
  1544 + <target_grouping_symbol/>
  1545 + <target_currency_symbol/>
  1546 + <target_null_string/>
  1547 + <target_aggregation_type>-</target_aggregation_type>
  1548 + </field>
  1549 + <field>
  1550 + <field_name>all_content</field_name>
  1551 + <key_value>16</key_value>
  1552 + <target_name>fcno16</target_name>
  1553 + <target_type>String</target_type>
  1554 + <target_format/>
  1555 + <target_length>-1</target_length>
  1556 + <target_precision>-1</target_precision>
  1557 + <target_decimal_symbol/>
  1558 + <target_grouping_symbol/>
  1559 + <target_currency_symbol/>
  1560 + <target_null_string/>
  1561 + <target_aggregation_type>-</target_aggregation_type>
  1562 + </field>
  1563 + <field>
  1564 + <field_name>all_content</field_name>
  1565 + <key_value>17</key_value>
  1566 + <target_name>fcno17</target_name>
  1567 + <target_type>String</target_type>
  1568 + <target_format/>
  1569 + <target_length>-1</target_length>
  1570 + <target_precision>-1</target_precision>
  1571 + <target_decimal_symbol/>
  1572 + <target_grouping_symbol/>
  1573 + <target_currency_symbol/>
  1574 + <target_null_string/>
  1575 + <target_aggregation_type>-</target_aggregation_type>
  1576 + </field>
  1577 + <field>
  1578 + <field_name>all_content</field_name>
  1579 + <key_value>18</key_value>
  1580 + <target_name>fcno18</target_name>
  1581 + <target_type>String</target_type>
  1582 + <target_format/>
  1583 + <target_length>-1</target_length>
  1584 + <target_precision>-1</target_precision>
  1585 + <target_decimal_symbol/>
  1586 + <target_grouping_symbol/>
  1587 + <target_currency_symbol/>
  1588 + <target_null_string/>
  1589 + <target_aggregation_type>-</target_aggregation_type>
  1590 + </field>
  1591 + <field>
  1592 + <field_name>all_content</field_name>
  1593 + <key_value>19</key_value>
  1594 + <target_name>fcno19</target_name>
  1595 + <target_type>String</target_type>
  1596 + <target_format/>
  1597 + <target_length>-1</target_length>
  1598 + <target_precision>-1</target_precision>
  1599 + <target_decimal_symbol/>
  1600 + <target_grouping_symbol/>
  1601 + <target_currency_symbol/>
  1602 + <target_null_string/>
  1603 + <target_aggregation_type>-</target_aggregation_type>
  1604 + </field>
  1605 + <field>
  1606 + <field_name>all_content</field_name>
  1607 + <key_value>20</key_value>
  1608 + <target_name>fcno20</target_name>
  1609 + <target_type>String</target_type>
  1610 + <target_format/>
  1611 + <target_length>-1</target_length>
  1612 + <target_precision>-1</target_precision>
  1613 + <target_decimal_symbol/>
  1614 + <target_grouping_symbol/>
  1615 + <target_currency_symbol/>
  1616 + <target_null_string/>
  1617 + <target_aggregation_type>-</target_aggregation_type>
  1618 + </field>
  1619 + <field>
  1620 + <field_name>all_content</field_name>
  1621 + <key_value>21</key_value>
  1622 + <target_name>fcno21</target_name>
  1623 + <target_type>String</target_type>
  1624 + <target_format/>
  1625 + <target_length>-1</target_length>
  1626 + <target_precision>-1</target_precision>
  1627 + <target_decimal_symbol/>
  1628 + <target_grouping_symbol/>
  1629 + <target_currency_symbol/>
  1630 + <target_null_string/>
  1631 + <target_aggregation_type>-</target_aggregation_type>
  1632 + </field>
  1633 + <field>
  1634 + <field_name>all_content</field_name>
  1635 + <key_value>22</key_value>
  1636 + <target_name>fcno22</target_name>
  1637 + <target_type>String</target_type>
  1638 + <target_format/>
  1639 + <target_length>-1</target_length>
  1640 + <target_precision>-1</target_precision>
  1641 + <target_decimal_symbol/>
  1642 + <target_grouping_symbol/>
  1643 + <target_currency_symbol/>
  1644 + <target_null_string/>
  1645 + <target_aggregation_type>-</target_aggregation_type>
  1646 + </field>
  1647 + <field>
  1648 + <field_name>all_content</field_name>
  1649 + <key_value>23</key_value>
  1650 + <target_name>fcno23</target_name>
  1651 + <target_type>String</target_type>
  1652 + <target_format/>
  1653 + <target_length>-1</target_length>
  1654 + <target_precision>-1</target_precision>
  1655 + <target_decimal_symbol/>
  1656 + <target_grouping_symbol/>
  1657 + <target_currency_symbol/>
  1658 + <target_null_string/>
  1659 + <target_aggregation_type>-</target_aggregation_type>
  1660 + </field>
  1661 + <field>
  1662 + <field_name>all_content</field_name>
  1663 + <key_value>24</key_value>
  1664 + <target_name>fcno24</target_name>
  1665 + <target_type>String</target_type>
  1666 + <target_format/>
  1667 + <target_length>-1</target_length>
  1668 + <target_precision>-1</target_precision>
  1669 + <target_decimal_symbol/>
  1670 + <target_grouping_symbol/>
  1671 + <target_currency_symbol/>
  1672 + <target_null_string/>
  1673 + <target_aggregation_type>-</target_aggregation_type>
  1674 + </field>
  1675 + <field>
  1676 + <field_name>all_content</field_name>
  1677 + <key_value>25</key_value>
  1678 + <target_name>fcno25</target_name>
  1679 + <target_type>String</target_type>
  1680 + <target_format/>
  1681 + <target_length>-1</target_length>
  1682 + <target_precision>-1</target_precision>
  1683 + <target_decimal_symbol/>
  1684 + <target_grouping_symbol/>
  1685 + <target_currency_symbol/>
  1686 + <target_null_string/>
  1687 + <target_aggregation_type>-</target_aggregation_type>
  1688 + </field>
  1689 + <field>
  1690 + <field_name>all_content</field_name>
  1691 + <key_value>26</key_value>
  1692 + <target_name>fcno26</target_name>
  1693 + <target_type>String</target_type>
  1694 + <target_format/>
  1695 + <target_length>-1</target_length>
  1696 + <target_precision>-1</target_precision>
  1697 + <target_decimal_symbol/>
  1698 + <target_grouping_symbol/>
  1699 + <target_currency_symbol/>
  1700 + <target_null_string/>
  1701 + <target_aggregation_type>-</target_aggregation_type>
  1702 + </field>
  1703 + <field>
  1704 + <field_name>all_content</field_name>
  1705 + <key_value>27</key_value>
  1706 + <target_name>fcno27</target_name>
  1707 + <target_type>String</target_type>
  1708 + <target_format/>
  1709 + <target_length>-1</target_length>
  1710 + <target_precision>-1</target_precision>
  1711 + <target_decimal_symbol/>
  1712 + <target_grouping_symbol/>
  1713 + <target_currency_symbol/>
  1714 + <target_null_string/>
  1715 + <target_aggregation_type>-</target_aggregation_type>
  1716 + </field>
  1717 + <field>
  1718 + <field_name>all_content</field_name>
  1719 + <key_value>28</key_value>
  1720 + <target_name>fcno28</target_name>
  1721 + <target_type>String</target_type>
  1722 + <target_format/>
  1723 + <target_length>-1</target_length>
  1724 + <target_precision>-1</target_precision>
  1725 + <target_decimal_symbol/>
  1726 + <target_grouping_symbol/>
  1727 + <target_currency_symbol/>
  1728 + <target_null_string/>
  1729 + <target_aggregation_type>-</target_aggregation_type>
  1730 + </field>
  1731 + <field>
  1732 + <field_name>all_content</field_name>
  1733 + <key_value>29</key_value>
  1734 + <target_name>fcno29</target_name>
  1735 + <target_type>String</target_type>
  1736 + <target_format/>
  1737 + <target_length>-1</target_length>
  1738 + <target_precision>-1</target_precision>
  1739 + <target_decimal_symbol/>
  1740 + <target_grouping_symbol/>
  1741 + <target_currency_symbol/>
  1742 + <target_null_string/>
  1743 + <target_aggregation_type>-</target_aggregation_type>
  1744 + </field>
  1745 + <field>
  1746 + <field_name>all_content</field_name>
  1747 + <key_value>30</key_value>
  1748 + <target_name>fcno30</target_name>
  1749 + <target_type>String</target_type>
  1750 + <target_format/>
  1751 + <target_length>-1</target_length>
  1752 + <target_precision>-1</target_precision>
  1753 + <target_decimal_symbol/>
  1754 + <target_grouping_symbol/>
  1755 + <target_currency_symbol/>
  1756 + <target_null_string/>
  1757 + <target_aggregation_type>-</target_aggregation_type>
  1758 + </field>
  1759 + <field>
  1760 + <field_name>all_content</field_name>
  1761 + <key_value>31</key_value>
  1762 + <target_name>fcno31</target_name>
  1763 + <target_type>String</target_type>
  1764 + <target_format/>
  1765 + <target_length>-1</target_length>
  1766 + <target_precision>-1</target_precision>
  1767 + <target_decimal_symbol/>
  1768 + <target_grouping_symbol/>
  1769 + <target_currency_symbol/>
  1770 + <target_null_string/>
  1771 + <target_aggregation_type>-</target_aggregation_type>
  1772 + </field>
  1773 + <field>
  1774 + <field_name>all_content</field_name>
  1775 + <key_value>32</key_value>
  1776 + <target_name>fcno32</target_name>
  1777 + <target_type>String</target_type>
  1778 + <target_format/>
  1779 + <target_length>-1</target_length>
  1780 + <target_precision>-1</target_precision>
  1781 + <target_decimal_symbol/>
  1782 + <target_grouping_symbol/>
  1783 + <target_currency_symbol/>
  1784 + <target_null_string/>
  1785 + <target_aggregation_type>-</target_aggregation_type>
  1786 + </field>
  1787 + <field>
  1788 + <field_name>all_content</field_name>
  1789 + <key_value>33</key_value>
  1790 + <target_name>fcno33</target_name>
  1791 + <target_type>String</target_type>
  1792 + <target_format/>
  1793 + <target_length>-1</target_length>
  1794 + <target_precision>-1</target_precision>
  1795 + <target_decimal_symbol/>
  1796 + <target_grouping_symbol/>
  1797 + <target_currency_symbol/>
  1798 + <target_null_string/>
  1799 + <target_aggregation_type>-</target_aggregation_type>
  1800 + </field>
  1801 + <field>
  1802 + <field_name>all_content</field_name>
  1803 + <key_value>34</key_value>
  1804 + <target_name>fcno34</target_name>
  1805 + <target_type>String</target_type>
  1806 + <target_format/>
  1807 + <target_length>-1</target_length>
  1808 + <target_precision>-1</target_precision>
  1809 + <target_decimal_symbol/>
  1810 + <target_grouping_symbol/>
  1811 + <target_currency_symbol/>
  1812 + <target_null_string/>
  1813 + <target_aggregation_type>-</target_aggregation_type>
  1814 + </field>
  1815 + <field>
  1816 + <field_name>all_content</field_name>
  1817 + <key_value>35</key_value>
  1818 + <target_name>fcno35</target_name>
  1819 + <target_type>String</target_type>
  1820 + <target_format/>
  1821 + <target_length>-1</target_length>
  1822 + <target_precision>-1</target_precision>
  1823 + <target_decimal_symbol/>
  1824 + <target_grouping_symbol/>
  1825 + <target_currency_symbol/>
  1826 + <target_null_string/>
  1827 + <target_aggregation_type>-</target_aggregation_type>
  1828 + </field>
  1829 + <field>
  1830 + <field_name>all_content</field_name>
  1831 + <key_value>36</key_value>
  1832 + <target_name>fcno36</target_name>
  1833 + <target_type>String</target_type>
  1834 + <target_format/>
  1835 + <target_length>-1</target_length>
  1836 + <target_precision>-1</target_precision>
  1837 + <target_decimal_symbol/>
  1838 + <target_grouping_symbol/>
  1839 + <target_currency_symbol/>
  1840 + <target_null_string/>
  1841 + <target_aggregation_type>-</target_aggregation_type>
  1842 + </field>
  1843 + <field>
  1844 + <field_name>all_content</field_name>
  1845 + <key_value>37</key_value>
  1846 + <target_name>fcno37</target_name>
  1847 + <target_type>String</target_type>
  1848 + <target_format/>
  1849 + <target_length>-1</target_length>
  1850 + <target_precision>-1</target_precision>
  1851 + <target_decimal_symbol/>
  1852 + <target_grouping_symbol/>
  1853 + <target_currency_symbol/>
  1854 + <target_null_string/>
  1855 + <target_aggregation_type>-</target_aggregation_type>
  1856 + </field>
  1857 + <field>
  1858 + <field_name>all_content</field_name>
  1859 + <key_value>38</key_value>
  1860 + <target_name>fcno38</target_name>
  1861 + <target_type>String</target_type>
  1862 + <target_format/>
  1863 + <target_length>-1</target_length>
  1864 + <target_precision>-1</target_precision>
  1865 + <target_decimal_symbol/>
  1866 + <target_grouping_symbol/>
  1867 + <target_currency_symbol/>
  1868 + <target_null_string/>
  1869 + <target_aggregation_type>-</target_aggregation_type>
  1870 + </field>
  1871 + <field>
  1872 + <field_name>all_content</field_name>
  1873 + <key_value>39</key_value>
  1874 + <target_name>fcno39</target_name>
  1875 + <target_type>String</target_type>
  1876 + <target_format/>
  1877 + <target_length>-1</target_length>
  1878 + <target_precision>-1</target_precision>
  1879 + <target_decimal_symbol/>
  1880 + <target_grouping_symbol/>
  1881 + <target_currency_symbol/>
  1882 + <target_null_string/>
  1883 + <target_aggregation_type>-</target_aggregation_type>
  1884 + </field>
  1885 + <field>
  1886 + <field_name>all_content</field_name>
  1887 + <key_value>40</key_value>
  1888 + <target_name>fcno40</target_name>
  1889 + <target_type>String</target_type>
  1890 + <target_format/>
  1891 + <target_length>-1</target_length>
  1892 + <target_precision>-1</target_precision>
  1893 + <target_decimal_symbol/>
  1894 + <target_grouping_symbol/>
  1895 + <target_currency_symbol/>
  1896 + <target_null_string/>
  1897 + <target_aggregation_type>-</target_aggregation_type>
  1898 + </field>
  1899 + <field>
  1900 + <field_name>all_content</field_name>
  1901 + <key_value>41</key_value>
  1902 + <target_name>fcno41</target_name>
  1903 + <target_type>String</target_type>
  1904 + <target_format/>
  1905 + <target_length>-1</target_length>
  1906 + <target_precision>-1</target_precision>
  1907 + <target_decimal_symbol/>
  1908 + <target_grouping_symbol/>
  1909 + <target_currency_symbol/>
  1910 + <target_null_string/>
  1911 + <target_aggregation_type>-</target_aggregation_type>
  1912 + </field>
  1913 + <field>
  1914 + <field_name>all_content</field_name>
  1915 + <key_value>42</key_value>
  1916 + <target_name>fcno42</target_name>
  1917 + <target_type>String</target_type>
  1918 + <target_format/>
  1919 + <target_length>-1</target_length>
  1920 + <target_precision>-1</target_precision>
  1921 + <target_decimal_symbol/>
  1922 + <target_grouping_symbol/>
  1923 + <target_currency_symbol/>
  1924 + <target_null_string/>
  1925 + <target_aggregation_type>-</target_aggregation_type>
  1926 + </field>
  1927 + <field>
  1928 + <field_name>all_content</field_name>
  1929 + <key_value>43</key_value>
  1930 + <target_name>fcno43</target_name>
  1931 + <target_type>String</target_type>
  1932 + <target_format/>
  1933 + <target_length>-1</target_length>
  1934 + <target_precision>-1</target_precision>
  1935 + <target_decimal_symbol/>
  1936 + <target_grouping_symbol/>
  1937 + <target_currency_symbol/>
  1938 + <target_null_string/>
  1939 + <target_aggregation_type>-</target_aggregation_type>
  1940 + </field>
  1941 + <field>
  1942 + <field_name>all_content</field_name>
  1943 + <key_value>44</key_value>
  1944 + <target_name>fcno44</target_name>
  1945 + <target_type>String</target_type>
  1946 + <target_format/>
  1947 + <target_length>-1</target_length>
  1948 + <target_precision>-1</target_precision>
  1949 + <target_decimal_symbol/>
  1950 + <target_grouping_symbol/>
  1951 + <target_currency_symbol/>
  1952 + <target_null_string/>
  1953 + <target_aggregation_type>-</target_aggregation_type>
  1954 + </field>
  1955 + <field>
  1956 + <field_name>all_content</field_name>
  1957 + <key_value>45</key_value>
  1958 + <target_name>fcno45</target_name>
  1959 + <target_type>String</target_type>
  1960 + <target_format/>
  1961 + <target_length>-1</target_length>
  1962 + <target_precision>-1</target_precision>
  1963 + <target_decimal_symbol/>
  1964 + <target_grouping_symbol/>
  1965 + <target_currency_symbol/>
  1966 + <target_null_string/>
  1967 + <target_aggregation_type>-</target_aggregation_type>
  1968 + </field>
  1969 + <field>
  1970 + <field_name>all_content</field_name>
  1971 + <key_value>46</key_value>
  1972 + <target_name>fcno46</target_name>
  1973 + <target_type>String</target_type>
  1974 + <target_format/>
  1975 + <target_length>-1</target_length>
  1976 + <target_precision>-1</target_precision>
  1977 + <target_decimal_symbol/>
  1978 + <target_grouping_symbol/>
  1979 + <target_currency_symbol/>
  1980 + <target_null_string/>
  1981 + <target_aggregation_type>-</target_aggregation_type>
  1982 + </field>
  1983 + <field>
  1984 + <field_name>all_content</field_name>
  1985 + <key_value>47</key_value>
  1986 + <target_name>fcno47</target_name>
  1987 + <target_type>String</target_type>
  1988 + <target_format/>
  1989 + <target_length>-1</target_length>
  1990 + <target_precision>-1</target_precision>
  1991 + <target_decimal_symbol/>
  1992 + <target_grouping_symbol/>
  1993 + <target_currency_symbol/>
  1994 + <target_null_string/>
  1995 + <target_aggregation_type>-</target_aggregation_type>
  1996 + </field>
  1997 + <field>
  1998 + <field_name>all_content</field_name>
  1999 + <key_value>48</key_value>
  2000 + <target_name>fcno48</target_name>
  2001 + <target_type>String</target_type>
  2002 + <target_format/>
  2003 + <target_length>-1</target_length>
  2004 + <target_precision>-1</target_precision>
  2005 + <target_decimal_symbol/>
  2006 + <target_grouping_symbol/>
  2007 + <target_currency_symbol/>
  2008 + <target_null_string/>
  2009 + <target_aggregation_type>-</target_aggregation_type>
  2010 + </field>
  2011 + <field>
  2012 + <field_name>all_content</field_name>
  2013 + <key_value>49</key_value>
  2014 + <target_name>fcno49</target_name>
  2015 + <target_type>String</target_type>
  2016 + <target_format/>
  2017 + <target_length>-1</target_length>
  2018 + <target_precision>-1</target_precision>
  2019 + <target_decimal_symbol/>
  2020 + <target_grouping_symbol/>
  2021 + <target_currency_symbol/>
  2022 + <target_null_string/>
  2023 + <target_aggregation_type>-</target_aggregation_type>
  2024 + </field>
  2025 + <field>
  2026 + <field_name>all_content</field_name>
  2027 + <key_value>50</key_value>
  2028 + <target_name>fcno50</target_name>
  2029 + <target_type>String</target_type>
  2030 + <target_format/>
  2031 + <target_length>-1</target_length>
  2032 + <target_precision>-1</target_precision>
  2033 + <target_decimal_symbol/>
  2034 + <target_grouping_symbol/>
  2035 + <target_currency_symbol/>
  2036 + <target_null_string/>
  2037 + <target_aggregation_type>-</target_aggregation_type>
  2038 + </field>
  2039 + <field>
  2040 + <field_name>all_content</field_name>
  2041 + <key_value>51</key_value>
  2042 + <target_name>fcno51</target_name>
  2043 + <target_type>String</target_type>
  2044 + <target_format/>
  2045 + <target_length>-1</target_length>
  2046 + <target_precision>-1</target_precision>
  2047 + <target_decimal_symbol/>
  2048 + <target_grouping_symbol/>
  2049 + <target_currency_symbol/>
  2050 + <target_null_string/>
  2051 + <target_aggregation_type>-</target_aggregation_type>
  2052 + </field>
  2053 + <field>
  2054 + <field_name>all_content</field_name>
  2055 + <key_value>52</key_value>
  2056 + <target_name>fcno52</target_name>
  2057 + <target_type>String</target_type>
  2058 + <target_format/>
  2059 + <target_length>-1</target_length>
  2060 + <target_precision>-1</target_precision>
  2061 + <target_decimal_symbol/>
  2062 + <target_grouping_symbol/>
  2063 + <target_currency_symbol/>
  2064 + <target_null_string/>
  2065 + <target_aggregation_type>-</target_aggregation_type>
  2066 + </field>
  2067 + <field>
  2068 + <field_name>all_content</field_name>
  2069 + <key_value>53</key_value>
  2070 + <target_name>fcno53</target_name>
  2071 + <target_type>String</target_type>
  2072 + <target_format/>
  2073 + <target_length>-1</target_length>
  2074 + <target_precision>-1</target_precision>
  2075 + <target_decimal_symbol/>
  2076 + <target_grouping_symbol/>
  2077 + <target_currency_symbol/>
  2078 + <target_null_string/>
  2079 + <target_aggregation_type>-</target_aggregation_type>
  2080 + </field>
  2081 + <field>
  2082 + <field_name>all_content</field_name>
  2083 + <key_value>54</key_value>
  2084 + <target_name>fcno54</target_name>
  2085 + <target_type>String</target_type>
  2086 + <target_format/>
  2087 + <target_length>-1</target_length>
  2088 + <target_precision>-1</target_precision>
  2089 + <target_decimal_symbol/>
  2090 + <target_grouping_symbol/>
  2091 + <target_currency_symbol/>
  2092 + <target_null_string/>
  2093 + <target_aggregation_type>-</target_aggregation_type>
  2094 + </field>
  2095 + <field>
  2096 + <field_name>all_content</field_name>
  2097 + <key_value>55</key_value>
  2098 + <target_name>fcno55</target_name>
  2099 + <target_type>String</target_type>
  2100 + <target_format/>
  2101 + <target_length>-1</target_length>
  2102 + <target_precision>-1</target_precision>
  2103 + <target_decimal_symbol/>
  2104 + <target_grouping_symbol/>
  2105 + <target_currency_symbol/>
  2106 + <target_null_string/>
  2107 + <target_aggregation_type>-</target_aggregation_type>
  2108 + </field>
  2109 + <field>
  2110 + <field_name>all_content</field_name>
  2111 + <key_value>56</key_value>
  2112 + <target_name>fcno56</target_name>
  2113 + <target_type>String</target_type>
  2114 + <target_format/>
  2115 + <target_length>-1</target_length>
  2116 + <target_precision>-1</target_precision>
  2117 + <target_decimal_symbol/>
  2118 + <target_grouping_symbol/>
  2119 + <target_currency_symbol/>
  2120 + <target_null_string/>
  2121 + <target_aggregation_type>-</target_aggregation_type>
  2122 + </field>
  2123 + <field>
  2124 + <field_name>all_content</field_name>
  2125 + <key_value>57</key_value>
  2126 + <target_name>fcno57</target_name>
  2127 + <target_type>String</target_type>
  2128 + <target_format/>
  2129 + <target_length>-1</target_length>
  2130 + <target_precision>-1</target_precision>
  2131 + <target_decimal_symbol/>
  2132 + <target_grouping_symbol/>
  2133 + <target_currency_symbol/>
  2134 + <target_null_string/>
  2135 + <target_aggregation_type>-</target_aggregation_type>
  2136 + </field>
  2137 + <field>
  2138 + <field_name>all_content</field_name>
  2139 + <key_value>58</key_value>
  2140 + <target_name>fcno58</target_name>
  2141 + <target_type>String</target_type>
  2142 + <target_format/>
  2143 + <target_length>-1</target_length>
  2144 + <target_precision>-1</target_precision>
  2145 + <target_decimal_symbol/>
  2146 + <target_grouping_symbol/>
  2147 + <target_currency_symbol/>
  2148 + <target_null_string/>
  2149 + <target_aggregation_type>-</target_aggregation_type>
  2150 + </field>
  2151 + <field>
  2152 + <field_name>all_content</field_name>
  2153 + <key_value>59</key_value>
  2154 + <target_name>fcno59</target_name>
  2155 + <target_type>String</target_type>
  2156 + <target_format/>
  2157 + <target_length>-1</target_length>
  2158 + <target_precision>-1</target_precision>
  2159 + <target_decimal_symbol/>
  2160 + <target_grouping_symbol/>
  2161 + <target_currency_symbol/>
  2162 + <target_null_string/>
  2163 + <target_aggregation_type>-</target_aggregation_type>
  2164 + </field>
  2165 + <field>
  2166 + <field_name>all_content</field_name>
  2167 + <key_value>60</key_value>
  2168 + <target_name>fcno60</target_name>
  2169 + <target_type>String</target_type>
  2170 + <target_format/>
  2171 + <target_length>-1</target_length>
  2172 + <target_precision>-1</target_precision>
  2173 + <target_decimal_symbol/>
  2174 + <target_grouping_symbol/>
  2175 + <target_currency_symbol/>
  2176 + <target_null_string/>
  2177 + <target_aggregation_type>-</target_aggregation_type>
  2178 + </field>
  2179 + <field>
  2180 + <field_name>all_content</field_name>
  2181 + <key_value>61</key_value>
  2182 + <target_name>fcno61</target_name>
  2183 + <target_type>String</target_type>
  2184 + <target_format/>
  2185 + <target_length>-1</target_length>
  2186 + <target_precision>-1</target_precision>
  2187 + <target_decimal_symbol/>
  2188 + <target_grouping_symbol/>
  2189 + <target_currency_symbol/>
  2190 + <target_null_string/>
  2191 + <target_aggregation_type>-</target_aggregation_type>
  2192 + </field>
  2193 + <field>
  2194 + <field_name>all_content</field_name>
  2195 + <key_value>62</key_value>
  2196 + <target_name>fcno62</target_name>
  2197 + <target_type>String</target_type>
  2198 + <target_format/>
  2199 + <target_length>-1</target_length>
  2200 + <target_precision>-1</target_precision>
  2201 + <target_decimal_symbol/>
  2202 + <target_grouping_symbol/>
  2203 + <target_currency_symbol/>
  2204 + <target_null_string/>
  2205 + <target_aggregation_type>-</target_aggregation_type>
  2206 + </field>
  2207 + <field>
  2208 + <field_name>all_content</field_name>
  2209 + <key_value>63</key_value>
  2210 + <target_name>fcno63</target_name>
  2211 + <target_type>String</target_type>
  2212 + <target_format/>
  2213 + <target_length>-1</target_length>
  2214 + <target_precision>-1</target_precision>
  2215 + <target_decimal_symbol/>
  2216 + <target_grouping_symbol/>
  2217 + <target_currency_symbol/>
  2218 + <target_null_string/>
  2219 + <target_aggregation_type>-</target_aggregation_type>
  2220 + </field>
  2221 + <field>
  2222 + <field_name>all_content</field_name>
  2223 + <key_value>64</key_value>
  2224 + <target_name>fcno64</target_name>
  2225 + <target_type>String</target_type>
  2226 + <target_format/>
  2227 + <target_length>-1</target_length>
  2228 + <target_precision>-1</target_precision>
  2229 + <target_decimal_symbol/>
  2230 + <target_grouping_symbol/>
  2231 + <target_currency_symbol/>
  2232 + <target_null_string/>
  2233 + <target_aggregation_type>-</target_aggregation_type>
  2234 + </field>
  2235 + <field>
  2236 + <field_name>all_content</field_name>
  2237 + <key_value>65</key_value>
  2238 + <target_name>fcno65</target_name>
  2239 + <target_type>String</target_type>
  2240 + <target_format/>
  2241 + <target_length>-1</target_length>
  2242 + <target_precision>-1</target_precision>
  2243 + <target_decimal_symbol/>
  2244 + <target_grouping_symbol/>
  2245 + <target_currency_symbol/>
  2246 + <target_null_string/>
  2247 + <target_aggregation_type>-</target_aggregation_type>
  2248 + </field>
  2249 + <field>
  2250 + <field_name>all_content</field_name>
  2251 + <key_value>66</key_value>
  2252 + <target_name>fcno66</target_name>
  2253 + <target_type>String</target_type>
  2254 + <target_format/>
  2255 + <target_length>-1</target_length>
  2256 + <target_precision>-1</target_precision>
  2257 + <target_decimal_symbol/>
  2258 + <target_grouping_symbol/>
  2259 + <target_currency_symbol/>
  2260 + <target_null_string/>
  2261 + <target_aggregation_type>-</target_aggregation_type>
  2262 + </field>
  2263 + <field>
  2264 + <field_name>all_content</field_name>
  2265 + <key_value>67</key_value>
  2266 + <target_name>fcno67</target_name>
  2267 + <target_type>String</target_type>
  2268 + <target_format/>
  2269 + <target_length>-1</target_length>
  2270 + <target_precision>-1</target_precision>
  2271 + <target_decimal_symbol/>
  2272 + <target_grouping_symbol/>
  2273 + <target_currency_symbol/>
  2274 + <target_null_string/>
  2275 + <target_aggregation_type>-</target_aggregation_type>
  2276 + </field>
  2277 + <field>
  2278 + <field_name>all_content</field_name>
  2279 + <key_value>68</key_value>
  2280 + <target_name>fcno68</target_name>
  2281 + <target_type>String</target_type>
  2282 + <target_format/>
  2283 + <target_length>-1</target_length>
  2284 + <target_precision>-1</target_precision>
  2285 + <target_decimal_symbol/>
  2286 + <target_grouping_symbol/>
  2287 + <target_currency_symbol/>
  2288 + <target_null_string/>
  2289 + <target_aggregation_type>-</target_aggregation_type>
  2290 + </field>
  2291 + <field>
  2292 + <field_name>all_content</field_name>
  2293 + <key_value>69</key_value>
  2294 + <target_name>fcno69</target_name>
  2295 + <target_type>String</target_type>
  2296 + <target_format/>
  2297 + <target_length>-1</target_length>
  2298 + <target_precision>-1</target_precision>
  2299 + <target_decimal_symbol/>
  2300 + <target_grouping_symbol/>
  2301 + <target_currency_symbol/>
  2302 + <target_null_string/>
  2303 + <target_aggregation_type>-</target_aggregation_type>
  2304 + </field>
  2305 + <field>
  2306 + <field_name>all_content</field_name>
  2307 + <key_value>70</key_value>
  2308 + <target_name>fcno70</target_name>
  2309 + <target_type>String</target_type>
  2310 + <target_format/>
  2311 + <target_length>-1</target_length>
  2312 + <target_precision>-1</target_precision>
  2313 + <target_decimal_symbol/>
  2314 + <target_grouping_symbol/>
  2315 + <target_currency_symbol/>
  2316 + <target_null_string/>
  2317 + <target_aggregation_type>-</target_aggregation_type>
  2318 + </field>
  2319 + <field>
  2320 + <field_name>all_content</field_name>
  2321 + <key_value>71</key_value>
  2322 + <target_name>fcno71</target_name>
  2323 + <target_type>String</target_type>
  2324 + <target_format/>
  2325 + <target_length>-1</target_length>
  2326 + <target_precision>-1</target_precision>
  2327 + <target_decimal_symbol/>
  2328 + <target_grouping_symbol/>
  2329 + <target_currency_symbol/>
  2330 + <target_null_string/>
  2331 + <target_aggregation_type>-</target_aggregation_type>
  2332 + </field>
  2333 + <field>
  2334 + <field_name>all_content</field_name>
  2335 + <key_value>72</key_value>
  2336 + <target_name>fcno72</target_name>
  2337 + <target_type>String</target_type>
  2338 + <target_format/>
  2339 + <target_length>-1</target_length>
  2340 + <target_precision>-1</target_precision>
  2341 + <target_decimal_symbol/>
  2342 + <target_grouping_symbol/>
  2343 + <target_currency_symbol/>
  2344 + <target_null_string/>
  2345 + <target_aggregation_type>-</target_aggregation_type>
  2346 + </field>
  2347 + <field>
  2348 + <field_name>all_content</field_name>
  2349 + <key_value>73</key_value>
  2350 + <target_name>fcno73</target_name>
  2351 + <target_type>String</target_type>
  2352 + <target_format/>
  2353 + <target_length>-1</target_length>
  2354 + <target_precision>-1</target_precision>
  2355 + <target_decimal_symbol/>
  2356 + <target_grouping_symbol/>
  2357 + <target_currency_symbol/>
  2358 + <target_null_string/>
  2359 + <target_aggregation_type>-</target_aggregation_type>
  2360 + </field>
  2361 + <field>
  2362 + <field_name>all_content</field_name>
  2363 + <key_value>74</key_value>
  2364 + <target_name>fcno74</target_name>
  2365 + <target_type>String</target_type>
  2366 + <target_format/>
  2367 + <target_length>-1</target_length>
  2368 + <target_precision>-1</target_precision>
  2369 + <target_decimal_symbol/>
  2370 + <target_grouping_symbol/>
  2371 + <target_currency_symbol/>
  2372 + <target_null_string/>
  2373 + <target_aggregation_type>-</target_aggregation_type>
  2374 + </field>
  2375 + <field>
  2376 + <field_name>all_content</field_name>
  2377 + <key_value>75</key_value>
  2378 + <target_name>fcno75</target_name>
  2379 + <target_type>String</target_type>
  2380 + <target_format/>
  2381 + <target_length>-1</target_length>
  2382 + <target_precision>-1</target_precision>
  2383 + <target_decimal_symbol/>
  2384 + <target_grouping_symbol/>
  2385 + <target_currency_symbol/>
  2386 + <target_null_string/>
  2387 + <target_aggregation_type>-</target_aggregation_type>
  2388 + </field>
  2389 + <field>
  2390 + <field_name>all_content</field_name>
  2391 + <key_value>76</key_value>
  2392 + <target_name>fcno76</target_name>
  2393 + <target_type>String</target_type>
  2394 + <target_format/>
  2395 + <target_length>-1</target_length>
  2396 + <target_precision>-1</target_precision>
  2397 + <target_decimal_symbol/>
  2398 + <target_grouping_symbol/>
  2399 + <target_currency_symbol/>
  2400 + <target_null_string/>
  2401 + <target_aggregation_type>-</target_aggregation_type>
  2402 + </field>
  2403 + <field>
  2404 + <field_name>all_content</field_name>
  2405 + <key_value>77</key_value>
  2406 + <target_name>fcno77</target_name>
  2407 + <target_type>String</target_type>
  2408 + <target_format/>
  2409 + <target_length>-1</target_length>
  2410 + <target_precision>-1</target_precision>
  2411 + <target_decimal_symbol/>
  2412 + <target_grouping_symbol/>
  2413 + <target_currency_symbol/>
  2414 + <target_null_string/>
  2415 + <target_aggregation_type>-</target_aggregation_type>
  2416 + </field>
  2417 + <field>
  2418 + <field_name>all_content</field_name>
  2419 + <key_value>78</key_value>
  2420 + <target_name>fcno78</target_name>
  2421 + <target_type>String</target_type>
  2422 + <target_format/>
  2423 + <target_length>-1</target_length>
  2424 + <target_precision>-1</target_precision>
  2425 + <target_decimal_symbol/>
  2426 + <target_grouping_symbol/>
  2427 + <target_currency_symbol/>
  2428 + <target_null_string/>
  2429 + <target_aggregation_type>-</target_aggregation_type>
  2430 + </field>
  2431 + <field>
  2432 + <field_name>all_content</field_name>
  2433 + <key_value>79</key_value>
  2434 + <target_name>fcno79</target_name>
  2435 + <target_type>String</target_type>
  2436 + <target_format/>
  2437 + <target_length>-1</target_length>
  2438 + <target_precision>-1</target_precision>
  2439 + <target_decimal_symbol/>
  2440 + <target_grouping_symbol/>
  2441 + <target_currency_symbol/>
  2442 + <target_null_string/>
  2443 + <target_aggregation_type>-</target_aggregation_type>
  2444 + </field>
  2445 + <field>
  2446 + <field_name>all_content</field_name>
  2447 + <key_value>80</key_value>
  2448 + <target_name>fcno80</target_name>
  2449 + <target_type>String</target_type>
  2450 + <target_format/>
  2451 + <target_length>-1</target_length>
  2452 + <target_precision>-1</target_precision>
  2453 + <target_decimal_symbol/>
  2454 + <target_grouping_symbol/>
  2455 + <target_currency_symbol/>
  2456 + <target_null_string/>
  2457 + <target_aggregation_type>-</target_aggregation_type>
  2458 + </field>
  2459 + <field>
  2460 + <field_name>all_content</field_name>
  2461 + <key_value>81</key_value>
  2462 + <target_name>fcno81</target_name>
  2463 + <target_type>String</target_type>
  2464 + <target_format/>
  2465 + <target_length>-1</target_length>
  2466 + <target_precision>-1</target_precision>
  2467 + <target_decimal_symbol/>
  2468 + <target_grouping_symbol/>
  2469 + <target_currency_symbol/>
  2470 + <target_null_string/>
  2471 + <target_aggregation_type>-</target_aggregation_type>
  2472 + </field>
  2473 + <field>
  2474 + <field_name>all_content</field_name>
  2475 + <key_value>82</key_value>
  2476 + <target_name>fcno82</target_name>
  2477 + <target_type>String</target_type>
  2478 + <target_format/>
  2479 + <target_length>-1</target_length>
  2480 + <target_precision>-1</target_precision>
  2481 + <target_decimal_symbol/>
  2482 + <target_grouping_symbol/>
  2483 + <target_currency_symbol/>
  2484 + <target_null_string/>
  2485 + <target_aggregation_type>-</target_aggregation_type>
  2486 + </field>
  2487 + <field>
  2488 + <field_name>all_content</field_name>
  2489 + <key_value>83</key_value>
  2490 + <target_name>fcno83</target_name>
  2491 + <target_type>String</target_type>
  2492 + <target_format/>
  2493 + <target_length>-1</target_length>
  2494 + <target_precision>-1</target_precision>
  2495 + <target_decimal_symbol/>
  2496 + <target_grouping_symbol/>
  2497 + <target_currency_symbol/>
  2498 + <target_null_string/>
  2499 + <target_aggregation_type>-</target_aggregation_type>
  2500 + </field>
  2501 + <field>
  2502 + <field_name>all_content</field_name>
  2503 + <key_value>84</key_value>
  2504 + <target_name>fcno84</target_name>
  2505 + <target_type>String</target_type>
  2506 + <target_format/>
  2507 + <target_length>-1</target_length>
  2508 + <target_precision>-1</target_precision>
  2509 + <target_decimal_symbol/>
  2510 + <target_grouping_symbol/>
  2511 + <target_currency_symbol/>
  2512 + <target_null_string/>
  2513 + <target_aggregation_type>-</target_aggregation_type>
  2514 + </field>
  2515 + <field>
  2516 + <field_name>all_content</field_name>
  2517 + <key_value>85</key_value>
  2518 + <target_name>fcno85</target_name>
  2519 + <target_type>String</target_type>
  2520 + <target_format/>
  2521 + <target_length>-1</target_length>
  2522 + <target_precision>-1</target_precision>
  2523 + <target_decimal_symbol/>
  2524 + <target_grouping_symbol/>
  2525 + <target_currency_symbol/>
  2526 + <target_null_string/>
  2527 + <target_aggregation_type>-</target_aggregation_type>
  2528 + </field>
  2529 + <field>
  2530 + <field_name>all_content</field_name>
  2531 + <key_value>86</key_value>
  2532 + <target_name>fcno86</target_name>
  2533 + <target_type>String</target_type>
  2534 + <target_format/>
  2535 + <target_length>-1</target_length>
  2536 + <target_precision>-1</target_precision>
  2537 + <target_decimal_symbol/>
  2538 + <target_grouping_symbol/>
  2539 + <target_currency_symbol/>
  2540 + <target_null_string/>
  2541 + <target_aggregation_type>-</target_aggregation_type>
  2542 + </field>
  2543 + <field>
  2544 + <field_name>all_content</field_name>
  2545 + <key_value>87</key_value>
  2546 + <target_name>fcno87</target_name>
  2547 + <target_type>String</target_type>
  2548 + <target_format/>
  2549 + <target_length>-1</target_length>
  2550 + <target_precision>-1</target_precision>
  2551 + <target_decimal_symbol/>
  2552 + <target_grouping_symbol/>
  2553 + <target_currency_symbol/>
  2554 + <target_null_string/>
  2555 + <target_aggregation_type>-</target_aggregation_type>
  2556 + </field>
  2557 + <field>
  2558 + <field_name>all_content</field_name>
  2559 + <key_value>88</key_value>
  2560 + <target_name>fcno88</target_name>
  2561 + <target_type>String</target_type>
  2562 + <target_format/>
  2563 + <target_length>-1</target_length>
  2564 + <target_precision>-1</target_precision>
  2565 + <target_decimal_symbol/>
  2566 + <target_grouping_symbol/>
  2567 + <target_currency_symbol/>
  2568 + <target_null_string/>
  2569 + <target_aggregation_type>-</target_aggregation_type>
  2570 + </field>
  2571 + <field>
  2572 + <field_name>all_content</field_name>
  2573 + <key_value>89</key_value>
  2574 + <target_name>fcno89</target_name>
  2575 + <target_type>String</target_type>
  2576 + <target_format/>
  2577 + <target_length>-1</target_length>
  2578 + <target_precision>-1</target_precision>
  2579 + <target_decimal_symbol/>
  2580 + <target_grouping_symbol/>
  2581 + <target_currency_symbol/>
  2582 + <target_null_string/>
  2583 + <target_aggregation_type>-</target_aggregation_type>
  2584 + </field>
  2585 + <field>
  2586 + <field_name>all_content</field_name>
  2587 + <key_value>90</key_value>
  2588 + <target_name>fcno90</target_name>
  2589 + <target_type>String</target_type>
  2590 + <target_format/>
  2591 + <target_length>-1</target_length>
  2592 + <target_precision>-1</target_precision>
  2593 + <target_decimal_symbol/>
  2594 + <target_grouping_symbol/>
  2595 + <target_currency_symbol/>
  2596 + <target_null_string/>
  2597 + <target_aggregation_type>-</target_aggregation_type>
  2598 + </field>
  2599 + <field>
  2600 + <field_name>all_content</field_name>
  2601 + <key_value>91</key_value>
  2602 + <target_name>fcno91</target_name>
  2603 + <target_type>String</target_type>
  2604 + <target_format/>
  2605 + <target_length>-1</target_length>
  2606 + <target_precision>-1</target_precision>
  2607 + <target_decimal_symbol/>
  2608 + <target_grouping_symbol/>
  2609 + <target_currency_symbol/>
  2610 + <target_null_string/>
  2611 + <target_aggregation_type>-</target_aggregation_type>
  2612 + </field>
  2613 + <field>
  2614 + <field_name>all_content</field_name>
  2615 + <key_value>92</key_value>
  2616 + <target_name>fcno92</target_name>
  2617 + <target_type>String</target_type>
  2618 + <target_format/>
  2619 + <target_length>-1</target_length>
  2620 + <target_precision>-1</target_precision>
  2621 + <target_decimal_symbol/>
  2622 + <target_grouping_symbol/>
  2623 + <target_currency_symbol/>
  2624 + <target_null_string/>
  2625 + <target_aggregation_type>-</target_aggregation_type>
  2626 + </field>
  2627 + <field>
  2628 + <field_name>all_content</field_name>
  2629 + <key_value>93</key_value>
  2630 + <target_name>fcno93</target_name>
  2631 + <target_type>String</target_type>
  2632 + <target_format/>
  2633 + <target_length>-1</target_length>
  2634 + <target_precision>-1</target_precision>
  2635 + <target_decimal_symbol/>
  2636 + <target_grouping_symbol/>
  2637 + <target_currency_symbol/>
  2638 + <target_null_string/>
  2639 + <target_aggregation_type>-</target_aggregation_type>
  2640 + </field>
  2641 + <field>
  2642 + <field_name>all_content</field_name>
  2643 + <key_value>94</key_value>
  2644 + <target_name>fcno94</target_name>
  2645 + <target_type>String</target_type>
  2646 + <target_format/>
  2647 + <target_length>-1</target_length>
  2648 + <target_precision>-1</target_precision>
  2649 + <target_decimal_symbol/>
  2650 + <target_grouping_symbol/>
  2651 + <target_currency_symbol/>
  2652 + <target_null_string/>
  2653 + <target_aggregation_type>-</target_aggregation_type>
  2654 + </field>
  2655 + <field>
  2656 + <field_name>all_content</field_name>
  2657 + <key_value>95</key_value>
  2658 + <target_name>fcno95</target_name>
  2659 + <target_type>String</target_type>
  2660 + <target_format/>
  2661 + <target_length>-1</target_length>
  2662 + <target_precision>-1</target_precision>
  2663 + <target_decimal_symbol/>
  2664 + <target_grouping_symbol/>
  2665 + <target_currency_symbol/>
  2666 + <target_null_string/>
  2667 + <target_aggregation_type>-</target_aggregation_type>
  2668 + </field>
  2669 + <field>
  2670 + <field_name>all_content</field_name>
  2671 + <key_value>96</key_value>
  2672 + <target_name>fcno96</target_name>
  2673 + <target_type>String</target_type>
  2674 + <target_format/>
  2675 + <target_length>-1</target_length>
  2676 + <target_precision>-1</target_precision>
  2677 + <target_decimal_symbol/>
  2678 + <target_grouping_symbol/>
  2679 + <target_currency_symbol/>
  2680 + <target_null_string/>
  2681 + <target_aggregation_type>-</target_aggregation_type>
  2682 + </field>
  2683 + <field>
  2684 + <field_name>all_content</field_name>
  2685 + <key_value>97</key_value>
  2686 + <target_name>fcno97</target_name>
  2687 + <target_type>String</target_type>
  2688 + <target_format/>
  2689 + <target_length>-1</target_length>
  2690 + <target_precision>-1</target_precision>
  2691 + <target_decimal_symbol/>
  2692 + <target_grouping_symbol/>
  2693 + <target_currency_symbol/>
  2694 + <target_null_string/>
  2695 + <target_aggregation_type>-</target_aggregation_type>
  2696 + </field>
  2697 + <field>
  2698 + <field_name>all_content</field_name>
  2699 + <key_value>98</key_value>
  2700 + <target_name>fcno98</target_name>
  2701 + <target_type>String</target_type>
  2702 + <target_format/>
  2703 + <target_length>-1</target_length>
  2704 + <target_precision>-1</target_precision>
  2705 + <target_decimal_symbol/>
  2706 + <target_grouping_symbol/>
  2707 + <target_currency_symbol/>
  2708 + <target_null_string/>
  2709 + <target_aggregation_type>-</target_aggregation_type>
  2710 + </field>
  2711 + <field>
  2712 + <field_name>all_content</field_name>
  2713 + <key_value>99</key_value>
  2714 + <target_name>fcno99</target_name>
  2715 + <target_type>String</target_type>
  2716 + <target_format/>
  2717 + <target_length>-1</target_length>
  2718 + <target_precision>-1</target_precision>
  2719 + <target_decimal_symbol/>
  2720 + <target_grouping_symbol/>
  2721 + <target_currency_symbol/>
  2722 + <target_null_string/>
  2723 + <target_aggregation_type>-</target_aggregation_type>
  2724 + </field>
  2725 + <field>
  2726 + <field_name>all_content</field_name>
  2727 + <key_value>100</key_value>
  2728 + <target_name>fcno100</target_name>
  2729 + <target_type>String</target_type>
  2730 + <target_format/>
  2731 + <target_length>-1</target_length>
  2732 + <target_precision>-1</target_precision>
  2733 + <target_decimal_symbol/>
  2734 + <target_grouping_symbol/>
  2735 + <target_currency_symbol/>
  2736 + <target_null_string/>
  2737 + <target_aggregation_type>-</target_aggregation_type>
  2738 + </field>
  2739 + <field>
  2740 + <field_name>all_content</field_name>
  2741 + <key_value>101</key_value>
  2742 + <target_name>fcno101</target_name>
  2743 + <target_type>String</target_type>
  2744 + <target_format/>
  2745 + <target_length>-1</target_length>
  2746 + <target_precision>-1</target_precision>
  2747 + <target_decimal_symbol/>
  2748 + <target_grouping_symbol/>
  2749 + <target_currency_symbol/>
  2750 + <target_null_string/>
  2751 + <target_aggregation_type>-</target_aggregation_type>
  2752 + </field>
  2753 + <field>
  2754 + <field_name>all_content</field_name>
  2755 + <key_value>102</key_value>
  2756 + <target_name>fcno102</target_name>
  2757 + <target_type>String</target_type>
  2758 + <target_format/>
  2759 + <target_length>-1</target_length>
  2760 + <target_precision>-1</target_precision>
  2761 + <target_decimal_symbol/>
  2762 + <target_grouping_symbol/>
  2763 + <target_currency_symbol/>
  2764 + <target_null_string/>
  2765 + <target_aggregation_type>-</target_aggregation_type>
  2766 + </field>
  2767 + <field>
  2768 + <field_name>all_content</field_name>
  2769 + <key_value>103</key_value>
  2770 + <target_name>fcno103</target_name>
  2771 + <target_type>String</target_type>
  2772 + <target_format/>
  2773 + <target_length>-1</target_length>
  2774 + <target_precision>-1</target_precision>
  2775 + <target_decimal_symbol/>
  2776 + <target_grouping_symbol/>
  2777 + <target_currency_symbol/>
  2778 + <target_null_string/>
  2779 + <target_aggregation_type>-</target_aggregation_type>
  2780 + </field>
  2781 + <field>
  2782 + <field_name>all_content</field_name>
  2783 + <key_value>104</key_value>
  2784 + <target_name>fcno104</target_name>
  2785 + <target_type>String</target_type>
  2786 + <target_format/>
  2787 + <target_length>-1</target_length>
  2788 + <target_precision>-1</target_precision>
  2789 + <target_decimal_symbol/>
  2790 + <target_grouping_symbol/>
  2791 + <target_currency_symbol/>
  2792 + <target_null_string/>
  2793 + <target_aggregation_type>-</target_aggregation_type>
  2794 + </field>
  2795 + <field>
  2796 + <field_name>all_content</field_name>
  2797 + <key_value>105</key_value>
  2798 + <target_name>fcno105</target_name>
  2799 + <target_type>String</target_type>
  2800 + <target_format/>
  2801 + <target_length>-1</target_length>
  2802 + <target_precision>-1</target_precision>
  2803 + <target_decimal_symbol/>
  2804 + <target_grouping_symbol/>
  2805 + <target_currency_symbol/>
  2806 + <target_null_string/>
  2807 + <target_aggregation_type>-</target_aggregation_type>
  2808 + </field>
  2809 + <field>
  2810 + <field_name>all_content</field_name>
  2811 + <key_value>106</key_value>
  2812 + <target_name>fcno106</target_name>
  2813 + <target_type>String</target_type>
  2814 + <target_format/>
  2815 + <target_length>-1</target_length>
  2816 + <target_precision>-1</target_precision>
  2817 + <target_decimal_symbol/>
  2818 + <target_grouping_symbol/>
  2819 + <target_currency_symbol/>
  2820 + <target_null_string/>
  2821 + <target_aggregation_type>-</target_aggregation_type>
  2822 + </field>
  2823 + <field>
  2824 + <field_name>all_content</field_name>
  2825 + <key_value>107</key_value>
  2826 + <target_name>fcno107</target_name>
  2827 + <target_type>String</target_type>
  2828 + <target_format/>
  2829 + <target_length>-1</target_length>
  2830 + <target_precision>-1</target_precision>
  2831 + <target_decimal_symbol/>
  2832 + <target_grouping_symbol/>
  2833 + <target_currency_symbol/>
  2834 + <target_null_string/>
  2835 + <target_aggregation_type>-</target_aggregation_type>
  2836 + </field>
  2837 + <field>
  2838 + <field_name>all_content</field_name>
  2839 + <key_value>108</key_value>
  2840 + <target_name>fcno108</target_name>
  2841 + <target_type>String</target_type>
  2842 + <target_format/>
  2843 + <target_length>-1</target_length>
  2844 + <target_precision>-1</target_precision>
  2845 + <target_decimal_symbol/>
  2846 + <target_grouping_symbol/>
  2847 + <target_currency_symbol/>
  2848 + <target_null_string/>
  2849 + <target_aggregation_type>-</target_aggregation_type>
  2850 + </field>
  2851 + <field>
  2852 + <field_name>all_content</field_name>
  2853 + <key_value>109</key_value>
  2854 + <target_name>fcno109</target_name>
  2855 + <target_type>String</target_type>
  2856 + <target_format/>
  2857 + <target_length>-1</target_length>
  2858 + <target_precision>-1</target_precision>
  2859 + <target_decimal_symbol/>
  2860 + <target_grouping_symbol/>
  2861 + <target_currency_symbol/>
  2862 + <target_null_string/>
  2863 + <target_aggregation_type>-</target_aggregation_type>
  2864 + </field>
  2865 + <field>
  2866 + <field_name>all_content</field_name>
  2867 + <key_value>110</key_value>
  2868 + <target_name>fcno110</target_name>
  2869 + <target_type>String</target_type>
  2870 + <target_format/>
  2871 + <target_length>-1</target_length>
  2872 + <target_precision>-1</target_precision>
  2873 + <target_decimal_symbol/>
  2874 + <target_grouping_symbol/>
  2875 + <target_currency_symbol/>
  2876 + <target_null_string/>
  2877 + <target_aggregation_type>-</target_aggregation_type>
  2878 + </field>
  2879 + <field>
  2880 + <field_name>all_content</field_name>
  2881 + <key_value>111</key_value>
  2882 + <target_name>fcno111</target_name>
  2883 + <target_type>String</target_type>
  2884 + <target_format/>
  2885 + <target_length>-1</target_length>
  2886 + <target_precision>-1</target_precision>
  2887 + <target_decimal_symbol/>
  2888 + <target_grouping_symbol/>
  2889 + <target_currency_symbol/>
  2890 + <target_null_string/>
  2891 + <target_aggregation_type>-</target_aggregation_type>
  2892 + </field>
  2893 + <field>
  2894 + <field_name>all_content</field_name>
  2895 + <key_value>112</key_value>
  2896 + <target_name>fcno112</target_name>
  2897 + <target_type>String</target_type>
  2898 + <target_format/>
  2899 + <target_length>-1</target_length>
  2900 + <target_precision>-1</target_precision>
  2901 + <target_decimal_symbol/>
  2902 + <target_grouping_symbol/>
  2903 + <target_currency_symbol/>
  2904 + <target_null_string/>
  2905 + <target_aggregation_type>-</target_aggregation_type>
  2906 + </field>
  2907 + <field>
  2908 + <field_name>all_content</field_name>
  2909 + <key_value>113</key_value>
  2910 + <target_name>fcno113</target_name>
  2911 + <target_type>String</target_type>
  2912 + <target_format/>
  2913 + <target_length>-1</target_length>
  2914 + <target_precision>-1</target_precision>
  2915 + <target_decimal_symbol/>
  2916 + <target_grouping_symbol/>
  2917 + <target_currency_symbol/>
  2918 + <target_null_string/>
  2919 + <target_aggregation_type>-</target_aggregation_type>
  2920 + </field>
  2921 + <field>
  2922 + <field_name>all_content</field_name>
  2923 + <key_value>114</key_value>
  2924 + <target_name>fcno114</target_name>
  2925 + <target_type>String</target_type>
  2926 + <target_format/>
  2927 + <target_length>-1</target_length>
  2928 + <target_precision>-1</target_precision>
  2929 + <target_decimal_symbol/>
  2930 + <target_grouping_symbol/>
  2931 + <target_currency_symbol/>
  2932 + <target_null_string/>
  2933 + <target_aggregation_type>-</target_aggregation_type>
  2934 + </field>
  2935 + <field>
  2936 + <field_name>all_content</field_name>
  2937 + <key_value>115</key_value>
  2938 + <target_name>fcno115</target_name>
  2939 + <target_type>String</target_type>
  2940 + <target_format/>
  2941 + <target_length>-1</target_length>
  2942 + <target_precision>-1</target_precision>
  2943 + <target_decimal_symbol/>
  2944 + <target_grouping_symbol/>
  2945 + <target_currency_symbol/>
  2946 + <target_null_string/>
  2947 + <target_aggregation_type>-</target_aggregation_type>
  2948 + </field>
  2949 + <field>
  2950 + <field_name>all_content</field_name>
  2951 + <key_value>116</key_value>
  2952 + <target_name>fcno116</target_name>
  2953 + <target_type>String</target_type>
  2954 + <target_format/>
  2955 + <target_length>-1</target_length>
  2956 + <target_precision>-1</target_precision>
  2957 + <target_decimal_symbol/>
  2958 + <target_grouping_symbol/>
  2959 + <target_currency_symbol/>
  2960 + <target_null_string/>
  2961 + <target_aggregation_type>-</target_aggregation_type>
  2962 + </field>
  2963 + <field>
  2964 + <field_name>all_content</field_name>
  2965 + <key_value>117</key_value>
  2966 + <target_name>fcno117</target_name>
  2967 + <target_type>String</target_type>
  2968 + <target_format/>
  2969 + <target_length>-1</target_length>
  2970 + <target_precision>-1</target_precision>
  2971 + <target_decimal_symbol/>
  2972 + <target_grouping_symbol/>
  2973 + <target_currency_symbol/>
  2974 + <target_null_string/>
  2975 + <target_aggregation_type>-</target_aggregation_type>
  2976 + </field>
  2977 + <field>
  2978 + <field_name>all_content</field_name>
  2979 + <key_value>118</key_value>
  2980 + <target_name>fcno118</target_name>
  2981 + <target_type>String</target_type>
  2982 + <target_format/>
  2983 + <target_length>-1</target_length>
  2984 + <target_precision>-1</target_precision>
  2985 + <target_decimal_symbol/>
  2986 + <target_grouping_symbol/>
  2987 + <target_currency_symbol/>
  2988 + <target_null_string/>
  2989 + <target_aggregation_type>-</target_aggregation_type>
  2990 + </field>
  2991 + <field>
  2992 + <field_name>all_content</field_name>
  2993 + <key_value>119</key_value>
  2994 + <target_name>fcno119</target_name>
  2995 + <target_type>String</target_type>
  2996 + <target_format/>
  2997 + <target_length>-1</target_length>
  2998 + <target_precision>-1</target_precision>
  2999 + <target_decimal_symbol/>
  3000 + <target_grouping_symbol/>
  3001 + <target_currency_symbol/>
  3002 + <target_null_string/>
  3003 + <target_aggregation_type>-</target_aggregation_type>
  3004 + </field>
  3005 + <field>
  3006 + <field_name>all_content</field_name>
  3007 + <key_value>120</key_value>
  3008 + <target_name>fcno120</target_name>
  3009 + <target_type>String</target_type>
  3010 + <target_format/>
  3011 + <target_length>-1</target_length>
  3012 + <target_precision>-1</target_precision>
  3013 + <target_decimal_symbol/>
  3014 + <target_grouping_symbol/>
  3015 + <target_currency_symbol/>
  3016 + <target_null_string/>
  3017 + <target_aggregation_type>-</target_aggregation_type>
  3018 + </field>
  3019 + <field>
  3020 + <field_name>all_content</field_name>
  3021 + <key_value>121</key_value>
  3022 + <target_name>fcno121</target_name>
  3023 + <target_type>String</target_type>
  3024 + <target_format/>
  3025 + <target_length>-1</target_length>
  3026 + <target_precision>-1</target_precision>
  3027 + <target_decimal_symbol/>
  3028 + <target_grouping_symbol/>
  3029 + <target_currency_symbol/>
  3030 + <target_null_string/>
  3031 + <target_aggregation_type>-</target_aggregation_type>
  3032 + </field>
  3033 + <field>
  3034 + <field_name>all_content</field_name>
  3035 + <key_value>122</key_value>
  3036 + <target_name>fcno122</target_name>
  3037 + <target_type>String</target_type>
  3038 + <target_format/>
  3039 + <target_length>-1</target_length>
  3040 + <target_precision>-1</target_precision>
  3041 + <target_decimal_symbol/>
  3042 + <target_grouping_symbol/>
  3043 + <target_currency_symbol/>
  3044 + <target_null_string/>
  3045 + <target_aggregation_type>-</target_aggregation_type>
  3046 + </field>
  3047 + <field>
  3048 + <field_name>all_content</field_name>
  3049 + <key_value>123</key_value>
  3050 + <target_name>fcno123</target_name>
  3051 + <target_type>String</target_type>
  3052 + <target_format/>
  3053 + <target_length>-1</target_length>
  3054 + <target_precision>-1</target_precision>
  3055 + <target_decimal_symbol/>
  3056 + <target_grouping_symbol/>
  3057 + <target_currency_symbol/>
  3058 + <target_null_string/>
  3059 + <target_aggregation_type>-</target_aggregation_type>
  3060 + </field>
  3061 + <field>
  3062 + <field_name>all_content</field_name>
  3063 + <key_value>124</key_value>
  3064 + <target_name>fcno124</target_name>
  3065 + <target_type>String</target_type>
  3066 + <target_format/>
  3067 + <target_length>-1</target_length>
  3068 + <target_precision>-1</target_precision>
  3069 + <target_decimal_symbol/>
  3070 + <target_grouping_symbol/>
  3071 + <target_currency_symbol/>
  3072 + <target_null_string/>
  3073 + <target_aggregation_type>-</target_aggregation_type>
  3074 + </field>
  3075 + <field>
  3076 + <field_name>all_content</field_name>
  3077 + <key_value>125</key_value>
  3078 + <target_name>fcno125</target_name>
  3079 + <target_type>String</target_type>
  3080 + <target_format/>
  3081 + <target_length>-1</target_length>
  3082 + <target_precision>-1</target_precision>
  3083 + <target_decimal_symbol/>
  3084 + <target_grouping_symbol/>
  3085 + <target_currency_symbol/>
  3086 + <target_null_string/>
  3087 + <target_aggregation_type>-</target_aggregation_type>
  3088 + </field>
  3089 + <field>
  3090 + <field_name>all_content</field_name>
  3091 + <key_value>126</key_value>
  3092 + <target_name>fcno126</target_name>
  3093 + <target_type>String</target_type>
  3094 + <target_format/>
  3095 + <target_length>-1</target_length>
  3096 + <target_precision>-1</target_precision>
  3097 + <target_decimal_symbol/>
  3098 + <target_grouping_symbol/>
  3099 + <target_currency_symbol/>
  3100 + <target_null_string/>
  3101 + <target_aggregation_type>-</target_aggregation_type>
  3102 + </field>
  3103 + <field>
  3104 + <field_name>all_content</field_name>
  3105 + <key_value>127</key_value>
  3106 + <target_name>fcno127</target_name>
  3107 + <target_type>String</target_type>
  3108 + <target_format/>
  3109 + <target_length>-1</target_length>
  3110 + <target_precision>-1</target_precision>
  3111 + <target_decimal_symbol/>
  3112 + <target_grouping_symbol/>
  3113 + <target_currency_symbol/>
  3114 + <target_null_string/>
  3115 + <target_aggregation_type>-</target_aggregation_type>
  3116 + </field>
  3117 + <field>
  3118 + <field_name>all_content</field_name>
  3119 + <key_value>128</key_value>
  3120 + <target_name>fcno128</target_name>
  3121 + <target_type>String</target_type>
  3122 + <target_format/>
  3123 + <target_length>-1</target_length>
  3124 + <target_precision>-1</target_precision>
  3125 + <target_decimal_symbol/>
  3126 + <target_grouping_symbol/>
  3127 + <target_currency_symbol/>
  3128 + <target_null_string/>
  3129 + <target_aggregation_type>-</target_aggregation_type>
  3130 + </field>
  3131 + <field>
  3132 + <field_name>all_content</field_name>
  3133 + <key_value>129</key_value>
  3134 + <target_name>fcno129</target_name>
  3135 + <target_type>String</target_type>
  3136 + <target_format/>
  3137 + <target_length>-1</target_length>
  3138 + <target_precision>-1</target_precision>
  3139 + <target_decimal_symbol/>
  3140 + <target_grouping_symbol/>
  3141 + <target_currency_symbol/>
  3142 + <target_null_string/>
  3143 + <target_aggregation_type>-</target_aggregation_type>
  3144 + </field>
  3145 + <field>
  3146 + <field_name>all_content</field_name>
  3147 + <key_value>130</key_value>
  3148 + <target_name>fcno130</target_name>
  3149 + <target_type>String</target_type>
  3150 + <target_format/>
  3151 + <target_length>-1</target_length>
  3152 + <target_precision>-1</target_precision>
  3153 + <target_decimal_symbol/>
  3154 + <target_grouping_symbol/>
  3155 + <target_currency_symbol/>
  3156 + <target_null_string/>
  3157 + <target_aggregation_type>-</target_aggregation_type>
  3158 + </field>
  3159 + <field>
  3160 + <field_name>all_content</field_name>
  3161 + <key_value>131</key_value>
  3162 + <target_name>fcno131</target_name>
  3163 + <target_type>String</target_type>
  3164 + <target_format/>
  3165 + <target_length>-1</target_length>
  3166 + <target_precision>-1</target_precision>
  3167 + <target_decimal_symbol/>
  3168 + <target_grouping_symbol/>
  3169 + <target_currency_symbol/>
  3170 + <target_null_string/>
  3171 + <target_aggregation_type>-</target_aggregation_type>
  3172 + </field>
  3173 + <field>
  3174 + <field_name>all_content</field_name>
  3175 + <key_value>132</key_value>
  3176 + <target_name>fcno132</target_name>
  3177 + <target_type>String</target_type>
  3178 + <target_format/>
  3179 + <target_length>-1</target_length>
  3180 + <target_precision>-1</target_precision>
  3181 + <target_decimal_symbol/>
  3182 + <target_grouping_symbol/>
  3183 + <target_currency_symbol/>
  3184 + <target_null_string/>
  3185 + <target_aggregation_type>-</target_aggregation_type>
  3186 + </field>
  3187 + <field>
  3188 + <field_name>all_content</field_name>
  3189 + <key_value>133</key_value>
  3190 + <target_name>fcno133</target_name>
  3191 + <target_type>String</target_type>
  3192 + <target_format/>
  3193 + <target_length>-1</target_length>
  3194 + <target_precision>-1</target_precision>
  3195 + <target_decimal_symbol/>
  3196 + <target_grouping_symbol/>
  3197 + <target_currency_symbol/>
  3198 + <target_null_string/>
  3199 + <target_aggregation_type>-</target_aggregation_type>
  3200 + </field>
  3201 + <field>
  3202 + <field_name>all_content</field_name>
  3203 + <key_value>134</key_value>
  3204 + <target_name>fcno134</target_name>
  3205 + <target_type>String</target_type>
  3206 + <target_format/>
  3207 + <target_length>-1</target_length>
  3208 + <target_precision>-1</target_precision>
  3209 + <target_decimal_symbol/>
  3210 + <target_grouping_symbol/>
  3211 + <target_currency_symbol/>
  3212 + <target_null_string/>
  3213 + <target_aggregation_type>-</target_aggregation_type>
  3214 + </field>
  3215 + <field>
  3216 + <field_name>all_content</field_name>
  3217 + <key_value>135</key_value>
  3218 + <target_name>fcno135</target_name>
  3219 + <target_type>String</target_type>
  3220 + <target_format/>
  3221 + <target_length>-1</target_length>
  3222 + <target_precision>-1</target_precision>
  3223 + <target_decimal_symbol/>
  3224 + <target_grouping_symbol/>
  3225 + <target_currency_symbol/>
  3226 + <target_null_string/>
  3227 + <target_aggregation_type>-</target_aggregation_type>
  3228 + </field>
  3229 + <field>
  3230 + <field_name>all_content</field_name>
  3231 + <key_value>136</key_value>
  3232 + <target_name>fcno136</target_name>
  3233 + <target_type>String</target_type>
  3234 + <target_format/>
  3235 + <target_length>-1</target_length>
  3236 + <target_precision>-1</target_precision>
  3237 + <target_decimal_symbol/>
  3238 + <target_grouping_symbol/>
  3239 + <target_currency_symbol/>
  3240 + <target_null_string/>
  3241 + <target_aggregation_type>-</target_aggregation_type>
  3242 + </field>
  3243 + <field>
  3244 + <field_name>all_content</field_name>
  3245 + <key_value>137</key_value>
  3246 + <target_name>fcno137</target_name>
  3247 + <target_type>String</target_type>
  3248 + <target_format/>
  3249 + <target_length>-1</target_length>
  3250 + <target_precision>-1</target_precision>
  3251 + <target_decimal_symbol/>
  3252 + <target_grouping_symbol/>
  3253 + <target_currency_symbol/>
  3254 + <target_null_string/>
  3255 + <target_aggregation_type>-</target_aggregation_type>
  3256 + </field>
  3257 + <field>
  3258 + <field_name>all_content</field_name>
  3259 + <key_value>138</key_value>
  3260 + <target_name>fcno138</target_name>
  3261 + <target_type>String</target_type>
  3262 + <target_format/>
  3263 + <target_length>-1</target_length>
  3264 + <target_precision>-1</target_precision>
  3265 + <target_decimal_symbol/>
  3266 + <target_grouping_symbol/>
  3267 + <target_currency_symbol/>
  3268 + <target_null_string/>
  3269 + <target_aggregation_type>-</target_aggregation_type>
  3270 + </field>
  3271 + <field>
  3272 + <field_name>all_content</field_name>
  3273 + <key_value>139</key_value>
  3274 + <target_name>fcno139</target_name>
  3275 + <target_type>String</target_type>
  3276 + <target_format/>
  3277 + <target_length>-1</target_length>
  3278 + <target_precision>-1</target_precision>
  3279 + <target_decimal_symbol/>
  3280 + <target_grouping_symbol/>
  3281 + <target_currency_symbol/>
  3282 + <target_null_string/>
  3283 + <target_aggregation_type>-</target_aggregation_type>
  3284 + </field>
  3285 + <field>
  3286 + <field_name>all_content</field_name>
  3287 + <key_value>140</key_value>
  3288 + <target_name>fcno140</target_name>
  3289 + <target_type>String</target_type>
  3290 + <target_format/>
  3291 + <target_length>-1</target_length>
  3292 + <target_precision>-1</target_precision>
  3293 + <target_decimal_symbol/>
  3294 + <target_grouping_symbol/>
  3295 + <target_currency_symbol/>
  3296 + <target_null_string/>
  3297 + <target_aggregation_type>-</target_aggregation_type>
  3298 + </field>
  3299 + <field>
  3300 + <field_name>all_content</field_name>
  3301 + <key_value>141</key_value>
  3302 + <target_name>fcno141</target_name>
  3303 + <target_type>String</target_type>
  3304 + <target_format/>
  3305 + <target_length>-1</target_length>
  3306 + <target_precision>-1</target_precision>
  3307 + <target_decimal_symbol/>
  3308 + <target_grouping_symbol/>
  3309 + <target_currency_symbol/>
  3310 + <target_null_string/>
  3311 + <target_aggregation_type>-</target_aggregation_type>
  3312 + </field>
  3313 + <field>
  3314 + <field_name>all_content</field_name>
  3315 + <key_value>142</key_value>
  3316 + <target_name>fcno142</target_name>
  3317 + <target_type>String</target_type>
  3318 + <target_format/>
  3319 + <target_length>-1</target_length>
  3320 + <target_precision>-1</target_precision>
  3321 + <target_decimal_symbol/>
  3322 + <target_grouping_symbol/>
  3323 + <target_currency_symbol/>
  3324 + <target_null_string/>
  3325 + <target_aggregation_type>-</target_aggregation_type>
  3326 + </field>
  3327 + <field>
  3328 + <field_name>all_content</field_name>
  3329 + <key_value>143</key_value>
  3330 + <target_name>fcno143</target_name>
  3331 + <target_type>String</target_type>
  3332 + <target_format/>
  3333 + <target_length>-1</target_length>
  3334 + <target_precision>-1</target_precision>
  3335 + <target_decimal_symbol/>
  3336 + <target_grouping_symbol/>
  3337 + <target_currency_symbol/>
  3338 + <target_null_string/>
  3339 + <target_aggregation_type>-</target_aggregation_type>
  3340 + </field>
  3341 + <field>
  3342 + <field_name>all_content</field_name>
  3343 + <key_value>144</key_value>
  3344 + <target_name>fcno144</target_name>
  3345 + <target_type>String</target_type>
  3346 + <target_format/>
  3347 + <target_length>-1</target_length>
  3348 + <target_precision>-1</target_precision>
  3349 + <target_decimal_symbol/>
  3350 + <target_grouping_symbol/>
  3351 + <target_currency_symbol/>
  3352 + <target_null_string/>
  3353 + <target_aggregation_type>-</target_aggregation_type>
  3354 + </field>
  3355 + <field>
  3356 + <field_name>all_content</field_name>
  3357 + <key_value>145</key_value>
  3358 + <target_name>fcno145</target_name>
  3359 + <target_type>String</target_type>
  3360 + <target_format/>
  3361 + <target_length>-1</target_length>
  3362 + <target_precision>-1</target_precision>
  3363 + <target_decimal_symbol/>
  3364 + <target_grouping_symbol/>
  3365 + <target_currency_symbol/>
  3366 + <target_null_string/>
  3367 + <target_aggregation_type>-</target_aggregation_type>
  3368 + </field>
  3369 + <field>
  3370 + <field_name>all_content</field_name>
  3371 + <key_value>146</key_value>
  3372 + <target_name>fcno146</target_name>
  3373 + <target_type>String</target_type>
  3374 + <target_format/>
  3375 + <target_length>-1</target_length>
  3376 + <target_precision>-1</target_precision>
  3377 + <target_decimal_symbol/>
  3378 + <target_grouping_symbol/>
  3379 + <target_currency_symbol/>
  3380 + <target_null_string/>
  3381 + <target_aggregation_type>-</target_aggregation_type>
  3382 + </field>
  3383 + <field>
  3384 + <field_name>all_content</field_name>
  3385 + <key_value>147</key_value>
  3386 + <target_name>fcno147</target_name>
  3387 + <target_type>String</target_type>
  3388 + <target_format/>
  3389 + <target_length>-1</target_length>
  3390 + <target_precision>-1</target_precision>
  3391 + <target_decimal_symbol/>
  3392 + <target_grouping_symbol/>
  3393 + <target_currency_symbol/>
  3394 + <target_null_string/>
  3395 + <target_aggregation_type>-</target_aggregation_type>
  3396 + </field>
  3397 + <field>
  3398 + <field_name>all_content</field_name>
  3399 + <key_value>148</key_value>
  3400 + <target_name>fcno148</target_name>
  3401 + <target_type>String</target_type>
  3402 + <target_format/>
  3403 + <target_length>-1</target_length>
  3404 + <target_precision>-1</target_precision>
  3405 + <target_decimal_symbol/>
  3406 + <target_grouping_symbol/>
  3407 + <target_currency_symbol/>
  3408 + <target_null_string/>
  3409 + <target_aggregation_type>-</target_aggregation_type>
  3410 + </field>
  3411 + <field>
  3412 + <field_name>all_content</field_name>
  3413 + <key_value>149</key_value>
  3414 + <target_name>fcno149</target_name>
  3415 + <target_type>String</target_type>
  3416 + <target_format/>
  3417 + <target_length>-1</target_length>
  3418 + <target_precision>-1</target_precision>
  3419 + <target_decimal_symbol/>
  3420 + <target_grouping_symbol/>
  3421 + <target_currency_symbol/>
  3422 + <target_null_string/>
  3423 + <target_aggregation_type>-</target_aggregation_type>
  3424 + </field>
  3425 + <field>
  3426 + <field_name>all_content</field_name>
  3427 + <key_value>150</key_value>
  3428 + <target_name>fcno150</target_name>
  3429 + <target_type>String</target_type>
  3430 + <target_format/>
  3431 + <target_length>-1</target_length>
  3432 + <target_precision>-1</target_precision>
  3433 + <target_decimal_symbol/>
  3434 + <target_grouping_symbol/>
  3435 + <target_currency_symbol/>
  3436 + <target_null_string/>
  3437 + <target_aggregation_type>-</target_aggregation_type>
  3438 + </field>
  3439 + </fields>
  3440 + <cluster_schema/>
  3441 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  3442 + <xloc>683</xloc>
  3443 + <yloc>184</yloc>
  3444 + <draw>Y</draw>
  3445 + </GUI>
  3446 + </step>
  3447 +
  3448 + <step>
  3449 + <name>&#x53bb;&#x9664;&#x5b57;&#x6bb5;</name>
  3450 + <type>SelectValues</type>
  3451 + <description/>
  3452 + <distribute>N</distribute>
  3453 + <custom_distribution/>
  3454 + <copies>1</copies>
  3455 + <partitioning>
  3456 + <method>none</method>
  3457 + <schema_name/>
  3458 + </partitioning>
  3459 + <fields> <field> <name>lp</name>
  3460 + <rename/>
  3461 + <length>-2</length>
  3462 + <precision>-2</precision>
  3463 + </field> <field> <name>fcno1</name>
  3464 + <rename/>
  3465 + <length>-2</length>
  3466 + <precision>-2</precision>
  3467 + </field> <field> <name>fcno2</name>
  3468 + <rename/>
  3469 + <length>-2</length>
  3470 + <precision>-2</precision>
  3471 + </field> <field> <name>fcno3</name>
  3472 + <rename/>
  3473 + <length>-2</length>
  3474 + <precision>-2</precision>
  3475 + </field> <field> <name>fcno4</name>
  3476 + <rename/>
  3477 + <length>-2</length>
  3478 + <precision>-2</precision>
  3479 + </field> <field> <name>fcno5</name>
  3480 + <rename/>
  3481 + <length>-2</length>
  3482 + <precision>-2</precision>
  3483 + </field> <field> <name>fcno6</name>
  3484 + <rename/>
  3485 + <length>-2</length>
  3486 + <precision>-2</precision>
  3487 + </field> <field> <name>fcno7</name>
  3488 + <rename/>
  3489 + <length>-2</length>
  3490 + <precision>-2</precision>
  3491 + </field> <field> <name>fcno8</name>
  3492 + <rename/>
  3493 + <length>-2</length>
  3494 + <precision>-2</precision>
  3495 + </field> <field> <name>fcno9</name>
  3496 + <rename/>
  3497 + <length>-2</length>
  3498 + <precision>-2</precision>
  3499 + </field> <field> <name>fcno10</name>
  3500 + <rename/>
  3501 + <length>-2</length>
  3502 + <precision>-2</precision>
  3503 + </field> <field> <name>fcno11</name>
  3504 + <rename/>
  3505 + <length>-2</length>
  3506 + <precision>-2</precision>
  3507 + </field> <field> <name>fcno12</name>
  3508 + <rename/>
  3509 + <length>-2</length>
  3510 + <precision>-2</precision>
  3511 + </field> <field> <name>fcno13</name>
  3512 + <rename/>
  3513 + <length>-2</length>
  3514 + <precision>-2</precision>
  3515 + </field> <field> <name>fcno14</name>
  3516 + <rename/>
  3517 + <length>-2</length>
  3518 + <precision>-2</precision>
  3519 + </field> <field> <name>fcno15</name>
  3520 + <rename/>
  3521 + <length>-2</length>
  3522 + <precision>-2</precision>
  3523 + </field> <field> <name>fcno16</name>
  3524 + <rename/>
  3525 + <length>-2</length>
  3526 + <precision>-2</precision>
  3527 + </field> <field> <name>fcno17</name>
  3528 + <rename/>
  3529 + <length>-2</length>
  3530 + <precision>-2</precision>
  3531 + </field> <field> <name>fcno18</name>
  3532 + <rename/>
  3533 + <length>-2</length>
  3534 + <precision>-2</precision>
  3535 + </field> <field> <name>fcno19</name>
  3536 + <rename/>
  3537 + <length>-2</length>
  3538 + <precision>-2</precision>
  3539 + </field> <field> <name>fcno20</name>
  3540 + <rename/>
  3541 + <length>-2</length>
  3542 + <precision>-2</precision>
  3543 + </field> <field> <name>fcno21</name>
  3544 + <rename/>
  3545 + <length>-2</length>
  3546 + <precision>-2</precision>
  3547 + </field> <field> <name>fcno22</name>
  3548 + <rename/>
  3549 + <length>-2</length>
  3550 + <precision>-2</precision>
  3551 + </field> <field> <name>fcno23</name>
  3552 + <rename/>
  3553 + <length>-2</length>
  3554 + <precision>-2</precision>
  3555 + </field> <field> <name>fcno24</name>
  3556 + <rename/>
  3557 + <length>-2</length>
  3558 + <precision>-2</precision>
  3559 + </field> <field> <name>fcno25</name>
  3560 + <rename/>
  3561 + <length>-2</length>
  3562 + <precision>-2</precision>
  3563 + </field> <field> <name>fcno26</name>
  3564 + <rename/>
  3565 + <length>-2</length>
  3566 + <precision>-2</precision>
  3567 + </field> <field> <name>fcno27</name>
  3568 + <rename/>
  3569 + <length>-2</length>
  3570 + <precision>-2</precision>
  3571 + </field> <field> <name>fcno28</name>
  3572 + <rename/>
  3573 + <length>-2</length>
  3574 + <precision>-2</precision>
  3575 + </field> <field> <name>fcno29</name>
  3576 + <rename/>
  3577 + <length>-2</length>
  3578 + <precision>-2</precision>
  3579 + </field> <field> <name>fcno30</name>
  3580 + <rename/>
  3581 + <length>-2</length>
  3582 + <precision>-2</precision>
  3583 + </field> <field> <name>fcno31</name>
  3584 + <rename/>
  3585 + <length>-2</length>
  3586 + <precision>-2</precision>
  3587 + </field> <field> <name>fcno32</name>
  3588 + <rename/>
  3589 + <length>-2</length>
  3590 + <precision>-2</precision>
  3591 + </field> <field> <name>fcno33</name>
  3592 + <rename/>
  3593 + <length>-2</length>
  3594 + <precision>-2</precision>
  3595 + </field> <field> <name>fcno34</name>
  3596 + <rename/>
  3597 + <length>-2</length>
  3598 + <precision>-2</precision>
  3599 + </field> <field> <name>fcno35</name>
  3600 + <rename/>
  3601 + <length>-2</length>
  3602 + <precision>-2</precision>
  3603 + </field> <field> <name>fcno36</name>
  3604 + <rename/>
  3605 + <length>-2</length>
  3606 + <precision>-2</precision>
  3607 + </field> <field> <name>fcno37</name>
  3608 + <rename/>
  3609 + <length>-2</length>
  3610 + <precision>-2</precision>
  3611 + </field> <field> <name>fcno38</name>
  3612 + <rename/>
  3613 + <length>-2</length>
  3614 + <precision>-2</precision>
  3615 + </field> <field> <name>fcno39</name>
  3616 + <rename/>
  3617 + <length>-2</length>
  3618 + <precision>-2</precision>
  3619 + </field> <field> <name>fcno40</name>
  3620 + <rename/>
  3621 + <length>-2</length>
  3622 + <precision>-2</precision>
  3623 + </field> <field> <name>fcno41</name>
  3624 + <rename/>
  3625 + <length>-2</length>
  3626 + <precision>-2</precision>
  3627 + </field> <field> <name>fcno42</name>
  3628 + <rename/>
  3629 + <length>-2</length>
  3630 + <precision>-2</precision>
  3631 + </field> <field> <name>fcno43</name>
  3632 + <rename/>
  3633 + <length>-2</length>
  3634 + <precision>-2</precision>
  3635 + </field> <field> <name>fcno44</name>
  3636 + <rename/>
  3637 + <length>-2</length>
  3638 + <precision>-2</precision>
  3639 + </field> <field> <name>fcno45</name>
  3640 + <rename/>
  3641 + <length>-2</length>
  3642 + <precision>-2</precision>
  3643 + </field> <field> <name>fcno46</name>
  3644 + <rename/>
  3645 + <length>-2</length>
  3646 + <precision>-2</precision>
  3647 + </field> <field> <name>fcno47</name>
  3648 + <rename/>
  3649 + <length>-2</length>
  3650 + <precision>-2</precision>
  3651 + </field> <field> <name>fcno48</name>
  3652 + <rename/>
  3653 + <length>-2</length>
  3654 + <precision>-2</precision>
  3655 + </field> <field> <name>fcno49</name>
  3656 + <rename/>
  3657 + <length>-2</length>
  3658 + <precision>-2</precision>
  3659 + </field> <field> <name>fcno50</name>
  3660 + <rename/>
  3661 + <length>-2</length>
  3662 + <precision>-2</precision>
  3663 + </field> <field> <name>fcno51</name>
  3664 + <rename/>
  3665 + <length>-2</length>
  3666 + <precision>-2</precision>
  3667 + </field> <field> <name>fcno52</name>
  3668 + <rename/>
  3669 + <length>-2</length>
  3670 + <precision>-2</precision>
  3671 + </field> <field> <name>fcno53</name>
  3672 + <rename/>
  3673 + <length>-2</length>
  3674 + <precision>-2</precision>
  3675 + </field> <field> <name>fcno54</name>
  3676 + <rename/>
  3677 + <length>-2</length>
  3678 + <precision>-2</precision>
  3679 + </field> <field> <name>fcno55</name>
  3680 + <rename/>
  3681 + <length>-2</length>
  3682 + <precision>-2</precision>
  3683 + </field> <field> <name>fcno56</name>
  3684 + <rename/>
  3685 + <length>-2</length>
  3686 + <precision>-2</precision>
  3687 + </field> <field> <name>fcno57</name>
  3688 + <rename/>
  3689 + <length>-2</length>
  3690 + <precision>-2</precision>
  3691 + </field> <field> <name>fcno58</name>
  3692 + <rename/>
  3693 + <length>-2</length>
  3694 + <precision>-2</precision>
  3695 + </field> <field> <name>fcno59</name>
  3696 + <rename/>
  3697 + <length>-2</length>
  3698 + <precision>-2</precision>
  3699 + </field> <field> <name>fcno60</name>
  3700 + <rename/>
  3701 + <length>-2</length>
  3702 + <precision>-2</precision>
  3703 + </field> <field> <name>fcno61</name>
  3704 + <rename/>
  3705 + <length>-2</length>
  3706 + <precision>-2</precision>
  3707 + </field> <field> <name>fcno62</name>
  3708 + <rename/>
  3709 + <length>-2</length>
  3710 + <precision>-2</precision>
  3711 + </field> <field> <name>fcno63</name>
  3712 + <rename/>
  3713 + <length>-2</length>
  3714 + <precision>-2</precision>
  3715 + </field> <field> <name>fcno64</name>
  3716 + <rename/>
  3717 + <length>-2</length>
  3718 + <precision>-2</precision>
  3719 + </field> <field> <name>fcno65</name>
  3720 + <rename/>
  3721 + <length>-2</length>
  3722 + <precision>-2</precision>
  3723 + </field> <field> <name>fcno66</name>
  3724 + <rename/>
  3725 + <length>-2</length>
  3726 + <precision>-2</precision>
  3727 + </field> <field> <name>fcno67</name>
  3728 + <rename/>
  3729 + <length>-2</length>
  3730 + <precision>-2</precision>
  3731 + </field> <field> <name>fcno68</name>
  3732 + <rename/>
  3733 + <length>-2</length>
  3734 + <precision>-2</precision>
  3735 + </field> <field> <name>fcno69</name>
  3736 + <rename/>
  3737 + <length>-2</length>
  3738 + <precision>-2</precision>
  3739 + </field> <field> <name>fcno70</name>
  3740 + <rename/>
  3741 + <length>-2</length>
  3742 + <precision>-2</precision>
  3743 + </field> <field> <name>fcno71</name>
  3744 + <rename/>
  3745 + <length>-2</length>
  3746 + <precision>-2</precision>
  3747 + </field> <field> <name>fcno72</name>
  3748 + <rename/>
  3749 + <length>-2</length>
  3750 + <precision>-2</precision>
  3751 + </field> <field> <name>fcno73</name>
  3752 + <rename/>
  3753 + <length>-2</length>
  3754 + <precision>-2</precision>
  3755 + </field> <field> <name>fcno74</name>
  3756 + <rename/>
  3757 + <length>-2</length>
  3758 + <precision>-2</precision>
  3759 + </field> <field> <name>fcno75</name>
  3760 + <rename/>
  3761 + <length>-2</length>
  3762 + <precision>-2</precision>
  3763 + </field> <field> <name>fcno76</name>
  3764 + <rename/>
  3765 + <length>-2</length>
  3766 + <precision>-2</precision>
  3767 + </field> <field> <name>fcno77</name>
  3768 + <rename/>
  3769 + <length>-2</length>
  3770 + <precision>-2</precision>
  3771 + </field> <field> <name>fcno78</name>
  3772 + <rename/>
  3773 + <length>-2</length>
  3774 + <precision>-2</precision>
  3775 + </field> <field> <name>fcno79</name>
  3776 + <rename/>
  3777 + <length>-2</length>
  3778 + <precision>-2</precision>
  3779 + </field> <field> <name>fcno80</name>
  3780 + <rename/>
  3781 + <length>-2</length>
  3782 + <precision>-2</precision>
  3783 + </field> <field> <name>fcno81</name>
  3784 + <rename/>
  3785 + <length>-2</length>
  3786 + <precision>-2</precision>
  3787 + </field> <field> <name>fcno82</name>
  3788 + <rename/>
  3789 + <length>-2</length>
  3790 + <precision>-2</precision>
  3791 + </field> <field> <name>fcno83</name>
  3792 + <rename/>
  3793 + <length>-2</length>
  3794 + <precision>-2</precision>
  3795 + </field> <field> <name>fcno84</name>
  3796 + <rename/>
  3797 + <length>-2</length>
  3798 + <precision>-2</precision>
  3799 + </field> <field> <name>fcno85</name>
  3800 + <rename/>
  3801 + <length>-2</length>
  3802 + <precision>-2</precision>
  3803 + </field> <field> <name>fcno86</name>
  3804 + <rename/>
  3805 + <length>-2</length>
  3806 + <precision>-2</precision>
  3807 + </field> <field> <name>fcno87</name>
  3808 + <rename/>
  3809 + <length>-2</length>
  3810 + <precision>-2</precision>
  3811 + </field> <field> <name>fcno88</name>
  3812 + <rename/>
  3813 + <length>-2</length>
  3814 + <precision>-2</precision>
  3815 + </field> <field> <name>fcno89</name>
  3816 + <rename/>
  3817 + <length>-2</length>
  3818 + <precision>-2</precision>
  3819 + </field> <field> <name>fcno90</name>
  3820 + <rename/>
  3821 + <length>-2</length>
  3822 + <precision>-2</precision>
  3823 + </field> <field> <name>fcno91</name>
  3824 + <rename/>
  3825 + <length>-2</length>
  3826 + <precision>-2</precision>
  3827 + </field> <field> <name>fcno92</name>
  3828 + <rename/>
  3829 + <length>-2</length>
  3830 + <precision>-2</precision>
  3831 + </field> <field> <name>fcno93</name>
  3832 + <rename/>
  3833 + <length>-2</length>
  3834 + <precision>-2</precision>
  3835 + </field> <field> <name>fcno94</name>
  3836 + <rename/>
  3837 + <length>-2</length>
  3838 + <precision>-2</precision>
  3839 + </field> <field> <name>fcno95</name>
  3840 + <rename/>
  3841 + <length>-2</length>
  3842 + <precision>-2</precision>
  3843 + </field> <field> <name>fcno96</name>
  3844 + <rename/>
  3845 + <length>-2</length>
  3846 + <precision>-2</precision>
  3847 + </field> <field> <name>fcno97</name>
  3848 + <rename/>
  3849 + <length>-2</length>
  3850 + <precision>-2</precision>
  3851 + </field> <field> <name>fcno98</name>
  3852 + <rename/>
  3853 + <length>-2</length>
  3854 + <precision>-2</precision>
  3855 + </field> <field> <name>fcno99</name>
  3856 + <rename/>
  3857 + <length>-2</length>
  3858 + <precision>-2</precision>
  3859 + </field> <field> <name>fcno100</name>
  3860 + <rename/>
  3861 + <length>-2</length>
  3862 + <precision>-2</precision>
  3863 + </field> <field> <name>fcno101</name>
  3864 + <rename/>
  3865 + <length>-2</length>
  3866 + <precision>-2</precision>
  3867 + </field> <field> <name>fcno102</name>
  3868 + <rename/>
  3869 + <length>-2</length>
  3870 + <precision>-2</precision>
  3871 + </field> <field> <name>fcno103</name>
  3872 + <rename/>
  3873 + <length>-2</length>
  3874 + <precision>-2</precision>
  3875 + </field> <field> <name>fcno104</name>
  3876 + <rename/>
  3877 + <length>-2</length>
  3878 + <precision>-2</precision>
  3879 + </field> <field> <name>fcno105</name>
  3880 + <rename/>
  3881 + <length>-2</length>
  3882 + <precision>-2</precision>
  3883 + </field> <field> <name>fcno106</name>
  3884 + <rename/>
  3885 + <length>-2</length>
  3886 + <precision>-2</precision>
  3887 + </field> <field> <name>fcno107</name>
  3888 + <rename/>
  3889 + <length>-2</length>
  3890 + <precision>-2</precision>
  3891 + </field> <field> <name>fcno108</name>
  3892 + <rename/>
  3893 + <length>-2</length>
  3894 + <precision>-2</precision>
  3895 + </field> <field> <name>fcno109</name>
  3896 + <rename/>
  3897 + <length>-2</length>
  3898 + <precision>-2</precision>
  3899 + </field> <field> <name>fcno110</name>
  3900 + <rename/>
  3901 + <length>-2</length>
  3902 + <precision>-2</precision>
  3903 + </field> <field> <name>fcno111</name>
  3904 + <rename/>
  3905 + <length>-2</length>
  3906 + <precision>-2</precision>
  3907 + </field> <field> <name>fcno112</name>
  3908 + <rename/>
  3909 + <length>-2</length>
  3910 + <precision>-2</precision>
  3911 + </field> <field> <name>fcno113</name>
  3912 + <rename/>
  3913 + <length>-2</length>
  3914 + <precision>-2</precision>
  3915 + </field> <field> <name>fcno114</name>
  3916 + <rename/>
  3917 + <length>-2</length>
  3918 + <precision>-2</precision>
  3919 + </field> <field> <name>fcno115</name>
  3920 + <rename/>
  3921 + <length>-2</length>
  3922 + <precision>-2</precision>
  3923 + </field> <field> <name>fcno116</name>
  3924 + <rename/>
  3925 + <length>-2</length>
  3926 + <precision>-2</precision>
  3927 + </field> <field> <name>fcno117</name>
  3928 + <rename/>
  3929 + <length>-2</length>
  3930 + <precision>-2</precision>
  3931 + </field> <field> <name>fcno118</name>
  3932 + <rename/>
  3933 + <length>-2</length>
  3934 + <precision>-2</precision>
  3935 + </field> <field> <name>fcno119</name>
  3936 + <rename/>
  3937 + <length>-2</length>
  3938 + <precision>-2</precision>
  3939 + </field> <field> <name>fcno120</name>
  3940 + <rename/>
  3941 + <length>-2</length>
  3942 + <precision>-2</precision>
  3943 + </field> <field> <name>fcno121</name>
  3944 + <rename/>
  3945 + <length>-2</length>
  3946 + <precision>-2</precision>
  3947 + </field> <field> <name>fcno122</name>
  3948 + <rename/>
  3949 + <length>-2</length>
  3950 + <precision>-2</precision>
  3951 + </field> <field> <name>fcno123</name>
  3952 + <rename/>
  3953 + <length>-2</length>
  3954 + <precision>-2</precision>
  3955 + </field> <field> <name>fcno124</name>
  3956 + <rename/>
  3957 + <length>-2</length>
  3958 + <precision>-2</precision>
  3959 + </field> <field> <name>fcno125</name>
  3960 + <rename/>
  3961 + <length>-2</length>
  3962 + <precision>-2</precision>
  3963 + </field> <field> <name>fcno126</name>
  3964 + <rename/>
  3965 + <length>-2</length>
  3966 + <precision>-2</precision>
  3967 + </field> <field> <name>fcno127</name>
  3968 + <rename/>
  3969 + <length>-2</length>
  3970 + <precision>-2</precision>
  3971 + </field> <field> <name>fcno128</name>
  3972 + <rename/>
  3973 + <length>-2</length>
  3974 + <precision>-2</precision>
  3975 + </field> <field> <name>fcno129</name>
  3976 + <rename/>
  3977 + <length>-2</length>
  3978 + <precision>-2</precision>
  3979 + </field> <field> <name>fcno130</name>
  3980 + <rename/>
  3981 + <length>-2</length>
  3982 + <precision>-2</precision>
  3983 + </field> <field> <name>fcno131</name>
  3984 + <rename/>
  3985 + <length>-2</length>
  3986 + <precision>-2</precision>
  3987 + </field> <field> <name>fcno132</name>
  3988 + <rename/>
  3989 + <length>-2</length>
  3990 + <precision>-2</precision>
  3991 + </field> <field> <name>fcno133</name>
  3992 + <rename/>
  3993 + <length>-2</length>
  3994 + <precision>-2</precision>
  3995 + </field> <field> <name>fcno134</name>
  3996 + <rename/>
  3997 + <length>-2</length>
  3998 + <precision>-2</precision>
  3999 + </field> <field> <name>fcno135</name>
  4000 + <rename/>
  4001 + <length>-2</length>
  4002 + <precision>-2</precision>
  4003 + </field> <field> <name>fcno136</name>
  4004 + <rename/>
  4005 + <length>-2</length>
  4006 + <precision>-2</precision>
  4007 + </field> <field> <name>fcno137</name>
  4008 + <rename/>
  4009 + <length>-2</length>
  4010 + <precision>-2</precision>
  4011 + </field> <field> <name>fcno138</name>
  4012 + <rename/>
  4013 + <length>-2</length>
  4014 + <precision>-2</precision>
  4015 + </field> <field> <name>fcno139</name>
  4016 + <rename/>
  4017 + <length>-2</length>
  4018 + <precision>-2</precision>
  4019 + </field> <field> <name>fcno140</name>
  4020 + <rename/>
  4021 + <length>-2</length>
  4022 + <precision>-2</precision>
  4023 + </field> <field> <name>fcno141</name>
  4024 + <rename/>
  4025 + <length>-2</length>
  4026 + <precision>-2</precision>
  4027 + </field> <field> <name>fcno142</name>
  4028 + <rename/>
  4029 + <length>-2</length>
  4030 + <precision>-2</precision>
  4031 + </field> <field> <name>fcno143</name>
  4032 + <rename/>
  4033 + <length>-2</length>
  4034 + <precision>-2</precision>
  4035 + </field> <field> <name>fcno144</name>
  4036 + <rename/>
  4037 + <length>-2</length>
  4038 + <precision>-2</precision>
  4039 + </field> <field> <name>fcno145</name>
  4040 + <rename/>
  4041 + <length>-2</length>
  4042 + <precision>-2</precision>
  4043 + </field> <field> <name>fcno146</name>
  4044 + <rename/>
  4045 + <length>-2</length>
  4046 + <precision>-2</precision>
  4047 + </field> <field> <name>fcno147</name>
  4048 + <rename/>
  4049 + <length>-2</length>
  4050 + <precision>-2</precision>
  4051 + </field> <field> <name>fcno148</name>
  4052 + <rename/>
  4053 + <length>-2</length>
  4054 + <precision>-2</precision>
  4055 + </field> <field> <name>fcno149</name>
  4056 + <rename/>
  4057 + <length>-2</length>
  4058 + <precision>-2</precision>
  4059 + </field> <field> <name>fcno150</name>
  4060 + <rename/>
  4061 + <length>-2</length>
  4062 + <precision>-2</precision>
  4063 + </field> <select_unspecified>N</select_unspecified>
  4064 + </fields> <cluster_schema/>
  4065 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  4066 + <xloc>691</xloc>
  4067 + <yloc>361</yloc>
  4068 + <draw>Y</draw>
  4069 + </GUI>
  4070 + </step>
  4071 +
  4072 + <step>
  4073 + <name>&#x5408;&#x5e76;&#x5185;&#x5bb9;</name>
  4074 + <type>ScriptValueMod</type>
  4075 + <description/>
  4076 + <distribute>Y</distribute>
  4077 + <custom_distribution/>
  4078 + <copies>1</copies>
  4079 + <partitioning>
  4080 + <method>none</method>
  4081 + <schema_name/>
  4082 + </partitioning>
  4083 + <compatible>N</compatible>
  4084 + <optimizationLevel>9</optimizationLevel>
  4085 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  4086 + <jsScript_name>Script 1</jsScript_name>
  4087 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;&#x2f;&#x2f; &#x987a;&#x5e8f;&#xff0c;id,fcsj,jhlc,zdname,bctype,xldir,isfb&#xa;var all_content_array &#x3d; &#x5b;&#x5d;&#x3b;&#xa;var all_content &#x3d; &#x22;&#x22;&#x3b; &#xa;all_content_array.push&#x28;id&#x29;&#x3b;&#xa;all_content_array.push&#x28;fcsj&#x29;&#x3b;&#xa;all_content_array.push&#x28;jhlc&#x29;&#x3b;&#xa;all_content_array.push&#x28;fczdName&#x29;&#x3b;&#xa;all_content_array.push&#x28;bc_type&#x29;&#x3b;&#xa;all_content_array.push&#x28;xl_dir&#x29;&#x3b;&#xa;all_content_array.push&#x28;isfb&#x29;&#x3b;&#xa;all_content_array.push&#x28;qdz_code &#x7c;&#x7c; &#x27;null&#x27;&#x29;&#x3b;&#xa;all_content_array.push&#x28;zdz_code &#x7c;&#x7c; &#x27;null&#x27;&#x29;&#x3b;&#xa;all_content_array.push&#x28;ists&#x29;&#x3b;&#xa;all_content_array.push&#x28;bcsj &#x7c;&#x7c; &#x27;null&#x27;&#x29;&#x3b;&#xa;&#xa;all_content &#x3d; all_content_array.join&#x28;&#x22;,&#x22;&#x29;&#x3b; &#x2f;&#x2f; &#x9017;&#x53f7;&#x5206;&#x9694;</jsScript_script>
  4088 + </jsScript> </jsScripts> <fields> <field> <name>all_content</name>
  4089 + <rename>all_content</rename>
  4090 + <type>String</type>
  4091 + <length>-1</length>
  4092 + <precision>-1</precision>
  4093 + <replace>N</replace>
  4094 + </field> </fields> <cluster_schema/>
  4095 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  4096 + <xloc>441</xloc>
  4097 + <yloc>84</yloc>
  4098 + <draw>Y</draw>
  4099 + </GUI>
  4100 + </step>
  4101 +
  4102 + <step>
  4103 + <name>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</name>
  4104 + <type>GetVariable</type>
  4105 + <description/>
  4106 + <distribute>Y</distribute>
  4107 + <custom_distribution/>
  4108 + <copies>1</copies>
  4109 + <partitioning>
  4110 + <method>none</method>
  4111 + <schema_name/>
  4112 + </partitioning>
  4113 + <fields>
  4114 + <field>
  4115 + <name>xlid_</name>
  4116 + <variable>&#x24;&#x7b;xlid&#x7d;</variable>
  4117 + <type>Integer</type>
  4118 + <format/>
  4119 + <currency/>
  4120 + <decimal/>
  4121 + <group/>
  4122 + <length>-1</length>
  4123 + <precision>-1</precision>
  4124 + <trim_type>none</trim_type>
  4125 + </field>
  4126 + <field>
  4127 + <name>ttid_</name>
  4128 + <variable>&#x24;&#x7b;ttid&#x7d;</variable>
  4129 + <type>Number</type>
  4130 + <format/>
  4131 + <currency/>
  4132 + <decimal/>
  4133 + <group/>
  4134 + <length>-1</length>
  4135 + <precision>-1</precision>
  4136 + <trim_type>none</trim_type>
  4137 + </field>
  4138 + </fields>
  4139 + <cluster_schema/>
  4140 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  4141 + <xloc>45</xloc>
  4142 + <yloc>189</yloc>
  4143 + <draw>Y</draw>
  4144 + </GUI>
  4145 + </step>
  4146 +
  4147 + <step>
  4148 + <name>&#x8868;&#x8f93;&#x5165;</name>
  4149 + <type>TableInput</type>
  4150 + <description/>
  4151 + <distribute>Y</distribute>
  4152 + <custom_distribution/>
  4153 + <copies>1</copies>
  4154 + <partitioning>
  4155 + <method>none</method>
  4156 + <schema_name/>
  4157 + </partitioning>
  4158 + <connection>bus_control_variable</connection>
  4159 + <sql>select &#xa;t.id as id&#xa;, concat&#x28;g.id, &#x27;_&#x27;, g.lp_name&#x29; as lp&#xa;, g.xl as xl&#xa;, qdz_code&#xa;, qdz_name&#xa;, zdz_code&#xa;, zdz_name&#xa;, fcsj&#xa;, jhlc&#xa;, bc_type &#xa;, bcs&#xa;, fcno&#xa;, xl_dir&#xa;, isfb&#xa;, ists&#xa;, bcsj &#xa;from bsth_c_s_ttinfo_detail t left join &#xa;bsth_c_s_gbi g on t.lp &#x3d; g.id &#xa;where &#xa;g.xl &#x3d; &#x3f; and&#xa;t.ttinfo &#x3d; &#x3f; &#xa;order by g.lp_no asc, t.bcs asc</sql>
  4160 + <limit>0</limit>
  4161 + <lookup>&#x83b7;&#x53d6;&#x53d8;&#x91cf;</lookup>
  4162 + <execute_each_row>N</execute_each_row>
  4163 + <variables_active>Y</variables_active>
  4164 + <lazy_conversion_active>N</lazy_conversion_active>
  4165 + <cluster_schema/>
  4166 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  4167 + <xloc>130</xloc>
  4168 + <yloc>85</yloc>
  4169 + <draw>Y</draw>
  4170 + </GUI>
  4171 + </step>
  4172 +
  4173 + <step>
  4174 + <name>&#x8ba1;&#x7b97;&#x53d1;&#x8f66;&#x7ad9;&#x540d;</name>
  4175 + <type>ScriptValueMod</type>
  4176 + <description/>
  4177 + <distribute>Y</distribute>
  4178 + <custom_distribution/>
  4179 + <copies>1</copies>
  4180 + <partitioning>
  4181 + <method>none</method>
  4182 + <schema_name/>
  4183 + </partitioning>
  4184 + <compatible>N</compatible>
  4185 + <optimizationLevel>9</optimizationLevel>
  4186 + <jsScripts> <jsScript> <jsScript_type>0</jsScript_type>
  4187 + <jsScript_name>Script 1</jsScript_name>
  4188 + <jsScript_script>&#x2f;&#x2f;Script here&#xa;&#xa;var fczdName &#x3d; null&#x3b; &#x2f;&#x2f; &#x53d1;&#x8f66;&#x7ad9;&#x70b9;&#x540d;&#x5b57;&#xa;if &#x28;bc_type &#x3d;&#x3d; &#x22;in&#x22;&#x29; &#x7b;&#xa; fczdName &#x3d; &#x22;&#x8fdb;&#x573a;&#x22;&#x3b;&#xa;&#x7d; else if &#x28;bc_type &#x3d;&#x3d; &#x22;out&#x22;&#x29; &#x7b;&#xa; fczdName &#x3d; &#x22;&#x51fa;&#x573a;&#x22;&#x3b;&#xa;&#x7d; else &#x7b;&#xa; fczdName &#x3d; qdz_name&#x3b;&#xa;&#x7d;</jsScript_script>
  4189 + </jsScript> </jsScripts> <fields> <field> <name>fczdName</name>
  4190 + <rename>fczdName</rename>
  4191 + <type>String</type>
  4192 + <length>-1</length>
  4193 + <precision>-1</precision>
  4194 + <replace>N</replace>
  4195 + </field> </fields> <cluster_schema/>
  4196 + <remotesteps> <input> </input> <output> </output> </remotesteps> <GUI>
  4197 + <xloc>282</xloc>
  4198 + <yloc>82</yloc>
  4199 + <draw>Y</draw>
  4200 + </GUI>
  4201 + </step>
  4202 +
  4203 + <step_error_handling>
  4204 + </step_error_handling>
  4205 + <slave-step-copy-partition-distribution>
  4206 +</slave-step-copy-partition-distribution>
  4207 + <slave_transformation>N</slave_transformation>
  4208 +
  4209 +</transformation>
src/main/resources/static/pages/scheduleApp/module/common/dts2/ttinfotable/saTimeTable.js
@@ -24,6 +24,7 @@ angular.module(&#39;ScheduleApp&#39;).factory( @@ -24,6 +24,7 @@ angular.module(&#39;ScheduleApp&#39;).factory(
24 this.isfb = detailInfo && detailInfo.isfb; // 是否分班 24 this.isfb = detailInfo && detailInfo.isfb; // 是否分班
25 this.qdzCode = detailInfo && detailInfo.qdzCode; // 起点站Code 25 this.qdzCode = detailInfo && detailInfo.qdzCode; // 起点站Code
26 this.zdzCode = detailInfo && detailInfo.zdzCode; // 终点站Code 26 this.zdzCode = detailInfo && detailInfo.zdzCode; // 终点站Code
  27 + this.bcsj = detailInfo && detailInfo.bcsj; // 班次历时
27 28
28 // 路牌信息 29 // 路牌信息
29 this.lpId = undefined; // id 30 this.lpId = undefined; // id
@@ -36,8 +37,8 @@ angular.module(&#39;ScheduleApp&#39;).factory( @@ -36,8 +37,8 @@ angular.module(&#39;ScheduleApp&#39;).factory(
36 this.sel = false; // 是否被选中 37 this.sel = false; // 是否被选中
37 38
38 // 其余函数判定的内部保存值 39 // 其余函数判定的内部保存值
39 - this.isCanSel = false;  
40 - this.isValidInfo = false; 40 + this.isCanSel = false; // 是否能被选择
  41 + this.isInValid = false; // 数据是否无效
41 42
42 }; 43 };
43 BcInfo.prototype.canUpdate = function() { // 是否能更新 44 BcInfo.prototype.canUpdate = function() { // 是否能更新
@@ -71,13 +72,15 @@ angular.module(&#39;ScheduleApp&#39;).factory( @@ -71,13 +72,15 @@ angular.module(&#39;ScheduleApp&#39;).factory(
71 }; 72 };
72 BcInfo.prototype.validInfo = function() { // 验证班次信息内容是否正确 73 BcInfo.prototype.validInfo = function() { // 验证班次信息内容是否正确
73 if (this.canSel() && this.ttdid) { 74 if (this.canSel() && this.ttdid) {
74 - if (!this.qdzCode || !this.zdzCode) { // 编码为空判定  
75 - this.isValidInfo = true;  
76 - return true; 75 + if (!this.qdzCode || // 起点站编码为空判定
  76 + !this.zdzCode || // 终点站编码为空判定
  77 + (!this.bcsj && this.bcsj !== 0)) { // 班次历时为空判定
  78 + this.isInValid = true;
  79 + } else {
  80 + this.isInValid = false;
77 } 81 }
78 } else { 82 } else {
79 - this.isValidInfo = false;  
80 - return false; 83 + this.isInValid = false;
81 } 84 }
82 }; 85 };
83 86
src/main/resources/static/pages/scheduleApp/module/common/dts2/ttinfotable/saTimeTableTemplate.html
@@ -362,7 +362,7 @@ @@ -362,7 +362,7 @@
362 ng-dblclick="$saTimeTableCtrl.$$cell_dbclick(rowIndex, colIndex, cell)" 362 ng-dblclick="$saTimeTableCtrl.$$cell_dbclick(rowIndex, colIndex, cell)"
363 ng-class="{ 363 ng-class="{
364 lpName: !cell.ttdid, 364 lpName: !cell.ttdid,
365 - error: cell.isValidInfo, 365 + error: cell.isInValid,
366 active: cell.sel, 366 active: cell.sel,
367 ists: cell.ists, 367 ists: cell.ists,
368 region: cell.bc_type == 'region', 368 region: cell.bc_type == 'region',
src/main/resources/static/pages/scheduleApp/module/common/prj-common-directive.js
@@ -4088,6 +4088,7 @@ angular.module(&#39;ScheduleApp&#39;).factory( @@ -4088,6 +4088,7 @@ angular.module(&#39;ScheduleApp&#39;).factory(
4088 this.isfb = detailInfo && detailInfo.isfb; // 是否分班 4088 this.isfb = detailInfo && detailInfo.isfb; // 是否分班
4089 this.qdzCode = detailInfo && detailInfo.qdzCode; // 起点站Code 4089 this.qdzCode = detailInfo && detailInfo.qdzCode; // 起点站Code
4090 this.zdzCode = detailInfo && detailInfo.zdzCode; // 终点站Code 4090 this.zdzCode = detailInfo && detailInfo.zdzCode; // 终点站Code
  4091 + this.bcsj = detailInfo && detailInfo.bcsj; // 班次历时
4091 4092
4092 // 路牌信息 4093 // 路牌信息
4093 this.lpId = undefined; // id 4094 this.lpId = undefined; // id
@@ -4100,8 +4101,8 @@ angular.module(&#39;ScheduleApp&#39;).factory( @@ -4100,8 +4101,8 @@ angular.module(&#39;ScheduleApp&#39;).factory(
4100 this.sel = false; // 是否被选中 4101 this.sel = false; // 是否被选中
4101 4102
4102 // 其余函数判定的内部保存值 4103 // 其余函数判定的内部保存值
4103 - this.isCanSel = false;  
4104 - this.isValidInfo = false; 4104 + this.isCanSel = false; // 是否能被选择
  4105 + this.isInValid = false; // 数据是否无效
4105 4106
4106 }; 4107 };
4107 BcInfo.prototype.canUpdate = function() { // 是否能更新 4108 BcInfo.prototype.canUpdate = function() { // 是否能更新
@@ -4135,13 +4136,15 @@ angular.module(&#39;ScheduleApp&#39;).factory( @@ -4135,13 +4136,15 @@ angular.module(&#39;ScheduleApp&#39;).factory(
4135 }; 4136 };
4136 BcInfo.prototype.validInfo = function() { // 验证班次信息内容是否正确 4137 BcInfo.prototype.validInfo = function() { // 验证班次信息内容是否正确
4137 if (this.canSel() && this.ttdid) { 4138 if (this.canSel() && this.ttdid) {
4138 - if (!this.qdzCode || !this.zdzCode) { // 编码为空判定  
4139 - this.isValidInfo = true;  
4140 - return true; 4139 + if (!this.qdzCode || // 起点站编码为空判定
  4140 + !this.zdzCode || // 终点站编码为空判定
  4141 + (!this.bcsj && this.bcsj !== 0)) { // 班次历时为空判定
  4142 + this.isInValid = true;
  4143 + } else {
  4144 + this.isInValid = false;
4141 } 4145 }
4142 } else { 4146 } else {
4143 - this.isValidInfo = false;  
4144 - return false; 4147 + this.isInValid = false;
4145 } 4148 }
4146 }; 4149 };
4147 4150
src/main/resources/static/pages/scheduleApp/module/core/ttInfoManage/detailedit/timeTableDetailManage_old.js
@@ -214,6 +214,7 @@ angular.module(&#39;ScheduleApp&#39;).factory( @@ -214,6 +214,7 @@ angular.module(&#39;ScheduleApp&#39;).factory(
214 ttinfodetailIds[index].qdzCode = value.qdzCode || undefined; 214 ttinfodetailIds[index].qdzCode = value.qdzCode || undefined;
215 ttinfodetailIds[index].zdzCode = value.zdzCode || undefined; 215 ttinfodetailIds[index].zdzCode = value.zdzCode || undefined;
216 ttinfodetailIds[index].isfb = value.isFB || undefined; 216 ttinfodetailIds[index].isfb = value.isFB || undefined;
  217 + ttinfodetailIds[index].bcsj = value.bcsj || undefined;
217 218
218 ttinfodetailIds[index].validInfo(); 219 ttinfodetailIds[index].validInfo();
219 220
@@ -637,6 +638,7 @@ angular.module(&#39;ScheduleApp&#39;).controller( @@ -637,6 +638,7 @@ angular.module(&#39;ScheduleApp&#39;).controller(
637 detailInfo.zdzCode = value.zdzCode || undefined; 638 detailInfo.zdzCode = value.zdzCode || undefined;
638 detailInfo.isfb = value.isFB; 639 detailInfo.isfb = value.isFB;
639 detailInfo.ists = value.isTS; 640 detailInfo.ists = value.isTS;
  641 + detailInfo.bcsj = value.bcsj;
640 642
641 detailInfo.validInfo(); 643 detailInfo.validInfo();
642 644
@@ -707,7 +709,7 @@ angular.module(&#39;ScheduleApp&#39;).controller( @@ -707,7 +709,7 @@ angular.module(&#39;ScheduleApp&#39;).controller(
707 reSetTTinfoDetail: function(value) { 709 reSetTTinfoDetail: function(value) {
708 for (var key in this) { 710 for (var key in this) {
709 if (!angular.isFunction(this[key])) { 711 if (!angular.isFunction(this[key])) {
710 - if (this[key] != undefined) { 712 + if (!!this[key]) {
711 value[key] = this[key]; 713 value[key] = this[key];
712 } 714 }
713 } 715 }