Commit 21406aa6228f016ae31bf8d5758b1a69290246f7

Authored by 徐烜
2 parents 765f94fb c049ece8

Update

Showing 26 changed files with 6010 additions and 5442 deletions
src/main/java/com/bsth/controller/realcontrol/FrequentPhrasesController.java
1   -package com.bsth.controller.realcontrol;
2   -
3   -import com.bsth.controller.BaseController;
4   -import com.bsth.entity.realcontrol.FrequentPhrases;
5   -import org.springframework.web.bind.annotation.RequestMapping;
6   -import org.springframework.web.bind.annotation.RestController;
7   -
8   -/**
9   - * Created by panzhao on 2017/9/17.
10   - */
11   -@RestController
12   -@RequestMapping("frequent_phrases")
13   -public class FrequentPhrasesController extends BaseController<FrequentPhrases, Integer>{
14   -
15   -}
  1 +package com.bsth.controller.realcontrol;
  2 +
  3 +import com.bsth.controller.BaseController;
  4 +import com.bsth.entity.realcontrol.FrequentPhrases;
  5 +import org.springframework.web.bind.annotation.RequestMapping;
  6 +import org.springframework.web.bind.annotation.RestController;
  7 +
  8 +/**
  9 + * Created by panzhao on 2017/9/17.
  10 + */
  11 +@RestController
  12 +@RequestMapping("frequent_phrases")
  13 +public class FrequentPhrasesController extends BaseController<FrequentPhrases, Integer>{
  14 +
  15 +}
... ...
src/main/java/com/bsth/controller/traffic/VehicleInoutStopController.java
1   -package com.bsth.controller.traffic;
2   -
3   -import com.bsth.controller.BaseController;
4   -import com.bsth.entity.traffic.VehicleInoutStop;
5   -import org.springframework.web.bind.annotation.RequestMapping;
6   -import org.springframework.web.bind.annotation.RestController;
7   -/**
8   - *
9   - * @author BSTH
10   - *
11   - */
12   -@RestController
13   -@RequestMapping("vehicle_stop")
14   -public class VehicleInoutStopController extends BaseController<VehicleInoutStop,Integer> {
15   -}
  1 +package com.bsth.controller.traffic;
  2 +
  3 +import com.bsth.controller.BaseController;
  4 +import com.bsth.entity.traffic.VehicleInoutStop;
  5 +import org.springframework.web.bind.annotation.RequestMapping;
  6 +import org.springframework.web.bind.annotation.RestController;
  7 +/**
  8 + *
  9 + * @author BSTH
  10 + *
  11 + */
  12 +@RestController
  13 +@RequestMapping("vehicle_stop")
  14 +public class VehicleInoutStopController extends BaseController<VehicleInoutStop,Integer> {
  15 +}
... ...
src/main/java/com/bsth/entity/realcontrol/FrequentPhrases.java
1   -package com.bsth.entity.realcontrol;
2   -
3   -import javax.persistence.Entity;
4   -import javax.persistence.GeneratedValue;
5   -import javax.persistence.Id;
6   -import javax.persistence.Table;
7   -
8   -/**
9   - * 常用短语
10   - * Created by panzhao on 2017/9/17.
11   - */
12   -@Entity
13   -@Table(name = "bsth_c_s_frequent_phrases")
14   -public class FrequentPhrases {
15   -
16   - @Id
17   - @GeneratedValue
18   - private Integer id;
19   -
20   - /**
21   - * 用户名
22   - */
23   - private String userName;
24   -
25   - /**
26   - * 短语
27   - */
28   - private String text;
29   -
30   - public Integer getId() {
31   - return id;
32   - }
33   -
34   - public void setId(Integer id) {
35   - this.id = id;
36   - }
37   -
38   - public String getUserName() {
39   - return userName;
40   - }
41   -
42   - public void setUserName(String userName) {
43   - this.userName = userName;
44   - }
45   -
46   - public String getText() {
47   - return text;
48   - }
49   -
50   - public void setText(String text) {
51   - this.text = text;
52   - }
53   -}
  1 +package com.bsth.entity.realcontrol;
  2 +
  3 +import javax.persistence.Entity;
  4 +import javax.persistence.GeneratedValue;
  5 +import javax.persistence.Id;
  6 +import javax.persistence.Table;
  7 +
  8 +/**
  9 + * 常用短语
  10 + * Created by panzhao on 2017/9/17.
  11 + */
  12 +@Entity
  13 +@Table(name = "bsth_c_s_frequent_phrases")
  14 +public class FrequentPhrases {
  15 +
  16 + @Id
  17 + @GeneratedValue
  18 + private Integer id;
  19 +
  20 + /**
  21 + * 用户名
  22 + */
  23 + private String userName;
  24 +
  25 + /**
  26 + * 短语
  27 + */
  28 + private String text;
  29 +
  30 + public Integer getId() {
  31 + return id;
  32 + }
  33 +
  34 + public void setId(Integer id) {
  35 + this.id = id;
  36 + }
  37 +
  38 + public String getUserName() {
  39 + return userName;
  40 + }
  41 +
  42 + public void setUserName(String userName) {
  43 + this.userName = userName;
  44 + }
  45 +
  46 + public String getText() {
  47 + return text;
  48 + }
  49 +
  50 + public void setText(String text) {
  51 + this.text = text;
  52 + }
  53 +}
... ...
src/main/java/com/bsth/entity/traffic/VehicleInoutStop.java
1   -package com.bsth.entity.traffic;
2   -
3   -import com.bsth.entity.Cars;
4   -import com.bsth.entity.Line;
5   -
6   -import javax.persistence.*;
7   -import java.util.Date;
8   -
9   -/**
10   - *
11   - * @ClassName: VehicleInoutStop(车载上报停靠站信息)
12   - *
13   - * @Description: TODO(线路标准信息)
14   - *
15   - * @Author bsth@zq
16   - *
17   - * @Date 2017-9-18 9:34:39
18   - *
19   - * @Version 公交调度系统BS版 0.1
20   - *
21   - */
22   -@Entity
23   -@Table(name = "bsth_c_shreal")
24   -public class VehicleInoutStop {
25   -
26   - @Id
27   - @GeneratedValue(strategy = GenerationType.IDENTITY)
28   - private Integer id;
29   -
30   - @ManyToOne
31   - private Line line;
32   -
33   - @ManyToOne
34   - private Cars cars;
35   -
36   - // 站点序号
37   - private Integer stop;
38   -
39   - // 营运状态
40   - private Integer serviceState;
41   -
42   - // 上下行
43   - private Integer upDown;
44   -
45   - // 进出站/站内外
46   - private Integer inOutStop;
47   -
48   - // 上报时间
49   - private long reportDate;
50   -
51   - public Integer getId() {
52   - return id;
53   - }
54   -
55   - public void setId(Integer id) {
56   - this.id = id;
57   - }
58   -
59   - public Line getLine() {
60   - return line;
61   - }
62   -
63   - public void setLine(Line line) {
64   - this.line = line;
65   - }
66   -
67   - public Cars getCars() {
68   - return cars;
69   - }
70   -
71   - public void setCars(Cars cars) {
72   - this.cars = cars;
73   - }
74   -
75   - public Integer getStop() {
76   - return stop;
77   - }
78   -
79   - public void setStop(Integer stop) {
80   - this.stop = stop;
81   - }
82   -
83   - public Integer getServiceState() {
84   - return serviceState;
85   - }
86   -
87   - public void setServiceState(Integer serviceState) {
88   - this.serviceState = serviceState;
89   - }
90   -
91   - public Integer getUpDown() {
92   - return upDown;
93   - }
94   -
95   - public void setUpDown(Integer upDown) {
96   - this.upDown = upDown;
97   - }
98   -
99   - public Integer getInOutStop() {
100   - return inOutStop;
101   - }
102   -
103   - public void setInOutStop(Integer inOutStop) {
104   - this.inOutStop = inOutStop;
105   - }
106   -
107   - public long getReportDate() { return reportDate; }
108   -
109   - public void setReportDate(long reportDate) { this.reportDate = reportDate; }
110   -}
  1 +package com.bsth.entity.traffic;
  2 +
  3 +import com.bsth.entity.Cars;
  4 +import com.bsth.entity.Line;
  5 +
  6 +import javax.persistence.*;
  7 +import java.util.Date;
  8 +
  9 +/**
  10 + *
  11 + * @ClassName: VehicleInoutStop(车载上报停靠站信息)
  12 + *
  13 + * @Description: TODO(线路标准信息)
  14 + *
  15 + * @Author bsth@zq
  16 + *
  17 + * @Date 2017-9-18 9:34:39
  18 + *
  19 + * @Version 公交调度系统BS版 0.1
  20 + *
  21 + */
  22 +@Entity
  23 +@Table(name = "bsth_c_shreal")
  24 +public class VehicleInoutStop {
  25 +
  26 + @Id
  27 + @GeneratedValue(strategy = GenerationType.IDENTITY)
  28 + private Integer id;
  29 +
  30 + @ManyToOne
  31 + private Line line;
  32 +
  33 + @ManyToOne
  34 + private Cars cars;
  35 +
  36 + // 站点序号
  37 + private Integer stop;
  38 +
  39 + // 营运状态
  40 + private Integer serviceState;
  41 +
  42 + // 上下行
  43 + private Integer upDown;
  44 +
  45 + // 进出站/站内外
  46 + private Integer inOutStop;
  47 +
  48 + // 上报时间
  49 + private long reportDate;
  50 +
  51 + public Integer getId() {
  52 + return id;
  53 + }
  54 +
  55 + public void setId(Integer id) {
  56 + this.id = id;
  57 + }
  58 +
  59 + public Line getLine() {
  60 + return line;
  61 + }
  62 +
  63 + public void setLine(Line line) {
  64 + this.line = line;
  65 + }
  66 +
  67 + public Cars getCars() {
  68 + return cars;
  69 + }
  70 +
  71 + public void setCars(Cars cars) {
  72 + this.cars = cars;
  73 + }
  74 +
  75 + public Integer getStop() {
  76 + return stop;
  77 + }
  78 +
  79 + public void setStop(Integer stop) {
  80 + this.stop = stop;
  81 + }
  82 +
  83 + public Integer getServiceState() {
  84 + return serviceState;
  85 + }
  86 +
  87 + public void setServiceState(Integer serviceState) {
  88 + this.serviceState = serviceState;
  89 + }
  90 +
  91 + public Integer getUpDown() {
  92 + return upDown;
  93 + }
  94 +
  95 + public void setUpDown(Integer upDown) {
  96 + this.upDown = upDown;
  97 + }
  98 +
  99 + public Integer getInOutStop() {
  100 + return inOutStop;
  101 + }
  102 +
  103 + public void setInOutStop(Integer inOutStop) {
  104 + this.inOutStop = inOutStop;
  105 + }
  106 +
  107 + public long getReportDate() { return reportDate; }
  108 +
  109 + public void setReportDate(long reportDate) { this.reportDate = reportDate; }
  110 +}
... ...
src/main/java/com/bsth/repository/realcontrol/FrequentPhrasesRepository.java
1   -package com.bsth.repository.realcontrol;
2   -
3   -import com.bsth.entity.realcontrol.FrequentPhrases;
4   -import com.bsth.repository.BaseRepository;
5   -import org.springframework.stereotype.Repository;
6   -
7   -/**
8   - * Created by panzhao on 2017/9/17.
9   - */
10   -@Repository
11   -public interface FrequentPhrasesRepository extends BaseRepository<FrequentPhrases, Integer> {
12   -}
  1 +package com.bsth.repository.realcontrol;
  2 +
  3 +import com.bsth.entity.realcontrol.FrequentPhrases;
  4 +import com.bsth.repository.BaseRepository;
  5 +import org.springframework.stereotype.Repository;
  6 +
  7 +/**
  8 + * Created by panzhao on 2017/9/17.
  9 + */
  10 +@Repository
  11 +public interface FrequentPhrasesRepository extends BaseRepository<FrequentPhrases, Integer> {
  12 +}
... ...
src/main/java/com/bsth/repository/traffic/VehicleInoutStopRepository.java
1   -package com.bsth.repository.traffic;
2   -
3   -import com.bsth.entity.traffic.VehicleInoutStop;
4   -import com.bsth.repository.BaseRepository;
5   -
6   -public interface VehicleInoutStopRepository extends BaseRepository<VehicleInoutStop, Integer> {
7   -}
  1 +package com.bsth.repository.traffic;
  2 +
  3 +import com.bsth.entity.traffic.VehicleInoutStop;
  4 +import com.bsth.repository.BaseRepository;
  5 +
  6 +public interface VehicleInoutStopRepository extends BaseRepository<VehicleInoutStop, Integer> {
  7 +}
... ...
src/main/java/com/bsth/service/realcontrol/FrequentPhrasesService.java
1   -package com.bsth.service.realcontrol;
2   -
3   -import com.bsth.entity.realcontrol.FrequentPhrases;
4   -import com.bsth.service.BaseService;
5   -
6   -/**
7   - * Created by panzhao on 2017/9/17.
8   - */
9   -public interface FrequentPhrasesService extends BaseService<FrequentPhrases, Integer> {
10   -}
  1 +package com.bsth.service.realcontrol;
  2 +
  3 +import com.bsth.entity.realcontrol.FrequentPhrases;
  4 +import com.bsth.service.BaseService;
  5 +
  6 +/**
  7 + * Created by panzhao on 2017/9/17.
  8 + */
  9 +public interface FrequentPhrasesService extends BaseService<FrequentPhrases, Integer> {
  10 +}
... ...
src/main/java/com/bsth/service/realcontrol/impl/FrequentPhrasesServiceImpl.java
1   -package com.bsth.service.realcontrol.impl;
2   -
3   -import com.bsth.entity.realcontrol.FrequentPhrases;
4   -import com.bsth.security.util.SecurityUtils;
5   -import com.bsth.service.impl.BaseServiceImpl;
6   -import com.bsth.service.realcontrol.FrequentPhrasesService;
7   -import org.springframework.stereotype.Service;
8   -
9   -import java.util.Map;
10   -
11   -/**
12   - * Created by panzhao on 2017/9/17.
13   - */
14   -@Service
15   -public class FrequentPhrasesServiceImpl extends BaseServiceImpl<FrequentPhrases, Integer> implements FrequentPhrasesService {
16   -
17   - @Override
18   - public Map<String, Object> save(FrequentPhrases fp) {
19   - fp.setUserName(SecurityUtils.getCurrentUser().getUserName());
20   - return super.save(fp);
21   - }
22   -
23   - @Override
24   - public Iterable<FrequentPhrases> list(Map<String, Object> map) {
25   - map.put("userName_eq", SecurityUtils.getCurrentUser().getUserName());
26   - return super.list(map);
27   - }
28   -}
  1 +package com.bsth.service.realcontrol.impl;
  2 +
  3 +import com.bsth.entity.realcontrol.FrequentPhrases;
  4 +import com.bsth.security.util.SecurityUtils;
  5 +import com.bsth.service.impl.BaseServiceImpl;
  6 +import com.bsth.service.realcontrol.FrequentPhrasesService;
  7 +import org.springframework.stereotype.Service;
  8 +
  9 +import java.util.Map;
  10 +
  11 +/**
  12 + * Created by panzhao on 2017/9/17.
  13 + */
  14 +@Service
  15 +public class FrequentPhrasesServiceImpl extends BaseServiceImpl<FrequentPhrases, Integer> implements FrequentPhrasesService {
  16 +
  17 + @Override
  18 + public Map<String, Object> save(FrequentPhrases fp) {
  19 + fp.setUserName(SecurityUtils.getCurrentUser().getUserName());
  20 + return super.save(fp);
  21 + }
  22 +
  23 + @Override
  24 + public Iterable<FrequentPhrases> list(Map<String, Object> map) {
  25 + map.put("userName_eq", SecurityUtils.getCurrentUser().getUserName());
  26 + return super.list(map);
  27 + }
  28 +}
... ...
src/main/java/com/bsth/service/realcontrol/impl/ScheduleRealInfoServiceImpl.java
... ... @@ -2608,7 +2608,8 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
2608 2608 path + "export/统计日报" + sdfSimple.format(sdfMonth.parse(date)) + ".xls");
2609 2609 } catch (Exception e) {
2610 2610 // TODO: handle exception
2611   - e.printStackTrace();
  2611 + //e.printStackTrace();
  2612 + logger.info("" , e);
2612 2613 }
2613 2614 }
2614 2615  
... ... @@ -3017,11 +3018,11 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
3017 3018 Set<ScheduleRealInfo> set = new HashSet<>();
3018 3019  
3019 3020 ScheduleRealInfo sch;
3020   - StringBuilder sb = new StringBuilder();
  3021 + //StringBuilder sb = new StringBuilder();
3021 3022  
3022 3023 String jGh = null,jName,sGh,sName;
3023 3024 for (ChangePersonCar cpc : cpcs) {
3024   - sb = new StringBuilder();
  3025 + //sb = new StringBuilder();
3025 3026  
3026 3027 sch = dayOfSchedule.get(cpc.getSchId());
3027 3028 if (sch == null)
... ... @@ -3057,8 +3058,8 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
3057 3058  
3058 3059 //换驾驶员
3059 3060 if (StringUtils.isNotEmpty(cpc.getJsy())) {
3060   - if(!jGh.equals(sch.getjGh()))
3061   - sb.append(sch.getjGh() + " 换 " + jGh + ";");
  3061 + /*if(!jGh.equals(sch.getjGh()))
  3062 + sb.append(sch.getjGh() + " 换 " + jGh + ";");*/
3062 3063 //换驾驶员
3063 3064 if(persoChange(sch, jGh))
3064 3065 set.add(sch);
... ... @@ -3074,8 +3075,8 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
3074 3075 return rs;
3075 3076 }
3076 3077  
3077   - if(!sGh.equals(sch.getsGh()))
3078   - sb.append(sch.getsGh() + " 换 " + sGh + ";");
  3078 + /*if(!sGh.equals(sch.getsGh()))
  3079 + sb.append(sch.getsGh() + " 换 " + sGh + ";");*/
3079 3080 if(persoChangeSPY(sch, sGh))
3080 3081 set.add(sch);
3081 3082 }
... ... @@ -3086,13 +3087,13 @@ public class ScheduleRealInfoServiceImpl extends BaseServiceImpl&lt;ScheduleRealInf
3086 3087  
3087 3088 //换车
3088 3089 if (StringUtils.isNotEmpty(cpc.getClZbh()) && !cpc.getClZbh().equals(sch.getClZbh())) {
3089   - sb.append(sch.getClZbh() + " 换 " + cpc.getClZbh() + ";");
  3090 + //sb.append(sch.getClZbh() + " 换 " + cpc.getClZbh() + ";");
3090 3091 set.add(sch);
3091 3092 set.addAll(dayOfSchedule.changeCar(sch, cpc.getClZbh()));
3092 3093 }
3093 3094  
3094   - if(sb.length() > 0)
3095   - sch.setRemarks(sb.toString());
  3095 + /*if(sb.length() > 0)
  3096 + sch.setRemarks(sb.toString());*/
3096 3097  
3097 3098 dayOfSchedule.save(sch);
3098 3099 set.add(sch);
... ...
src/main/java/com/bsth/service/traffic/VehicleInoutStopService.java
1   -package com.bsth.service.traffic;
2   -
3   -import com.bsth.entity.traffic.VehicleInoutStop;
4   -import com.bsth.service.BaseService;
5   -
6   -
7   -/**
8   - * 时刻模板上传日志
9   - */
10   -public interface VehicleInoutStopService extends BaseService<VehicleInoutStop,Integer> {
11   -
12   -}
  1 +package com.bsth.service.traffic;
  2 +
  3 +import com.bsth.entity.traffic.VehicleInoutStop;
  4 +import com.bsth.service.BaseService;
  5 +
  6 +
  7 +/**
  8 + * 时刻模板上传日志
  9 + */
  10 +public interface VehicleInoutStopService extends BaseService<VehicleInoutStop,Integer> {
  11 +
  12 +}
... ...
src/main/java/com/bsth/service/traffic/impl/VehicleInoutStopServiceImpl.java
1   -package com.bsth.service.traffic.impl;
2   -
3   -import com.bsth.entity.traffic.VehicleInoutStop;
4   -import com.bsth.service.impl.BaseServiceImpl;
5   -import com.bsth.service.traffic.VehicleInoutStopService;
6   -import org.slf4j.Logger;
7   -import org.slf4j.LoggerFactory;
8   -import org.springframework.stereotype.Service;
9   -
10   -/**
11   - *
12   - * @ClassName: TrafficManageServiceImpl(运管处接口service业务层实现类)
13   - *
14   - * @Extends : BaseService
15   - *
16   - * @Description:
17   - *
18   - * @Author bsth@zq
19   - *
20   - * @Date 2016年10月28日 上午9:21:17
21   - *
22   - * @Version 公交调度系统BS版 0.1
23   - *
24   - */
25   -
26   -@Service
27   -public class VehicleInoutStopServiceImpl extends BaseServiceImpl<VehicleInoutStop,Integer> implements VehicleInoutStopService {
28   -
29   - Logger logger = LoggerFactory.getLogger(this.getClass());
30   -
31   -}
  1 +package com.bsth.service.traffic.impl;
  2 +
  3 +import com.bsth.entity.traffic.VehicleInoutStop;
  4 +import com.bsth.service.impl.BaseServiceImpl;
  5 +import com.bsth.service.traffic.VehicleInoutStopService;
  6 +import org.slf4j.Logger;
  7 +import org.slf4j.LoggerFactory;
  8 +import org.springframework.stereotype.Service;
  9 +
  10 +/**
  11 + *
  12 + * @ClassName: TrafficManageServiceImpl(运管处接口service业务层实现类)
  13 + *
  14 + * @Extends : BaseService
  15 + *
  16 + * @Description:
  17 + *
  18 + * @Author bsth@zq
  19 + *
  20 + * @Date 2016年10月28日 上午9:21:17
  21 + *
  22 + * @Version 公交调度系统BS版 0.1
  23 + *
  24 + */
  25 +
  26 +@Service
  27 +public class VehicleInoutStopServiceImpl extends BaseServiceImpl<VehicleInoutStop,Integer> implements VehicleInoutStopService {
  28 +
  29 + Logger logger = LoggerFactory.getLogger(this.getClass());
  30 +
  31 +}
... ...
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>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>
... ...
src/main/resources/static/pages/control/lineallot_v2/iframe_wrap.html 0 → 100644
  1 +<!-- 线路选择 -->
  2 +<iframe src="/pages/control/lineallot_v2/main.html?origin=real_control_iframe" frameborder="0" style="height: 100%;width: 100%;"></iframe>
0 3 \ No newline at end of file
... ...
src/main/resources/static/pages/control/lineallot_v2/main.html 0 → 100644
  1 +<!DOCTYPE html>
  2 +<html lang="zh-cn">
  3 +
  4 +<head>
  5 + <meta charset="UTF-8">
  6 + <link rel="stylesheet" href="/assets/plugins/uk3.0/uikit.min.css"/>
  7 + <link rel="stylesheet" href="/real_control_v2/assets/plugins/perfect-scrollbar/perfect-scrollbar.css"/>
  8 + <!-- flatpickr -->
  9 + <link rel="stylesheet" href="/real_control_v2/assets/plugins/flatpickr/flatpickr.min.css">
  10 + <style>
  11 + html, body {
  12 + height: 100%;
  13 + }
  14 +
  15 + .ct_page {
  16 + padding: 25px 15px;
  17 + height: 100%;
  18 + height: calc(100% - 65px);
  19 + }
  20 +
  21 + .ct_cont {
  22 + height: calc(100% - 41px);
  23 + }
  24 +
  25 + .ct_cont > div > div.uk-card {
  26 + height: 99%;
  27 + }
  28 +
  29 + .loading {
  30 + height: 100%;
  31 + text-align: center;
  32 + }
  33 +
  34 + .loading .uk-spinner {
  35 + margin-top: 200px;
  36 + }
  37 +
  38 + .loading circle {
  39 + stroke: red;
  40 + }
  41 +
  42 + .ps-container > .ps-scrollbar-x-rail, .ps-container > .ps-scrollbar-y-rail {
  43 + opacity: 0.6 !important;
  44 + padding: 0 !important;
  45 + }
  46 +
  47 + .line_list_all_wrap {
  48 + height: 200px;
  49 + overflow: auto;
  50 + position: relative;
  51 + -webkit-user-select:none;
  52 + -moz-user-select:none;
  53 + -ms-user-select:none;
  54 + user-select:none;
  55 + }
  56 +
  57 + .line_list_all_wrap > .item {
  58 + background: #fff;
  59 + color: #666;
  60 + box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.08);
  61 + padding: 7px 12px;
  62 + border: 1px solid #ececec;
  63 + display: inline-block;
  64 + margin: 5px;
  65 + min-width: 70px;
  66 + text-align: center;
  67 + cursor: default;
  68 + }
  69 +
  70 + .line_list_all_wrap > .item.active{
  71 + background: #ffe9a5;
  72 + }
  73 +
  74 + .checked_list {
  75 + padding-left: 4px;
  76 + -webkit-user-select:none;
  77 + -moz-user-select:none;
  78 + -ms-user-select:none;
  79 + user-select:none;
  80 + }
  81 +
  82 + .checked_list > .item {
  83 + color: #fbfbfb;
  84 + box-shadow: 0px 3px 12px rgba(50, 197, 210, 0.3);
  85 + padding: 7px 12px;
  86 + border: 1px solid #ececec;
  87 + display: inline-block;
  88 + margin: 5px 2px;
  89 + min-width: 70px;
  90 + text-align: center;
  91 + background: #32C5D2;
  92 + cursor: move;
  93 + }
  94 +
  95 + .company_search_wrap {
  96 + width: 610px;
  97 + margin-left: 6px;
  98 + }
  99 +
  100 + .company_search_wrap select {
  101 + display: inline-block;
  102 + width: 128px;
  103 + margin-right: 12px;
  104 + }
  105 +
  106 + .uk-card {
  107 + border: 1px solid #eeeeee;
  108 + }
  109 +
  110 + .footer_tools_card {
  111 + margin-top: 20px;
  112 + padding: 20px 40px;
  113 + }
  114 +
  115 + .footer_tools_card label {
  116 + vertical-align: bottom;
  117 + display: inline-block;
  118 + font-size: 13px;
  119 + margin-left: 13px;
  120 + margin-bottom: 3px !important;
  121 + }
  122 +
  123 + .uk-button-default{
  124 + background: #e0e0e0 !important;
  125 + }
  126 + </style>
  127 +</head>
  128 +
  129 +<body>
  130 +<div class="loading">
  131 + <div uk-spinner></div>
  132 +</div>
  133 +<div class="ct_page" style="display: none;">
  134 + <h2 class="uk-heading-line uk-heading-bullet"><span>线调 <h5 style="display: inline-block;">-选择线路</h5></span></h2>
  135 + <div class="ct_cont">
  136 + <div class="allot_wrap uk-flex-center" uk-grid>
  137 + <div class="uk-card uk-card-hover uk-card-body uk-width-2-3@m"
  138 + style="padding-top: 20px;padding-bottom: 20px;">
  139 + <div class="company_search_wrap">
  140 + <select class="uk-select company_search_select"></select>
  141 + <select class="uk-select fgs_search_select" disabled>
  142 + <option value="">分公司搜索</option>
  143 + </select>
  144 + <div class="uk-inline">
  145 + <span class="uk-form-icon uk-form-icon-flip" uk-icon="icon: search"></span>
  146 + <input class="uk-input line_search_input" style="width: 310px;" placeholder="搜索线路">
  147 + </div>
  148 + </div>
  149 + <hr>
  150 + <div class="line_list_all_wrap"></div>
  151 + <hr>
  152 + <div class="checked_list" uk-sortable> </div>
  153 + </div>
  154 +
  155 + <div class="uk-card uk-card-hover uk-card-body uk-width-2-3@m footer_tools_card">
  156 + <button class="uk-button uk-button-default uk-button-large" style="font-size: 16px" id="go_to_real_system_btn"><i
  157 + uk-icon=" icon: sign-in" style="margin-right: 5px;" ></i>进入线路调度
  158 + </button>
  159 + <label class="pattern_type_label"><input class="uk-checkbox" type="checkbox" > 主调模式登录</label>
  160 + <label class="new_window_open_label" title="可能会被浏览器阻止新建窗口" uk-tooltip><input class="uk-checkbox" type="checkbox"> 新窗口打开</label>
  161 + </div>
  162 +
  163 + <div class="uk-alert-warning uk-width-2-3@m " uk-alert>
  164 + <p>注意!!! 相关“设备调试人员”和“测试人员”不要以主调模式进入线调。</p>
  165 + </div>
  166 + </div>
  167 + </div>
  168 +</div>
  169 +
  170 +<script id="line_list_items_temp" type="text/html">
  171 + {{each list as obj i}}
  172 + <span class="item" data-id="{{obj.lineCode}}" data-gsbm="{{obj.company}}_{{obj.brancheCompany}}">{{obj.name}}</span>
  173 + {{/each}}
  174 +</script>
  175 +
  176 +<script src="/metronic_v4.5.4/plugins/jquery.min.js"></script>
  177 +<script src="/assets/plugins/uk3.0/uikit.min.js"></script>
  178 +<script src="/assets/plugins/uk3.0/uikit-icons.min.js"></script>
  179 +<script src="/real_control_v2/assets/plugins/perfect-scrollbar/perfect-scrollbar.jquery.js"></script>
  180 +<!-- EventProxy -->
  181 +<script src="/assets/js/eventproxy.js"></script>
  182 +<!-- art-template 模版引擎 -->
  183 +<script src="/assets/plugins/template.js"></script>
  184 +<script src="/real_control_v2/assets/plugins/moment/moment.min.js"></script>
  185 +<script src="/assets/plugins/pinyin.js"></script>
  186 +<script>
  187 + var allMapps = {};//线路搜索映射
  188 + var companyData = {};
  189 + var codeMapps={}; //线路编码映射
  190 + //滚动条
  191 + $('.line_list_all_wrap').perfectScrollbar();
  192 +
  193 + var ep = EventProxy.create('all_lines', 'user_author', 'company_data', function (allLines, userAuthor, company_data) {
  194 + //按用户权限过滤线路
  195 + var authArray = userAuthor.lineCodeStr.split(','),
  196 + newArray = [];
  197 + $.each(allLines, function () {
  198 + if (this.lineCode && authArray.indexOf(this.lineCode) != -1) {
  199 + newArray.push(this);
  200 + codeMapps[this.lineCode] = this;
  201 + }
  202 + });
  203 + //排序
  204 + newArray.sort(function (a, b) {
  205 + return a.name.localeCompare(b.name);
  206 + });
  207 + //创建线路搜索映射
  208 + createLineSearchMapps(newArray);
  209 +
  210 + var htmlStr = template('line_list_items_temp', {list: newArray});
  211 + $('.line_list_all_wrap').html(htmlStr);
  212 +
  213 + //过滤公司编码数据
  214 + filter_company_data.filter(newArray, convert_buss_data(company_data));
  215 + initCompanySelect();
  216 + //更新滚动条高度
  217 + setTimeout(function () {
  218 + $('.line_list_all_wrap').perfectScrollbar('update');
  219 + }, 1000);
  220 +
  221 + //登录模式
  222 + changePattern(userAuthor.pattern);
  223 + if(!userAuthor.pattern)
  224 + $('.pattern_type_label').hide().find('input')[0].checked=false;
  225 + else
  226 + $('input','.pattern_type_label')[0].checked=true;
  227 +
  228 + $('.loading').remove();
  229 + $('.ct_page').show();
  230 +
  231 + //默认选中上次记录
  232 + var lineControlItems = window.localStorage.getItem('lineControlItems');
  233 + if (lineControlItems) {
  234 + var array = JSON.parse(lineControlItems);
  235 + $.each(array, function (i, line) {
  236 + $('.item[data-id='+line.lineCode+']','.line_list_all_wrap').trigger('click');
  237 + });
  238 + }
  239 + });
  240 +
  241 + $('.pattern_type_label').on('click', function () {
  242 + var checked = $('input',this)[0].checked;
  243 + changePattern(checked);
  244 + });
  245 +
  246 + function changePattern(status) {
  247 + var btn = $('#go_to_real_system_btn'),
  248 + def='uk-button-default',
  249 + prim='uk-button-primary';
  250 + if(status){
  251 + btn.removeClass(def).addClass(prim);
  252 + }
  253 + else{
  254 + btn.removeClass(prim).addClass(def);
  255 + }
  256 + }
  257 +
  258 + /**
  259 + * 查询所有线路
  260 + */
  261 + $.get('/line/all', {destroy_eq: 0}, function (list) {
  262 + ep.emit('all_lines', list);
  263 + });
  264 +
  265 + /**用户分配的线路*/
  266 + $.get('/realControAuthority/findByCurrentUser', function (t) {
  267 + ep.emit('user_author', t);
  268 + });
  269 +
  270 + /** 查询公司编码 */
  271 + $.get('/business/all', function (rs) {
  272 + ep.emit('company_data', rs);
  273 + });
  274 +
  275 + //点击选择线路
  276 + $('.line_list_all_wrap').on('click', 'span.item', function () {
  277 + var lineCode = $(this).data('id'),
  278 + name = $(this).text();
  279 + if ($(this).hasClass('active')) {
  280 + $(this).removeClass('active');
  281 +
  282 + $('.item[data-id='+lineCode+']','.checked_list').remove();
  283 + }
  284 + else {
  285 + $(this).addClass('active');
  286 + $('.checked_list').append('<span data-id="'+lineCode+'" class="item uk-card uk-card-default">'+name+'</span>');
  287 + }
  288 + });
  289 +
  290 + $('.checked_list').on('click', '.item', function () {
  291 + var lineCode = $(this).data('id');
  292 + $('.item[data-id='+lineCode+']','.line_list_all_wrap').removeClass('active');
  293 + $(this).remove();
  294 + });
  295 +
  296 + /**
  297 + * 搜索线路
  298 + */
  299 + function search_line_list() {
  300 + var comp = $('select.company_search_select').val(),
  301 + fgs = $('select.fgs_search_select').val(),
  302 + gsbm = comp + '_' + fgs;
  303 +
  304 + if(gsbm=='_')
  305 + gsbm=null;
  306 + var allDoms = $('.line_list_all_wrap span.item');
  307 + //线路
  308 + var lineCodeArray = [];
  309 + var t = $('.line_search_input').val();
  310 + if(t){
  311 + t = t.toUpperCase();
  312 + for(var m in allMapps){
  313 + if(m.indexOf(t)!=-1)
  314 + lineCodeArray.push(allMapps[m]);
  315 + }
  316 + }
  317 +
  318 + //搜索
  319 + var show_elems = [];
  320 + for (var i=0, dom; dom = allDoms[i++];) {
  321 + if(gsbm && $(dom).data('gsbm').indexOf(gsbm)==-1)
  322 + continue;
  323 +
  324 + if(t && lineCodeArray.indexOf($(dom).data('id')+'') == -1)
  325 + continue;
  326 +
  327 + show_elems.push($(dom));
  328 + }
  329 +
  330 + //show
  331 + allDoms.hide();
  332 + for(var j=0,$dom;$dom=show_elems[j++];)
  333 + $dom.show();
  334 + }
  335 +
  336 + function createLineSearchMapps(list) {
  337 + allMapps = {};
  338 + var name, code;
  339 + for (var i = 0, line; line = list[i++];) {
  340 + name = line.name;
  341 + code = line.lineCode;
  342 + //拼音映射
  343 + allMapps[pinyin.getCamelChars(name)] = code;
  344 + allMapps[pinyin.getFullChars(name).toUpperCase()] = code;
  345 + //中文映射
  346 + allMapps[name] = code;
  347 + }
  348 + }
  349 +
  350 +
  351 + //构建公司级联下拉框
  352 + function initCompanySelect() {
  353 + var opts = '<option value="">公司搜索</option>';
  354 + for (var k in companyData) {
  355 + opts += '<option value="' + k + '">' + companyData[k].name + '</option>';
  356 + }
  357 + $('select.company_search_select').html(opts);
  358 + }
  359 +
  360 + //公司切换
  361 + $('select.company_search_select').on('change', function () {
  362 + var opts = '<option value="">分公司搜索</option>',
  363 + t = $(this).val(),
  364 + fgsSelect = $('select.fgs_search_select');
  365 + if (!t) {
  366 + fgsSelect.html(opts).attr('disabled', 'disabled');
  367 + }
  368 + else{
  369 + var array = companyData[t].childs;
  370 + for (var i = 0, fgs; fgs = array[i++];) {
  371 + opts += '<option value="' + fgs.businessCode + '">' + fgs.businessName + '</option>';
  372 + }
  373 +
  374 + fgsSelect.html(opts).removeAttr('disabled');
  375 + }
  376 + search_line_list();
  377 + });
  378 +
  379 + //分公司切换
  380 + $('select.fgs_search_select').on('change', search_line_list);
  381 +
  382 + //线路文本框输入
  383 + var flag;
  384 + $('.line_search_input').on('input', function () {
  385 + if(flag)
  386 + return;
  387 + flag = true;
  388 + setTimeout(function () {
  389 + //延迟
  390 + search_line_list();
  391 + flag = false;
  392 + }, 200);
  393 + });
  394 +
  395 + function convert_buss_data(rs) {
  396 + var baseCode;
  397 + //找到跟节点
  398 + $.each(rs, function () {
  399 + if (this.upCode == 0) {
  400 + baseCode = this.businessCode;
  401 + return false;
  402 + }
  403 + });
  404 + if (!baseCode)return;
  405 + //提取二级节点
  406 + var secondMap = {};
  407 + $.each(rs, function () {
  408 + if (this.upCode == baseCode)
  409 + secondMap[this.businessCode] = {name: this.businessName, childs: []};
  410 + });
  411 + //分公司节点
  412 + $.each(rs, function () {
  413 + if (secondMap[this.upCode])
  414 + secondMap[this.upCode].childs.push(this);
  415 + });
  416 + //排序
  417 + for (var sid in secondMap)
  418 + secondMap[sid].childs.sort(naturalSort);
  419 + return secondMap;
  420 + }
  421 +
  422 + var naturalSort = function (a, b) {
  423 + return a.businessName.localeCompare(b.businessName);
  424 + };
  425 +
  426 + /**
  427 + * 根据用户线路权限过滤公司编码数据
  428 + */
  429 + var filter_company_data = (function () {
  430 + var filter = function (lineArray, data) {
  431 + companyData = {};
  432 + var com, fCom;
  433 + $.each(lineArray, function () {
  434 + com = this.company;
  435 + fCom = this.brancheCompany;
  436 + if (!companyData[com]) {
  437 + companyData[com] = {name: data[com].name, childs: []};
  438 + }
  439 +
  440 + if (!get(fCom, companyData[com].childs)) {
  441 + companyData[com].childs.push(get(fCom, data[com].childs));
  442 + }
  443 + });
  444 + };
  445 +
  446 + function get(fgsCode, fgsArray) {
  447 + for (var i = 0, fgs; fgs = fgsArray[i++];) {
  448 + if (fgs.businessCode == fgsCode)
  449 + return fgs;
  450 + }
  451 + return null;
  452 + }
  453 +
  454 + return {
  455 + filter: filter
  456 + }
  457 + })();
  458 + var storage = window.localStorage;
  459 + $('#go_to_real_system_btn').on('click', go_to_xd_sys);
  460 + /**
  461 + * 进入线调
  462 + */
  463 + function go_to_xd_sys() {
  464 + var items = $('.checked_list .item');
  465 + if(items.length==0)
  466 + return UIkit.notification({message: '你还没有选择线路!', pos: 'bottom-center', status: 'danger'});
  467 + $(this).attr('disabled', 'disabled');
  468 +
  469 + show_btn_load(this, '更新缓存数据...');
  470 + (function () {
  471 + var ls_line_data = [];
  472 + $.each(items, function () {
  473 + ls_line_data.push(codeMapps[$(this).data('id')]);
  474 + });
  475 + //将线路基础信息写入localStorage
  476 + storage.setItem('lineControlItems', JSON.stringify(ls_line_data));
  477 + //监控模式还是主调模式
  478 + storage.setItem('operationMode', $('.pattern_type_label>input')[0].checked?1:0);
  479 +
  480 + //进入线调
  481 + var eq = EventProxy.create('cache_route', 'check_line_config', function () {
  482 + var newWinOpen = $('input','.new_window_open_label')[0].checked;
  483 + if(!newWinOpen)
  484 + top.window.location.href = "/real_control/v2";
  485 + else{
  486 + window.open("/real_control/v2");
  487 + $('#go_to_real_system_btn').html('已经尝试打开新窗口,如看不到,可能被浏览器阻止了');
  488 + }
  489 + });
  490 +
  491 + //拼接线路编码
  492 + var idx='';
  493 + $.each(ls_line_data, function () {
  494 + idx+=(this.lineCode + ',');
  495 + });
  496 + //缓存路由
  497 + idx=idx.substr(0, idx.length - 1);
  498 + $.get('/realMap/findRouteByLine', {idx: idx}, function (rs) {
  499 + if (rs) {
  500 + for(var lineCode in rs)
  501 + storage.setItem(lineCode + '_route', JSON.stringify(rs[lineCode]));
  502 +
  503 + eq.emit('cache_route');
  504 + }
  505 + });
  506 +
  507 + //检查线路配置
  508 + checkLineConfig(ls_line_data, function (rs) {
  509 + if (rs.status == 0)
  510 + eq.emit('check_line_config');
  511 + else if (rs.status == 1){
  512 + initLineConfig(rs.not, function () {
  513 + eq.emit('check_line_config');
  514 + });
  515 + }
  516 + })
  517 + })();
  518 + }
  519 +
  520 + function checkLineConfig(lsData, cb) {
  521 + var lineCodeArray = [];
  522 + $.each(lsData, function () {
  523 + lineCodeArray.push(this.lineCode);
  524 + });
  525 +
  526 + $.ajax({
  527 + url: '/lineConfig/check',
  528 + traditional: true,
  529 + data: {codeArray: lineCodeArray},
  530 + method: 'POST',
  531 + success: cb
  532 + });
  533 + }
  534 +
  535 + function initLineConfig(arr, cb) {
  536 + var i = 0;
  537 + (function () {
  538 + if (i >= arr.length) {
  539 + cb && cb();
  540 + return;
  541 + }
  542 + var f = arguments.callee
  543 + , lineCode = arr[i];
  544 +
  545 + //showLoad('初始化' + lineIds[lineCode] + '配置信息...');
  546 + $.post('/lineConfig/init/' + lineCode, function (rs) {
  547 + if (rs == 1) {
  548 + i++;
  549 + f();
  550 + }
  551 + });
  552 + })();
  553 + }
  554 +
  555 + /**
  556 + * 按钮转菊花
  557 + */
  558 + function show_btn_load(btn, msg) {
  559 + $(btn).html('<div uk-spinner></div> ' + msg);
  560 + }
  561 +</script>
  562 +</body>
  563 +</html>
0 564 \ No newline at end of file
... ...
src/main/resources/static/pages/report/oil/oilListMonth.html
... ... @@ -242,7 +242,9 @@
242 242 }
243 243 var line = $("#line").val();
244 244 var date = $("#date").val();
245   - $get('/ylb/oilListMonth', {line:line,date:date,type:'export'}, function(result){
  245 + var gsdm = $("#gsdm").val();
  246 + var fgsdm = $("#fgsdm").val();
  247 + $get('/ylb/oilListMonth', {line:line,date:date,gsdm:gsdm,fgsdm,fgsdm,type:'export'}, function(result){
246 248 window.open("/downloadFile/download?fileName=月存油报表"+moment(date).format("YYYYMMDD"));
247 249 });
248 250 });
... ...
src/main/resources/static/pages/scheduleApp/module/core/schedulePlanManage/info/edit.html
  1 +<<<<<<< HEAD
1 2 <div ng-controller="SchedulePlanInfoManageEditCtrl as ctrl">
2 3 <div class="page-head">
3 4 <div class="page-title">
... ... @@ -232,4 +233,3 @@
232 233  
233 234  
234 235 </div>
235   -
... ...
src/main/resources/static/pages/summary/work_hours/list.html
... ... @@ -263,8 +263,8 @@
263 263 }
264 264  
265 265 //日期选择器
266   - $('[name=rq_eq]', f).val('2017-08-03');
267   - flatpickr('.ct_search_form_wrap [name=rq_eq]', {"locale": "zh", maxDate: '2017-08-03', minDate: '2017-07-01'});
  266 + $('[name=rq_eq]', f).val('2017-09-17');
  267 + flatpickr('.ct_search_form_wrap [name=rq_eq]', {"locale": "zh", maxDate: '2017-09-17', minDate: '2017-07-01'});
268 268  
269 269 var comps;
270 270 //构建公司级联下拉框
... ...
src/main/resources/static/real_control_v2/alone_page/home/alone_data_basic.js
1   -/* 基础数据管理模块 */
2   -
3   -var gb_data_basic = (function () {
4   -
5   - var stationRoutes, lineCode2NameAll, lineInformations, nbbm2deviceMap, device2nbbmMap, allPersonnel, svgAttrs;
6   - var ep = EventProxy.create("stationRoutes", "lineCode2Name", "lineInformations", "nbbm2deviceId", "all_personnel", "svg_attrs"
7   - , function (routes, code2Name, informations, nbbm2device, all_personnel, svgAttrMap) {
8   - stationRoutes = routes;
9   - lineCode2NameAll = code2Name;
10   - lineInformations = informations;
11   - nbbm2deviceMap = nbbm2device;
12   - device2nbbmMap = gb_common.inverse(nbbm2deviceMap);
13   - allPersonnel = all_personnel;
14   - svgAttrs = svgAttrMap;
15   -
16   - res_load_ep.emitLater('data-basic');
17   - });
18   -
19   - var storage = window.localStorage;
20   - //激活的线路
21   - var activeLines = JSON.parse(storage.getItem('lineControlItems'));
22   - //lineCode to line object
23   - var codeToLine = {};
24   - //lineCode idx string
25   - var line_idx = (function () {
26   - var str = '';
27   - for (var i = 0, item; item = activeLines[i++];) {
28   - str += (',' + item.lineCode);
29   - codeToLine[item.lineCode] = item;
30   - }
31   - return str.substr(1);
32   - })();
33   -
34   - //站点路由
35   - gb_common.$get('/stationroute/multiLine', {lineIds: line_idx}, function (rs) {
36   - var list = rs.list;//JSON.parse(rs.list);
37   - var routeData = gb_common.groupBy(list, 'lineCode');
38   - //排序
39   - for (var lineCode in routeData) {
40   - routeData[lineCode].sort(stationRouteSort);
41   - }
42   - ep.emit('stationRoutes', routeData);
43   - });
44   -
45   - //线路标准信息
46   - /*gb_common.$get('/lineInformation/line/multi', {lineCodes: line_idx}, function (rs) {
47   - var informations = {};
48   - $.each(rs, function () {
49   - informations[this.line.lineCode] = this;
50   - delete this['line'];
51   - });
52   - ep.emit('lineInformations', informations);
53   - });*/
54   - ep.emit('lineInformations', {});
55   -
56   - //人员信息
57   - ep.emit('all_personnel', {});
58   - /*loadAllPersonnel(function (data) {
59   - ep.emit('all_personnel', data);
60   - });
61   - function loadAllPersonnel(cb) {
62   - $.get('/personnel/all_py', function (rs) {
63   - //转换成自动补全组件需要的数据
64   - var data = [], code;
65   - for(var i =0, p; p = rs[i++];){
66   - code = p['workId'].indexOf('-')!=-1?p['workId'].split('-')[1]:p['workId'];
67   - data.push({
68   - value: code + '/' + p.name,
69   - fullChars: p.fullChars.toUpperCase(),
70   - camelChars: p.camelChars.toUpperCase()
71   - });
72   - }
73   - cb && cb(data);
74   - });
75   - }*/
76   -
77   - var carparks = {};
78   - //停车场数据
79   -/* gb_common.$get('/realMap/carParkSpatialData', {}, function (rs) {
80   - rs.list.sort(function (a, b) {
81   - return a.parkName.localeCompare(b.parkName);
82   - });
83   - $.each(rs.list, function () {
84   - carparks[this.parkCode] = this;
85   - });
86   - });*/
87   -
88   - //车辆数据
89   - var carsArray;
90   - /*$.get('/basic/cars?t=' + Math.random(), function (rs) {
91   - carsArray = rs;
92   - });*/
93   -
94   - var getCarparkByCode = function (code) {
95   - return carparks[code];
96   - };
97   -
98   - //line code to name
99   - $.get('/basic/lineCode2Name', function (rs) {
100   - ep.emit('lineCode2Name', rs);
101   - });
102   -
103   - //nbbm to device id
104   - $.get('/basic/nbbm2deviceId', function (rs) {
105   - ep.emit('nbbm2deviceId', rs);
106   - });
107   - //nbbm to 车牌号
108   - var nbbm2PlateMap;
109   - $.get('/basic/nbbm2PlateNo', function (rs) {
110   - nbbm2PlateMap = rs;
111   - });
112   -
113   - //模拟图属性数据
114   - gb_common.$get('/realSchedule/svgAttr', {idx: line_idx}, function (rs) {
115   - var data = {};
116   - $.each(rs.list, function () {
117   - this.hideStations = JSON.parse(this.hideStations);
118   - this.nicknames = JSON.parse(this.nicknames);
119   - data[this.lineCode] = this;
120   - });
121   - ep.emit('svg_attrs', data);
122   - });
123   -
124   - //站点和停车场历时、公里对照数据
125   - var stat_park_data;
126   - /*var load_stat_park_data = function () {
127   - $.get('/basic/station2ParkData?t='+Math.random(), {idx: line_idx}, function (rs) {
128   - stat_park_data = rs;
129   - });
130   - }
131   - load_stat_park_data();*/
132   -
133   - function findLineByCodes(codeArr) {
134   - var rs = [];
135   - $.each(codeArr, function () {
136   - rs.push(codeToLine[this]);
137   - });
138   - return rs;
139   - }
140   -
141   - var findCodeByLinename = function (name) {
142   - for (var code in lineCode2NameAll) {
143   - if (name == lineCode2NameAll[code])
144   - return code;
145   - }
146   -
147   - return null;
148   - };
149   -
150   - var getLineInformation = function (lineCode) {
151   - return lineInformations[lineCode];
152   - };
153   -
154   - var stationRouteSort = function (a, b) {
155   - return a.stationRouteCode - b.stationRouteCode;
156   - };
157   -
158   - /**
159   - * 常用的备注补全列表
160   - */
161   - var remarksArray = ['保养', '故障', '肇事', '加油', '维修', '援外', '路阻'
162   - , '故障(离合器坏)', '故障,(方向盘坏)', '故障(排挡坏)', '故障(门坏)', '故障(雨刮器坏)','故障(刹车坏)', '故障(气打不上)'
163   - ,'故障(整车无电)', '故障(故障灯常亮)', '故障(警报灯亮)', '故障(玻璃坏)', '故障(反光镜坏)', '故障(发电机坏)', '故障(漏防冻液)'
164   - , '故障(漏水)','故障(轮胎坏)', '故障(无动力)', '故障(喷机油)', '故障(水温高)', '保养(一级保养)'
165   - , '保养(二级保养)', '保养(三级保养)', '换车出场', '临加进场', '临加出场'];
166   - var remarksMapps = [];
167   - $.each(remarksArray, function (i, t) {
168   - remarksMapps.push({
169   - value: t,
170   - fullChars: pinyin.getFullChars(t).toUpperCase(),
171   - camelChars: pinyin.getCamelChars(t)
172   - });
173   - });
174   -
175   - //文件载入完毕
176   - res_load_ep.emitLater('load_data_basic');
177   -
178   - return {
179   - activeLines: activeLines,
180   - line_idx: line_idx,
181   - codeToLine: codeToLine,
182   - nbbm2deviceMap: function () {
183   - return nbbm2deviceMap;
184   - },
185   - device2nbbmMap: function () {
186   - return device2nbbmMap;
187   - },
188   - getLineInformation: getLineInformation,
189   - allInformations: function () {
190   - return lineInformations;
191   - },
192   - stationRoutes: function (lineCode) {
193   - return stationRoutes[lineCode]
194   - },
195   - findLineByCodes: findLineByCodes,
196   - lineCode2NameAll: function () {
197   - return lineCode2NameAll
198   - },
199   - allPersonnel: function () {
200   - return allPersonnel;
201   - },
202   - findCodeByLinename: findCodeByLinename,
203   - getCarparkByCode: getCarparkByCode,
204   - getSvgAttr: function (lineCode) {
205   - return svgAttrs[lineCode];
206   - },
207   - setSvgAttr: function (attr) {
208   - attr.hideStations = JSON.parse(attr.hideStations);
209   - attr.nicknames = JSON.parse(attr.nicknames);
210   - svgAttrs[attr.lineCode] = attr;
211   - },
212   - //是否是环线
213   - isLoopLine: function (lineCode) {
214   - var data = gb_common.groupBy(stationRoutes[lineCode], 'directions');
215   - //下行只有2个站点
216   - var len = data[0].length;
217   - if (len > 0 && data[1].length == 2) {
218   - var first = data[0][0],
219   - end = data[0][len - 1];
220   -
221   - /*if(first.stationName != end.stationName)
222   - return false;*/
223   -
224   - var fPoint = {latitude: first.station.gLaty, longitude: first.station.gLonx}
225   - , ePoint = {latitude: end.station.gLaty, longitude: end.station.gLonx};
226   -
227   - //并且上行起终点距离200米内
228   - if (geolib.getDistance(fPoint, ePoint) < 200) {
229   - return true;
230   - }
231   - }
232   -
233   - return false;
234   - },
235   - //刷新员工信息
236   - refreshAllPersonnel: function (cb) {
237   - loadAllPersonnel(function (data) {
238   - allPersonnel = data;
239   - cb && cb();
240   - });
241   - },
242   - nbbm2PlateMap: function () {
243   - return nbbm2PlateMap;
244   - },
245   - carsArray: function () {
246   - return carsArray;
247   - },
248   - simpleParksArray: function () {
249   - var map = {};
250   - for(var code in carparks)
251   - map[code] = carparks[code].parkName;
252   - return map;
253   - },
254   - remarksMapps: function () {
255   - return remarksMapps;
256   - },
257   - get_stat_park_data: function () {
258   - return stat_park_data;
259   - },
260   - reload_stat_park_data: function () {
261   - load_stat_park_data();
262   - }
263   - };
264   -})();
  1 +/* 基础数据管理模块 */
  2 +
  3 +var gb_data_basic = (function () {
  4 +
  5 + var stationRoutes, lineCode2NameAll, lineInformations, nbbm2deviceMap, device2nbbmMap, allPersonnel, svgAttrs;
  6 + var ep = EventProxy.create("stationRoutes", "lineCode2Name", "lineInformations", "nbbm2deviceId", "all_personnel", "svg_attrs"
  7 + , function (routes, code2Name, informations, nbbm2device, all_personnel, svgAttrMap) {
  8 + stationRoutes = routes;
  9 + lineCode2NameAll = code2Name;
  10 + lineInformations = informations;
  11 + nbbm2deviceMap = nbbm2device;
  12 + device2nbbmMap = gb_common.inverse(nbbm2deviceMap);
  13 + allPersonnel = all_personnel;
  14 + svgAttrs = svgAttrMap;
  15 +
  16 + res_load_ep.emitLater('data-basic');
  17 + });
  18 +
  19 + var storage = window.localStorage;
  20 + //激活的线路
  21 + var activeLines = JSON.parse(storage.getItem('lineControlItems'));
  22 + //lineCode to line object
  23 + var codeToLine = {};
  24 + //lineCode idx string
  25 + var line_idx = (function () {
  26 + var str = '';
  27 + for (var i = 0, item; item = activeLines[i++];) {
  28 + str += (',' + item.lineCode);
  29 + codeToLine[item.lineCode] = item;
  30 + }
  31 + return str.substr(1);
  32 + })();
  33 +
  34 + //站点路由
  35 + gb_common.$get('/stationroute/multiLine', {lineIds: line_idx}, function (rs) {
  36 + var list = rs.list;//JSON.parse(rs.list);
  37 + var routeData = gb_common.groupBy(list, 'lineCode');
  38 + //排序
  39 + for (var lineCode in routeData) {
  40 + routeData[lineCode].sort(stationRouteSort);
  41 + }
  42 + ep.emit('stationRoutes', routeData);
  43 + });
  44 +
  45 + //线路标准信息
  46 + /*gb_common.$get('/lineInformation/line/multi', {lineCodes: line_idx}, function (rs) {
  47 + var informations = {};
  48 + $.each(rs, function () {
  49 + informations[this.line.lineCode] = this;
  50 + delete this['line'];
  51 + });
  52 + ep.emit('lineInformations', informations);
  53 + });*/
  54 + ep.emit('lineInformations', {});
  55 +
  56 + //人员信息
  57 + ep.emit('all_personnel', {});
  58 + /*loadAllPersonnel(function (data) {
  59 + ep.emit('all_personnel', data);
  60 + });
  61 + function loadAllPersonnel(cb) {
  62 + $.get('/personnel/all_py', function (rs) {
  63 + //转换成自动补全组件需要的数据
  64 + var data = [], code;
  65 + for(var i =0, p; p = rs[i++];){
  66 + code = p['workId'].indexOf('-')!=-1?p['workId'].split('-')[1]:p['workId'];
  67 + data.push({
  68 + value: code + '/' + p.name,
  69 + fullChars: p.fullChars.toUpperCase(),
  70 + camelChars: p.camelChars.toUpperCase()
  71 + });
  72 + }
  73 + cb && cb(data);
  74 + });
  75 + }*/
  76 +
  77 + var carparks = {};
  78 + //停车场数据
  79 +/* gb_common.$get('/realMap/carParkSpatialData', {}, function (rs) {
  80 + rs.list.sort(function (a, b) {
  81 + return a.parkName.localeCompare(b.parkName);
  82 + });
  83 + $.each(rs.list, function () {
  84 + carparks[this.parkCode] = this;
  85 + });
  86 + });*/
  87 +
  88 + //车辆数据
  89 + var carsArray;
  90 + /*$.get('/basic/cars?t=' + Math.random(), function (rs) {
  91 + carsArray = rs;
  92 + });*/
  93 +
  94 + var getCarparkByCode = function (code) {
  95 + return carparks[code];
  96 + };
  97 +
  98 + //line code to name
  99 + $.get('/basic/lineCode2Name', function (rs) {
  100 + ep.emit('lineCode2Name', rs);
  101 + });
  102 +
  103 + //nbbm to device id
  104 + $.get('/basic/nbbm2deviceId', function (rs) {
  105 + ep.emit('nbbm2deviceId', rs);
  106 + });
  107 + //nbbm to 车牌号
  108 + var nbbm2PlateMap;
  109 + $.get('/basic/nbbm2PlateNo', function (rs) {
  110 + nbbm2PlateMap = rs;
  111 + });
  112 +
  113 + //模拟图属性数据
  114 + gb_common.$get('/realSchedule/svgAttr', {idx: line_idx}, function (rs) {
  115 + var data = {};
  116 + $.each(rs.list, function () {
  117 + this.hideStations = JSON.parse(this.hideStations);
  118 + this.nicknames = JSON.parse(this.nicknames);
  119 + data[this.lineCode] = this;
  120 + });
  121 + ep.emit('svg_attrs', data);
  122 + });
  123 +
  124 + //站点和停车场历时、公里对照数据
  125 + var stat_park_data;
  126 + /*var load_stat_park_data = function () {
  127 + $.get('/basic/station2ParkData?t='+Math.random(), {idx: line_idx}, function (rs) {
  128 + stat_park_data = rs;
  129 + });
  130 + }
  131 + load_stat_park_data();*/
  132 +
  133 + function findLineByCodes(codeArr) {
  134 + var rs = [];
  135 + $.each(codeArr, function () {
  136 + rs.push(codeToLine[this]);
  137 + });
  138 + return rs;
  139 + }
  140 +
  141 + var findCodeByLinename = function (name) {
  142 + for (var code in lineCode2NameAll) {
  143 + if (name == lineCode2NameAll[code])
  144 + return code;
  145 + }
  146 +
  147 + return null;
  148 + };
  149 +
  150 + var getLineInformation = function (lineCode) {
  151 + return lineInformations[lineCode];
  152 + };
  153 +
  154 + var stationRouteSort = function (a, b) {
  155 + return a.stationRouteCode - b.stationRouteCode;
  156 + };
  157 +
  158 + /**
  159 + * 常用的备注补全列表
  160 + */
  161 + var remarksArray = ['保养', '故障', '肇事', '加油', '维修', '援外', '路阻'
  162 + , '故障(离合器坏)', '故障,(方向盘坏)', '故障(排挡坏)', '故障(门坏)', '故障(雨刮器坏)','故障(刹车坏)', '故障(气打不上)'
  163 + ,'故障(整车无电)', '故障(故障灯常亮)', '故障(警报灯亮)', '故障(玻璃坏)', '故障(反光镜坏)', '故障(发电机坏)', '故障(漏防冻液)'
  164 + , '故障(漏水)','故障(轮胎坏)', '故障(无动力)', '故障(喷机油)', '故障(水温高)', '保养(一级保养)'
  165 + , '保养(二级保养)', '保养(三级保养)', '换车出场', '临加进场', '临加出场'];
  166 + var remarksMapps = [];
  167 + $.each(remarksArray, function (i, t) {
  168 + remarksMapps.push({
  169 + value: t,
  170 + fullChars: pinyin.getFullChars(t).toUpperCase(),
  171 + camelChars: pinyin.getCamelChars(t)
  172 + });
  173 + });
  174 +
  175 + //文件载入完毕
  176 + res_load_ep.emitLater('load_data_basic');
  177 +
  178 + return {
  179 + activeLines: activeLines,
  180 + line_idx: line_idx,
  181 + codeToLine: codeToLine,
  182 + nbbm2deviceMap: function () {
  183 + return nbbm2deviceMap;
  184 + },
  185 + device2nbbmMap: function () {
  186 + return device2nbbmMap;
  187 + },
  188 + getLineInformation: getLineInformation,
  189 + allInformations: function () {
  190 + return lineInformations;
  191 + },
  192 + stationRoutes: function (lineCode) {
  193 + return stationRoutes[lineCode]
  194 + },
  195 + findLineByCodes: findLineByCodes,
  196 + lineCode2NameAll: function () {
  197 + return lineCode2NameAll
  198 + },
  199 + allPersonnel: function () {
  200 + return allPersonnel;
  201 + },
  202 + findCodeByLinename: findCodeByLinename,
  203 + getCarparkByCode: getCarparkByCode,
  204 + getSvgAttr: function (lineCode) {
  205 + return svgAttrs[lineCode];
  206 + },
  207 + setSvgAttr: function (attr) {
  208 + attr.hideStations = JSON.parse(attr.hideStations);
  209 + attr.nicknames = JSON.parse(attr.nicknames);
  210 + svgAttrs[attr.lineCode] = attr;
  211 + },
  212 + //是否是环线
  213 + isLoopLine: function (lineCode) {
  214 + var data = gb_common.groupBy(stationRoutes[lineCode], 'directions');
  215 + //下行只有2个站点
  216 + var len = data[0].length;
  217 + if (len > 0 && data[1].length == 2) {
  218 + var first = data[0][0],
  219 + end = data[0][len - 1];
  220 +
  221 + /*if(first.stationName != end.stationName)
  222 + return false;*/
  223 +
  224 + var fPoint = {latitude: first.station.gLaty, longitude: first.station.gLonx}
  225 + , ePoint = {latitude: end.station.gLaty, longitude: end.station.gLonx};
  226 +
  227 + //并且上行起终点距离200米内
  228 + if (geolib.getDistance(fPoint, ePoint) < 200) {
  229 + return true;
  230 + }
  231 + }
  232 +
  233 + return false;
  234 + },
  235 + //刷新员工信息
  236 + refreshAllPersonnel: function (cb) {
  237 + loadAllPersonnel(function (data) {
  238 + allPersonnel = data;
  239 + cb && cb();
  240 + });
  241 + },
  242 + nbbm2PlateMap: function () {
  243 + return nbbm2PlateMap;
  244 + },
  245 + carsArray: function () {
  246 + return carsArray;
  247 + },
  248 + simpleParksArray: function () {
  249 + var map = {};
  250 + for(var code in carparks)
  251 + map[code] = carparks[code].parkName;
  252 + return map;
  253 + },
  254 + remarksMapps: function () {
  255 + return remarksMapps;
  256 + },
  257 + get_stat_park_data: function () {
  258 + return stat_park_data;
  259 + },
  260 + reload_stat_park_data: function () {
  261 + load_stat_park_data();
  262 + }
  263 + };
  264 +})();
... ...
src/main/resources/static/real_control_v2/alone_page/home/alone_data_gps.js
1   -/* gps 数据管理模块 */
2   -
3   -var gb_data_gps = (function () {
4   -
5   - //fixed time refresh delay
6   - var delay = 1000 * 7;
7   - //deviceId ——> gps
8   - var realData = {};
9   - //refresh after callback
10   - var refreshEventCallbacks = [];
11   - //register callback function
12   - var registerCallback = function (cb) {
13   - if (cb)
14   - refreshEventCallbacks.push(cb);
15   - };
16   -
17   - var refresh = function (cb) {
18   - $.ajax({
19   - url: '/gps/real/line',
20   - data: {lineCodes: gb_data_basic.line_idx},
21   - dataType: 'json',
22   - success: function (rs) {
23   - //用定时的gps来检测session断开
24   - if(rs.status && rs.status==407){
25   - location.href = '/login.html';
26   - return;
27   - }
28   - refreshData(rs);
29   - cb();
30   - },
31   - error: function (xr, t) {
32   - notify_err('刷新GPS失败,稍后重试' + t);
33   - cb();
34   - }
35   - });
36   - };
37   -
38   - var refreshData = function (rs) {
39   - var old, addArr = [],
40   - upArr = [],
41   - upDownChange = [];
42   -
43   - var schArray;
44   - $.each(rs, function () {
45   - old = realData[this.deviceId];
46   - if (old) {
47   - if (this.timestamp > old.timestamp) {
48   - if (old.upDown != this.upDown)
49   - upDownChange.push(this);
50   - else
51   - upArr.push(this);
52   - }
53   -
54   - } else
55   - addArr.push(this);
56   -
57   - //班次信息
58   - /*if (this.schId) {
59   - schArray = gb_schedule_table.findScheduleByLine(this.lineId);
60   - if (schArray)
61   - this.sch = schArray[this.schId];
62   - }*/
63   -
64   - //时间格式化
65   - this.dateStr = moment(this.timestamp).format('YYYY-MM-DD HH:mm:ss');
66   - realData[this.deviceId] = this;
67   - });
68   -
69   - //console.log('add array size: ' + addArr.length, 'up array size: ' + upArr.length);
70   - //CCCallFuncN
71   - $.each(refreshEventCallbacks, function (i, cb) {
72   - cb(addArr, upArr, upDownChange);
73   - });
74   -
75   - };
76   -
77   - var startFixedTime;
78   - var fixedTimeRefresh = function () {
79   - if (startFixedTime)
80   - return;
81   - startFixedTime = true;
82   -
83   - (function () {
84   - var f = arguments.callee;
85   - refresh(function () {
86   - setTimeout(f, delay);
87   - });
88   - })();
89   - };
90   -
91   - var gpsByLineCode = function (lineCode) {
92   - var rs = [];
93   - for (var device in realData) {
94   - if (realData[device].lineId == lineCode)
95   - rs.push(realData[device]);
96   - }
97   - return rs;
98   - };
99   -
100   - var findOne = function (deviceId) {
101   - return realData[deviceId];
102   - };
103   -
104   - var findGpsByNbbm = function (nbbm) {
105   - return realData[gb_data_basic.nbbm2deviceMap()[nbbm]];
106   - };
107   -
108   - /**
109   - * 设备掉线事件
110   - */
111   - var deviceOffline = function (gps) {
112   - $.each(offlineCallbacks, function (i, cb) {
113   - cb(gps);
114   - });
115   - };
116   -
117   - //注册掉线事件回调函数
118   - var offlineCallbacks = [];
119   - var registerOfflineCb = function (cb) {
120   - if (cb)
121   - offlineCallbacks.push(cb);
122   - };
123   -
124   - return {
125   - fixedTimeRefresh: fixedTimeRefresh,
126   - registerCallback: registerCallback,
127   - allGps: realData,
128   - gpsByLineCode: gpsByLineCode,
129   - findOne: findOne,
130   - findGpsByNbbm: findGpsByNbbm,
131   - deviceOffline: deviceOffline,
132   - registerOfflineCb: registerOfflineCb
133   - };
134   -})();
  1 +/* gps 数据管理模块 */
  2 +
  3 +var gb_data_gps = (function () {
  4 +
  5 + //fixed time refresh delay
  6 + var delay = 1000 * 7;
  7 + //deviceId ——> gps
  8 + var realData = {};
  9 + //refresh after callback
  10 + var refreshEventCallbacks = [];
  11 + //register callback function
  12 + var registerCallback = function (cb) {
  13 + if (cb)
  14 + refreshEventCallbacks.push(cb);
  15 + };
  16 +
  17 + var refresh = function (cb) {
  18 + $.ajax({
  19 + url: '/gps/real/line',
  20 + data: {lineCodes: gb_data_basic.line_idx},
  21 + dataType: 'json',
  22 + success: function (rs) {
  23 + //用定时的gps来检测session断开
  24 + if(rs.status && rs.status==407){
  25 + location.href = '/login.html';
  26 + return;
  27 + }
  28 + refreshData(rs);
  29 + cb();
  30 + },
  31 + error: function (xr, t) {
  32 + notify_err('刷新GPS失败,稍后重试' + t);
  33 + cb();
  34 + }
  35 + });
  36 + };
  37 +
  38 + var refreshData = function (rs) {
  39 + var old, addArr = [],
  40 + upArr = [],
  41 + upDownChange = [];
  42 +
  43 + var schArray;
  44 + $.each(rs, function () {
  45 + old = realData[this.deviceId];
  46 + if (old) {
  47 + if (this.timestamp > old.timestamp) {
  48 + if (old.upDown != this.upDown)
  49 + upDownChange.push(this);
  50 + else
  51 + upArr.push(this);
  52 + }
  53 +
  54 + } else
  55 + addArr.push(this);
  56 +
  57 + //班次信息
  58 + /*if (this.schId) {
  59 + schArray = gb_schedule_table.findScheduleByLine(this.lineId);
  60 + if (schArray)
  61 + this.sch = schArray[this.schId];
  62 + }*/
  63 +
  64 + //时间格式化
  65 + this.dateStr = moment(this.timestamp).format('YYYY-MM-DD HH:mm:ss');
  66 + realData[this.deviceId] = this;
  67 + });
  68 +
  69 + //console.log('add array size: ' + addArr.length, 'up array size: ' + upArr.length);
  70 + //CCCallFuncN
  71 + $.each(refreshEventCallbacks, function (i, cb) {
  72 + cb(addArr, upArr, upDownChange);
  73 + });
  74 +
  75 + };
  76 +
  77 + var startFixedTime;
  78 + var fixedTimeRefresh = function () {
  79 + if (startFixedTime)
  80 + return;
  81 + startFixedTime = true;
  82 +
  83 + (function () {
  84 + var f = arguments.callee;
  85 + refresh(function () {
  86 + setTimeout(f, delay);
  87 + });
  88 + })();
  89 + };
  90 +
  91 + var gpsByLineCode = function (lineCode) {
  92 + var rs = [];
  93 + for (var device in realData) {
  94 + if (realData[device].lineId == lineCode)
  95 + rs.push(realData[device]);
  96 + }
  97 + return rs;
  98 + };
  99 +
  100 + var findOne = function (deviceId) {
  101 + return realData[deviceId];
  102 + };
  103 +
  104 + var findGpsByNbbm = function (nbbm) {
  105 + return realData[gb_data_basic.nbbm2deviceMap()[nbbm]];
  106 + };
  107 +
  108 + /**
  109 + * 设备掉线事件
  110 + */
  111 + var deviceOffline = function (gps) {
  112 + $.each(offlineCallbacks, function (i, cb) {
  113 + cb(gps);
  114 + });
  115 + };
  116 +
  117 + //注册掉线事件回调函数
  118 + var offlineCallbacks = [];
  119 + var registerOfflineCb = function (cb) {
  120 + if (cb)
  121 + offlineCallbacks.push(cb);
  122 + };
  123 +
  124 + return {
  125 + fixedTimeRefresh: fixedTimeRefresh,
  126 + registerCallback: registerCallback,
  127 + allGps: realData,
  128 + gpsByLineCode: gpsByLineCode,
  129 + findOne: findOne,
  130 + findGpsByNbbm: findGpsByNbbm,
  131 + deviceOffline: deviceOffline,
  132 + registerOfflineCb: registerOfflineCb
  133 + };
  134 +})();
... ...
src/main/resources/static/real_control_v2/alone_page/home/home_wrap.html
1   -<!DOCTYPE html>
2   -<html lang="zh-cn">
3   -
4   -<head>
5   - <meta charset="UTF-8">
6   - <title>主页模拟图</title>
7   - <!-- uikit core style-->
8   - <link rel="stylesheet" href="/real_control_v2/assets/plugins/uikit-2.27.1/css/uikit.gradient.min.css" />
9   - <link rel="stylesheet" href="/real_control_v2/assets/plugins/uikit-2.27.1/components/notify.gradient.min.css" merge="plugins"/>
10   - <link rel="stylesheet" href="/real_control_v2/assets/plugins/uikit-2.27.1/components/tooltip.gradient.min.css" merge="plugins"/>
11   - <link rel="stylesheet"
12   - href="/real_control_v2/assets/plugins/uikit-2.27.1/components/autocomplete.gradient.min.css" merge="plugins"/>
13   - <link rel="stylesheet" href="/real_control_v2/assets/plugins/uikit-2.27.1/components/sticky.gradient.min.css" merge="plugins"/>
14   -
15   - <!-- main style -->
16   - <link rel="stylesheet" href="/real_control_v2/css/main.css" />
17   - <!-- home style -->
18   - <link rel="stylesheet" href="/real_control_v2/css/home.css" merge="custom_style"/>
19   -
20   - <!-- custom table -->
21   - <link rel="stylesheet" href="/real_control_v2/css/ct_table.css" merge="custom_style"/>
22   - <!-- jquery contextMenu style -->
23   - <link rel="stylesheet" href="/real_control_v2/assets/css/jquery.contextMenu.min.css" merge="plugins"/>
24   - <!-- formvalidation style -->
25   - <link rel="stylesheet" href="/real_control_v2/assets/plugins/formvalidation/formValidation.min.css" merge="plugins"/>
26   - <!-- js tree -->
27   - <link rel="stylesheet" href="/real_control_v2/assets/plugins/jstree/default/style.css" merge="plugins"/>
28   - <!-- tooltip css-->
29   - <link rel="stylesheet" href="/real_control_v2/assets/plugins/qtip/jquery.qtip.min.css" merge="plugins"/>
30   - <link rel="stylesheet" href="/real_control_v2/css/pace.css" merge="plugins"/>
31   -
32   - <link rel="stylesheet" href="/real_control_v2/css/modal_extend.css" merge="custom_style"/>
33   - <!-- perfect-scrollbar style -->
34   - <link rel="stylesheet" href="/real_control_v2/assets/plugins/perfect-scrollbar/perfect-scrollbar.css" merge="plugins"/>
35   - <!-- layer 3.0.3 -->
36   - <link rel="stylesheet" href="/real_control_v2/assets/plugins/layer3.0.3/skin/default/layer.css" merge="plugins"/>
37   - <link rel="stylesheet" href="/real_control_v2/assets/plugins/layer3.0.3/skin/moon/style.css" merge="plugins"/>
38   -
39   -
40   - <style>
41   - .main-container{
42   - height: 100% !important;
43   - }
44   -
45   - #main-tab-content{
46   - padding: 0 !important;
47   - }
48   -
49   - .home-panel{
50   -
51   - }
52   -
53   - #home-main-content{
54   - padding: 0 !important;
55   - }
56   -
57   - #main-tab-content>.home-panel>#home-main-content{
58   - overflow: inherit !important;
59   - }
60   - </style>
61   -</head>
62   -
63   -<body>
64   -<!--<div class="main-container" style="height: 100%;">
65   -</div>-->
66   -<div class="main-container">
67   - <ul id="main-tab-content">
68   - <li class="home-panel"></li>
69   - </ul>
70   -</div>
71   -
72   -
73   -<!-- 地图相关 -->
74   -<script src="http://api.map.baidu.com/api?v=2.0&ak=IGGrr4UjwIYzatoCRFKEL8sT"></script>
75   -<script src="http://api.map.baidu.com/library/TrafficControl/1.4/src/TrafficControl_min.js"></script>
76   -<script src="/assets/js/baidu//MarkerClusterer.js" merge="plugins"></script>
77   -<script src="/assets/js/TransGPS.js" merge="plugins"></script>
78   -<!-- jquery -->
79   -<script src="/real_control_v2/assets/js/jquery.min.js"></script>
80   -<!-- jquery actual -->
81   -<script src="/real_control_v2/assets/js/jquery.actual.min.js" merge="plugins"></script>
82   -<!-- jquery.serializejson JSON序列化插件 -->
83   -<script src="/assets/plugins/jquery.serializejson.js" merge="plugins"></script>
84   -<!-- moment.js 日期处理类库 -->
85   -<script src="/real_control_v2/assets/plugins/moment/moment.min.js"></script>
86   -<script src="/real_control_v2/assets/plugins/moment/zh-cn.js"></script>
87   -
88   -<!-- flatpickr -->
89   -<script src="/real_control_v2/assets/plugins/flatpickr/flatpickr.min.js" merge="plugins"></script>
90   -<script src="/real_control_v2/assets/plugins/flatpickr/l10n/zh.js" merge="plugins"></script>
91   -
92   -<!-- perfect-scrollbar -->
93   -<script src="/real_control_v2/assets/plugins/perfect-scrollbar/perfect-scrollbar.jquery.js" merge="plugins"></script>
94   -<!-- common js -->
95   -<script src="/real_control_v2/js/common.js"></script>
96   -<!-- art-template 模版引擎 -->
97   -<script src="/assets/plugins/template.js" merge="plugins"></script>
98   -<!-- d3 -->
99   -<script src="/assets/js/d3.min.js"></script>
100   -<!-- EventProxy -->
101   -<script src="/assets/js/eventproxy.js"></script>
102   -
103   -<script>
104   -
105   -
106   - var res_load_ep = EventProxy.create('load_home_layout', 'load_home_line_panel', 'load_data_basic', 'data-basic', function () {
107   - //加载主页
108   - gb_home_layout.layout(function () {
109   - gb_home_line_panel.init(function () {
110   - //gps自刷新
111   - gb_data_gps.fixedTimeRefresh();
112   -
113   - $('.uk-icon-send-o.home_alone_page').remove();
114   - });
115   - });
116   - });
117   -
118   - function connectArr(arr, separator, transFun) {
119   - var rs = '';
120   - $.each(arr, function (i, item) {
121   - if (transFun)
122   - item = transFun(item);
123   - rs += (separator + item);
124   - });
125   - return rs.substr(separator.length);
126   - }
127   -
128   - var isArray = function (obj) {
129   - return Object.prototype.toString.call(obj) === '[object Array]';
130   - };
131   -
132   - var gb_form_validation_opts = {
133   - framework: 'uikit',
134   - locale: 'zh_CN',
135   - icon: {
136   - valid: 'uk-icon-check',
137   - invalid: 'uk-icon-times',
138   - validating: 'uk-icon-refresh'
139   - }
140   - };
141   -
142   -</script>
143   -
144   -<!-- uikit core -->
145   -<script src="/real_control_v2/assets/plugins/uikit-2.27.1/uikit.min.js" merge="uikit_js"></script>
146   -<script src="/real_control_v2/assets/plugins/uikit-2.27.1/components/notify.min.js" merge="uikit_js"></script>
147   -<script src="/real_control_v2/assets/plugins/uikit-2.27.1/components/pagination.min.js" merge="uikit_js"></script>
148   -<script src="/real_control_v2/assets/plugins/uikit-2.27.1/components/tooltip.min.js" merge="uikit_js"></script>
149   -<script src="/real_control_v2/assets/plugins/uikit-2.27.1/components/sticky.min.js" merge="uikit_js"></script>
150   -
151   -
152   -<!-- jquery contextMenu -->
153   -<script src="/real_control_v2/assets/js/jquery.contextMenu.min.js" merge="plugins"></script>
154   -<script src="/real_control_v2/assets/js/jquery.ui.position.min.js" merge="plugins"></script>
155   -<!-- formvalidation- -->
156   -<script src="/real_control_v2/assets/plugins/formvalidation/formValidation.min.js" merge="plugins"></script>
157   -<script src="/real_control_v2/assets/plugins/formvalidation/zh_CN.js" merge="plugins"></script>
158   -<script src="/real_control_v2/assets/plugins/formvalidation/uikit.min.js" merge="plugins"></script>
159   -<!-- js tree -->
160   -<script src="/real_control_v2/assets/plugins/jstree/jstree.min.js" merge="plugins"></script>
161   -<!-- simple pinyin -->
162   -<script src="/assets/plugins/pinyin.js" merge="plugins"></script>
163   -<!-- qtip -->
164   -<script src="/real_control_v2/assets/plugins/qtip/jquery.qtip.min.js" merge="plugins"></script>
165   -<!-- layer 3.0.3 -->
166   -<script src="/real_control_v2/assets/plugins/layer3.0.3/layer.js" merge="plugins"></script>
167   -
168   -<!-- 数据 -->
169   -<script src="/real_control_v2/alone_page/home/alone_data_basic.js" merge="custom_js"></script>
170   -<script src="/real_control_v2/alone_page/home/alone_data_gps.js" merge="custom_js"></script>
171   -<script src="/real_control_v2/js/data/gps_abnormal.js" merge="custom_js"></script>
172   -<!-- 线路模拟图 -->
173   -<script src="/real_control_v2/js/utils/svg_chart.js" merge="custom_js"></script>
174   -<script src="/real_control_v2/js/utils/svg_data_convert.js" merge="custom_js"></script>
175   -<script src="/real_control_v2/js/utils/svg_chart_tooltip.js" merge="custom_js"></script>
176   -<script src="/real_control_v2/js/utils/svg_chart_map.js" merge="custom_js"></script>
177   -
178   -<!-- custom table js -->
179   -<script src="/real_control_v2/js/utils/ct_table.js" merge="custom_js"></script>
180   -<!-- home js -->
181   -<script src="/real_control_v2/js/home/layout.js" merge="custom_js"></script>
182   -<script src="/real_control_v2/js/home/line_panel.js" merge="custom_js"></script>
183   -<script src="/real_control_v2/js/home/context_menu.js" merge="custom_js"></script>
184   -
185   -
186   -<!-- 模态框扩展 -->
187   -<script src="/real_control_v2/js/modal_extend.js" merge="custom_js"></script>
188   -
189   -</body>
190   -
191   -</html>
  1 +<!DOCTYPE html>
  2 +<html lang="zh-cn">
  3 +
  4 +<head>
  5 + <meta charset="UTF-8">
  6 + <title>主页模拟图</title>
  7 + <!-- uikit core style-->
  8 + <link rel="stylesheet" href="/real_control_v2/assets/plugins/uikit-2.27.1/css/uikit.gradient.min.css" />
  9 + <link rel="stylesheet" href="/real_control_v2/assets/plugins/uikit-2.27.1/components/notify.gradient.min.css" merge="plugins"/>
  10 + <link rel="stylesheet" href="/real_control_v2/assets/plugins/uikit-2.27.1/components/tooltip.gradient.min.css" merge="plugins"/>
  11 + <link rel="stylesheet"
  12 + href="/real_control_v2/assets/plugins/uikit-2.27.1/components/autocomplete.gradient.min.css" merge="plugins"/>
  13 + <link rel="stylesheet" href="/real_control_v2/assets/plugins/uikit-2.27.1/components/sticky.gradient.min.css" merge="plugins"/>
  14 +
  15 + <!-- main style -->
  16 + <link rel="stylesheet" href="/real_control_v2/css/main.css" />
  17 + <!-- home style -->
  18 + <link rel="stylesheet" href="/real_control_v2/css/home.css" merge="custom_style"/>
  19 +
  20 + <!-- custom table -->
  21 + <link rel="stylesheet" href="/real_control_v2/css/ct_table.css" merge="custom_style"/>
  22 + <!-- jquery contextMenu style -->
  23 + <link rel="stylesheet" href="/real_control_v2/assets/css/jquery.contextMenu.min.css" merge="plugins"/>
  24 + <!-- formvalidation style -->
  25 + <link rel="stylesheet" href="/real_control_v2/assets/plugins/formvalidation/formValidation.min.css" merge="plugins"/>
  26 + <!-- js tree -->
  27 + <link rel="stylesheet" href="/real_control_v2/assets/plugins/jstree/default/style.css" merge="plugins"/>
  28 + <!-- tooltip css-->
  29 + <link rel="stylesheet" href="/real_control_v2/assets/plugins/qtip/jquery.qtip.min.css" merge="plugins"/>
  30 + <link rel="stylesheet" href="/real_control_v2/css/pace.css" merge="plugins"/>
  31 +
  32 + <link rel="stylesheet" href="/real_control_v2/css/modal_extend.css" merge="custom_style"/>
  33 + <!-- perfect-scrollbar style -->
  34 + <link rel="stylesheet" href="/real_control_v2/assets/plugins/perfect-scrollbar/perfect-scrollbar.css" merge="plugins"/>
  35 + <!-- layer 3.0.3 -->
  36 + <link rel="stylesheet" href="/real_control_v2/assets/plugins/layer3.0.3/skin/default/layer.css" merge="plugins"/>
  37 + <link rel="stylesheet" href="/real_control_v2/assets/plugins/layer3.0.3/skin/moon/style.css" merge="plugins"/>
  38 +
  39 +
  40 + <style>
  41 + .main-container{
  42 + height: 100% !important;
  43 + }
  44 +
  45 + #main-tab-content{
  46 + padding: 0 !important;
  47 + }
  48 +
  49 + .home-panel{
  50 +
  51 + }
  52 +
  53 + #home-main-content{
  54 + padding: 0 !important;
  55 + }
  56 +
  57 + #main-tab-content>.home-panel>#home-main-content{
  58 + overflow: inherit !important;
  59 + }
  60 + </style>
  61 +</head>
  62 +
  63 +<body>
  64 +<!--<div class="main-container" style="height: 100%;">
  65 +</div>-->
  66 +<div class="main-container">
  67 + <ul id="main-tab-content">
  68 + <li class="home-panel"></li>
  69 + </ul>
  70 +</div>
  71 +
  72 +
  73 +<!-- 地图相关 -->
  74 +<script src="http://api.map.baidu.com/api?v=2.0&ak=IGGrr4UjwIYzatoCRFKEL8sT"></script>
  75 +<script src="http://api.map.baidu.com/library/TrafficControl/1.4/src/TrafficControl_min.js"></script>
  76 +<script src="/assets/js/baidu//MarkerClusterer.js" merge="plugins"></script>
  77 +<script src="/assets/js/TransGPS.js" merge="plugins"></script>
  78 +<!-- jquery -->
  79 +<script src="/real_control_v2/assets/js/jquery.min.js"></script>
  80 +<!-- jquery actual -->
  81 +<script src="/real_control_v2/assets/js/jquery.actual.min.js" merge="plugins"></script>
  82 +<!-- jquery.serializejson JSON序列化插件 -->
  83 +<script src="/assets/plugins/jquery.serializejson.js" merge="plugins"></script>
  84 +<!-- moment.js 日期处理类库 -->
  85 +<script src="/real_control_v2/assets/plugins/moment/moment.min.js"></script>
  86 +<script src="/real_control_v2/assets/plugins/moment/zh-cn.js"></script>
  87 +
  88 +<!-- flatpickr -->
  89 +<script src="/real_control_v2/assets/plugins/flatpickr/flatpickr.min.js" merge="plugins"></script>
  90 +<script src="/real_control_v2/assets/plugins/flatpickr/l10n/zh.js" merge="plugins"></script>
  91 +
  92 +<!-- perfect-scrollbar -->
  93 +<script src="/real_control_v2/assets/plugins/perfect-scrollbar/perfect-scrollbar.jquery.js" merge="plugins"></script>
  94 +<!-- common js -->
  95 +<script src="/real_control_v2/js/common.js"></script>
  96 +<!-- art-template 模版引擎 -->
  97 +<script src="/assets/plugins/template.js" merge="plugins"></script>
  98 +<!-- d3 -->
  99 +<script src="/assets/js/d3.min.js"></script>
  100 +<!-- EventProxy -->
  101 +<script src="/assets/js/eventproxy.js"></script>
  102 +
  103 +<script>
  104 +
  105 +
  106 + var res_load_ep = EventProxy.create('load_home_layout', 'load_home_line_panel', 'load_data_basic', 'data-basic', function () {
  107 + //加载主页
  108 + gb_home_layout.layout(function () {
  109 + gb_home_line_panel.init(function () {
  110 + //gps自刷新
  111 + gb_data_gps.fixedTimeRefresh();
  112 +
  113 + $('.uk-icon-send-o.home_alone_page').remove();
  114 + });
  115 + });
  116 + });
  117 +
  118 + function connectArr(arr, separator, transFun) {
  119 + var rs = '';
  120 + $.each(arr, function (i, item) {
  121 + if (transFun)
  122 + item = transFun(item);
  123 + rs += (separator + item);
  124 + });
  125 + return rs.substr(separator.length);
  126 + }
  127 +
  128 + var isArray = function (obj) {
  129 + return Object.prototype.toString.call(obj) === '[object Array]';
  130 + };
  131 +
  132 + var gb_form_validation_opts = {
  133 + framework: 'uikit',
  134 + locale: 'zh_CN',
  135 + icon: {
  136 + valid: 'uk-icon-check',
  137 + invalid: 'uk-icon-times',
  138 + validating: 'uk-icon-refresh'
  139 + }
  140 + };
  141 +
  142 +</script>
  143 +
  144 +<!-- uikit core -->
  145 +<script src="/real_control_v2/assets/plugins/uikit-2.27.1/uikit.min.js" merge="uikit_js"></script>
  146 +<script src="/real_control_v2/assets/plugins/uikit-2.27.1/components/notify.min.js" merge="uikit_js"></script>
  147 +<script src="/real_control_v2/assets/plugins/uikit-2.27.1/components/pagination.min.js" merge="uikit_js"></script>
  148 +<script src="/real_control_v2/assets/plugins/uikit-2.27.1/components/tooltip.min.js" merge="uikit_js"></script>
  149 +<script src="/real_control_v2/assets/plugins/uikit-2.27.1/components/sticky.min.js" merge="uikit_js"></script>
  150 +
  151 +
  152 +<!-- jquery contextMenu -->
  153 +<script src="/real_control_v2/assets/js/jquery.contextMenu.min.js" merge="plugins"></script>
  154 +<script src="/real_control_v2/assets/js/jquery.ui.position.min.js" merge="plugins"></script>
  155 +<!-- formvalidation- -->
  156 +<script src="/real_control_v2/assets/plugins/formvalidation/formValidation.min.js" merge="plugins"></script>
  157 +<script src="/real_control_v2/assets/plugins/formvalidation/zh_CN.js" merge="plugins"></script>
  158 +<script src="/real_control_v2/assets/plugins/formvalidation/uikit.min.js" merge="plugins"></script>
  159 +<!-- js tree -->
  160 +<script src="/real_control_v2/assets/plugins/jstree/jstree.min.js" merge="plugins"></script>
  161 +<!-- simple pinyin -->
  162 +<script src="/assets/plugins/pinyin.js" merge="plugins"></script>
  163 +<!-- qtip -->
  164 +<script src="/real_control_v2/assets/plugins/qtip/jquery.qtip.min.js" merge="plugins"></script>
  165 +<!-- layer 3.0.3 -->
  166 +<script src="/real_control_v2/assets/plugins/layer3.0.3/layer.js" merge="plugins"></script>
  167 +
  168 +<!-- 数据 -->
  169 +<script src="/real_control_v2/alone_page/home/alone_data_basic.js" merge="custom_js"></script>
  170 +<script src="/real_control_v2/alone_page/home/alone_data_gps.js" merge="custom_js"></script>
  171 +<script src="/real_control_v2/js/data/gps_abnormal.js" merge="custom_js"></script>
  172 +<!-- 线路模拟图 -->
  173 +<script src="/real_control_v2/js/utils/svg_chart.js" merge="custom_js"></script>
  174 +<script src="/real_control_v2/js/utils/svg_data_convert.js" merge="custom_js"></script>
  175 +<script src="/real_control_v2/js/utils/svg_chart_tooltip.js" merge="custom_js"></script>
  176 +<script src="/real_control_v2/js/utils/svg_chart_map.js" merge="custom_js"></script>
  177 +
  178 +<!-- custom table js -->
  179 +<script src="/real_control_v2/js/utils/ct_table.js" merge="custom_js"></script>
  180 +<!-- home js -->
  181 +<script src="/real_control_v2/js/home/layout.js" merge="custom_js"></script>
  182 +<script src="/real_control_v2/js/home/line_panel.js" merge="custom_js"></script>
  183 +<script src="/real_control_v2/js/home/context_menu.js" merge="custom_js"></script>
  184 +
  185 +
  186 +<!-- 模态框扩展 -->
  187 +<script src="/real_control_v2/js/modal_extend.js" merge="custom_js"></script>
  188 +
  189 +</body>
  190 +
  191 +</html>
... ...
src/main/resources/static/real_control_v2/alone_page/map/alone_data_basic.js
1   -/* 基础数据管理模块 */
2   -
3   -var gb_data_basic = (function () {
4   -
5   - var stationRoutes, lineCode2NameAll, lineInformations, nbbm2deviceMap, device2nbbmMap, allPersonnel, svgAttrs;
6   - var ep = EventProxy.create("stationRoutes", "lineCode2Name", "lineInformations", "nbbm2deviceId", "all_personnel", "svg_attrs"
7   - , function (routes, code2Name, informations, nbbm2device, all_personnel, svgAttrMap) {
8   - stationRoutes = routes;
9   - lineCode2NameAll = code2Name;
10   - lineInformations = informations;
11   - nbbm2deviceMap = nbbm2device;
12   - device2nbbmMap = gb_common.inverse(nbbm2deviceMap);
13   - allPersonnel = all_personnel;
14   - svgAttrs = svgAttrMap;
15   -
16   - res_load_ep.emitLater('data-basic');
17   - });
18   -
19   - var storage = window.localStorage;
20   - //激活的线路
21   - var activeLines = JSON.parse(storage.getItem('lineControlItems'));
22   - //lineCode to line object
23   - var codeToLine = {};
24   - //lineCode idx string
25   - var line_idx = (function () {
26   - var str = '';
27   - for (var i = 0, item; item = activeLines[i++];) {
28   - str += (',' + item.lineCode);
29   - codeToLine[item.lineCode] = item;
30   - }
31   - return str.substr(1);
32   - })();
33   -
34   - //站点路由
35   - gb_common.$get('/stationroute/multiLine', {lineIds: line_idx}, function (rs) {
36   - var list = rs.list;//JSON.parse(rs.list);
37   - var routeData = gb_common.groupBy(list, 'lineCode');
38   - //排序
39   - for (var lineCode in routeData) {
40   - routeData[lineCode].sort(stationRouteSort);
41   - }
42   - ep.emit('stationRoutes', routeData);
43   - });
44   -
45   - //线路标准信息
46   - gb_common.$get('/lineInformation/line/multi', {lineCodes: line_idx}, function (rs) {
47   - var informations = {};
48   - $.each(rs, function () {
49   - informations[this.line.lineCode] = this;
50   - delete this['line'];
51   - });
52   - ep.emit('lineInformations', informations);
53   - });
54   -
55   - //人员信息
56   - loadAllPersonnel(function (data) {
57   - ep.emit('all_personnel', data);
58   - });
59   - function loadAllPersonnel(cb) {
60   - $.get('/personnel/all_py', function (rs) {
61   - //转换成自动补全组件需要的数据
62   - var data = [], code;
63   - for(var i =0, p; p = rs[i++];){
64   - code = p['workId'].indexOf('-')!=-1?p['workId'].split('-')[1]:p['workId'];
65   - data.push({
66   - value: code + '/' + p.name,
67   - fullChars: p.fullChars.toUpperCase(),
68   - camelChars: p.camelChars.toUpperCase()
69   - });
70   - }
71   - cb && cb(data);
72   - });
73   - }
74   -
75   - var carparks = {};
76   - //停车场数据
77   - gb_common.$get('/realMap/carParkSpatialData', {}, function (rs) {
78   - rs.list.sort(function (a, b) {
79   - return a.parkName.localeCompare(b.parkName);
80   - });
81   - $.each(rs.list, function () {
82   - carparks[this.parkCode] = this;
83   - });
84   - });
85   -
86   - //车辆数据
87   - var carsArray;
88   - $.get('/basic/cars?t=' + Math.random(), function (rs) {
89   - carsArray = rs;
90   - });
91   -
92   - var getCarparkByCode = function (code) {
93   - return carparks[code];
94   - };
95   -
96   - //line code to name
97   - $.get('/basic/lineCode2Name', function (rs) {
98   - ep.emit('lineCode2Name', rs);
99   - });
100   -
101   - //nbbm to device id
102   - $.get('/basic/nbbm2deviceId', function (rs) {
103   - ep.emit('nbbm2deviceId', rs);
104   - });
105   - //nbbm to 车牌号
106   - var nbbm2PlateMap;
107   - $.get('/basic/nbbm2PlateNo', function (rs) {
108   - nbbm2PlateMap = rs;
109   - });
110   -
111   - //模拟图属性数据
112   - gb_common.$get('/realSchedule/svgAttr', {idx: line_idx}, function (rs) {
113   - var data = {};
114   - $.each(rs.list, function () {
115   - this.hideStations = JSON.parse(this.hideStations);
116   - this.nicknames = JSON.parse(this.nicknames);
117   - data[this.lineCode] = this;
118   - });
119   - ep.emit('svg_attrs', data);
120   - });
121   -
122   - //站点和停车场历时、公里对照数据
123   - var stat_park_data;
124   - var load_stat_park_data = function () {
125   - $.get('/basic/station2ParkData?t='+Math.random(), {idx: line_idx}, function (rs) {
126   - stat_park_data = rs;
127   - });
128   - }
129   - load_stat_park_data();
130   -
131   - function findLineByCodes(codeArr) {
132   - var rs = [];
133   - $.each(codeArr, function () {
134   - rs.push(codeToLine[this]);
135   - });
136   - return rs;
137   - }
138   -
139   - var findCodeByLinename = function (name) {
140   - for (var code in lineCode2NameAll) {
141   - if (name == lineCode2NameAll[code])
142   - return code;
143   - }
144   -
145   - return null;
146   - };
147   -
148   - var getLineInformation = function (lineCode) {
149   - return lineInformations[lineCode];
150   - };
151   -
152   - var stationRouteSort = function (a, b) {
153   - return a.stationRouteCode - b.stationRouteCode;
154   - };
155   -
156   - return {
157   - activeLines: activeLines,
158   - line_idx: line_idx,
159   - codeToLine: codeToLine,
160   - nbbm2deviceMap: function () {
161   - return nbbm2deviceMap;
162   - },
163   - device2nbbmMap: function () {
164   - return device2nbbmMap;
165   - },
166   - getLineInformation: getLineInformation,
167   - allInformations: function () {
168   - return lineInformations;
169   - },
170   - stationRoutes: function (lineCode) {
171   - return stationRoutes[lineCode]
172   - },
173   - findLineByCodes: findLineByCodes,
174   - lineCode2NameAll: function () {
175   - return lineCode2NameAll
176   - },
177   - allPersonnel: function () {
178   - return allPersonnel;
179   - },
180   - findCodeByLinename: findCodeByLinename,
181   - getCarparkByCode: getCarparkByCode,
182   - getSvgAttr: function (lineCode) {
183   - return svgAttrs[lineCode];
184   - },
185   - setSvgAttr: function (attr) {
186   - attr.hideStations = JSON.parse(attr.hideStations);
187   - attr.nicknames = JSON.parse(attr.nicknames);
188   - svgAttrs[attr.lineCode] = attr;
189   - },
190   - //是否是环线
191   - isLoopLine: function (lineCode) {
192   - var data = gb_common.groupBy(stationRoutes[lineCode], 'directions');
193   - //下行只有2个站点
194   - var len = data[0].length;
195   - if (len > 0 && data[1].length == 2) {
196   - var first = data[0][0],
197   - end = data[0][len - 1];
198   -
199   - /*if(first.stationName != end.stationName)
200   - return false;*/
201   -
202   - var fPoint = {latitude: first.station.gLaty, longitude: first.station.gLonx}
203   - , ePoint = {latitude: end.station.gLaty, longitude: end.station.gLonx};
204   -
205   - //并且上行起终点距离200米内
206   - if (geolib.getDistance(fPoint, ePoint) < 200) {
207   - return true;
208   - }
209   - }
210   -
211   - return false;
212   - },
213   - //刷新员工信息
214   - refreshAllPersonnel: function (cb) {
215   - loadAllPersonnel(function (data) {
216   - allPersonnel = data;
217   - cb && cb();
218   - });
219   - },
220   - nbbm2PlateMap: function () {
221   - return nbbm2PlateMap;
222   - },
223   - carsArray: function () {
224   - return carsArray;
225   - },
226   - simpleParksArray: function () {
227   - var map = {};
228   - for(var code in carparks)
229   - map[code] = carparks[code].parkName;
230   - return map;
231   - },
232   - remarksMapps: function () {
233   - return remarksMapps;
234   - },
235   - get_stat_park_data: function () {
236   - return stat_park_data;
237   - },
238   - reload_stat_park_data: function () {
239   - load_stat_park_data();
240   - }
241   - };
242   -})();
  1 +/* 基础数据管理模块 */
  2 +
  3 +var gb_data_basic = (function () {
  4 +
  5 + var stationRoutes, lineCode2NameAll, lineInformations, nbbm2deviceMap, device2nbbmMap, allPersonnel, svgAttrs;
  6 + var ep = EventProxy.create("stationRoutes", "lineCode2Name", "lineInformations", "nbbm2deviceId", "all_personnel", "svg_attrs"
  7 + , function (routes, code2Name, informations, nbbm2device, all_personnel, svgAttrMap) {
  8 + stationRoutes = routes;
  9 + lineCode2NameAll = code2Name;
  10 + lineInformations = informations;
  11 + nbbm2deviceMap = nbbm2device;
  12 + device2nbbmMap = gb_common.inverse(nbbm2deviceMap);
  13 + allPersonnel = all_personnel;
  14 + svgAttrs = svgAttrMap;
  15 +
  16 + res_load_ep.emitLater('data-basic');
  17 + });
  18 +
  19 + var storage = window.localStorage;
  20 + //激活的线路
  21 + var activeLines = JSON.parse(storage.getItem('lineControlItems'));
  22 + //lineCode to line object
  23 + var codeToLine = {};
  24 + //lineCode idx string
  25 + var line_idx = (function () {
  26 + var str = '';
  27 + for (var i = 0, item; item = activeLines[i++];) {
  28 + str += (',' + item.lineCode);
  29 + codeToLine[item.lineCode] = item;
  30 + }
  31 + return str.substr(1);
  32 + })();
  33 +
  34 + //站点路由
  35 + gb_common.$get('/stationroute/multiLine', {lineIds: line_idx}, function (rs) {
  36 + var list = rs.list;//JSON.parse(rs.list);
  37 + var routeData = gb_common.groupBy(list, 'lineCode');
  38 + //排序
  39 + for (var lineCode in routeData) {
  40 + routeData[lineCode].sort(stationRouteSort);
  41 + }
  42 + ep.emit('stationRoutes', routeData);
  43 + });
  44 +
  45 + //线路标准信息
  46 + gb_common.$get('/lineInformation/line/multi', {lineCodes: line_idx}, function (rs) {
  47 + var informations = {};
  48 + $.each(rs, function () {
  49 + informations[this.line.lineCode] = this;
  50 + delete this['line'];
  51 + });
  52 + ep.emit('lineInformations', informations);
  53 + });
  54 +
  55 + //人员信息
  56 + loadAllPersonnel(function (data) {
  57 + ep.emit('all_personnel', data);
  58 + });
  59 + function loadAllPersonnel(cb) {
  60 + $.get('/personnel/all_py', function (rs) {
  61 + //转换成自动补全组件需要的数据
  62 + var data = [], code;
  63 + for(var i =0, p; p = rs[i++];){
  64 + code = p['workId'].indexOf('-')!=-1?p['workId'].split('-')[1]:p['workId'];
  65 + data.push({
  66 + value: code + '/' + p.name,
  67 + fullChars: p.fullChars.toUpperCase(),
  68 + camelChars: p.camelChars.toUpperCase()
  69 + });
  70 + }
  71 + cb && cb(data);
  72 + });
  73 + }
  74 +
  75 + var carparks = {};
  76 + //停车场数据
  77 + gb_common.$get('/realMap/carParkSpatialData', {}, function (rs) {
  78 + rs.list.sort(function (a, b) {
  79 + return a.parkName.localeCompare(b.parkName);
  80 + });
  81 + $.each(rs.list, function () {
  82 + carparks[this.parkCode] = this;
  83 + });
  84 + });
  85 +
  86 + //车辆数据
  87 + var carsArray;
  88 + $.get('/basic/cars?t=' + Math.random(), function (rs) {
  89 + carsArray = rs;
  90 + });
  91 +
  92 + var getCarparkByCode = function (code) {
  93 + return carparks[code];
  94 + };
  95 +
  96 + //line code to name
  97 + $.get('/basic/lineCode2Name', function (rs) {
  98 + ep.emit('lineCode2Name', rs);
  99 + });
  100 +
  101 + //nbbm to device id
  102 + $.get('/basic/nbbm2deviceId', function (rs) {
  103 + ep.emit('nbbm2deviceId', rs);
  104 + });
  105 + //nbbm to 车牌号
  106 + var nbbm2PlateMap;
  107 + $.get('/basic/nbbm2PlateNo', function (rs) {
  108 + nbbm2PlateMap = rs;
  109 + });
  110 +
  111 + //模拟图属性数据
  112 + gb_common.$get('/realSchedule/svgAttr', {idx: line_idx}, function (rs) {
  113 + var data = {};
  114 + $.each(rs.list, function () {
  115 + this.hideStations = JSON.parse(this.hideStations);
  116 + this.nicknames = JSON.parse(this.nicknames);
  117 + data[this.lineCode] = this;
  118 + });
  119 + ep.emit('svg_attrs', data);
  120 + });
  121 +
  122 + //站点和停车场历时、公里对照数据
  123 + var stat_park_data;
  124 + var load_stat_park_data = function () {
  125 + $.get('/basic/station2ParkData?t='+Math.random(), {idx: line_idx}, function (rs) {
  126 + stat_park_data = rs;
  127 + });
  128 + }
  129 + load_stat_park_data();
  130 +
  131 + function findLineByCodes(codeArr) {
  132 + var rs = [];
  133 + $.each(codeArr, function () {
  134 + rs.push(codeToLine[this]);
  135 + });
  136 + return rs;
  137 + }
  138 +
  139 + var findCodeByLinename = function (name) {
  140 + for (var code in lineCode2NameAll) {
  141 + if (name == lineCode2NameAll[code])
  142 + return code;
  143 + }
  144 +
  145 + return null;
  146 + };
  147 +
  148 + var getLineInformation = function (lineCode) {
  149 + return lineInformations[lineCode];
  150 + };
  151 +
  152 + var stationRouteSort = function (a, b) {
  153 + return a.stationRouteCode - b.stationRouteCode;
  154 + };
  155 +
  156 + return {
  157 + activeLines: activeLines,
  158 + line_idx: line_idx,
  159 + codeToLine: codeToLine,
  160 + nbbm2deviceMap: function () {
  161 + return nbbm2deviceMap;
  162 + },
  163 + device2nbbmMap: function () {
  164 + return device2nbbmMap;
  165 + },
  166 + getLineInformation: getLineInformation,
  167 + allInformations: function () {
  168 + return lineInformations;
  169 + },
  170 + stationRoutes: function (lineCode) {
  171 + return stationRoutes[lineCode]
  172 + },
  173 + findLineByCodes: findLineByCodes,
  174 + lineCode2NameAll: function () {
  175 + return lineCode2NameAll
  176 + },
  177 + allPersonnel: function () {
  178 + return allPersonnel;
  179 + },
  180 + findCodeByLinename: findCodeByLinename,
  181 + getCarparkByCode: getCarparkByCode,
  182 + getSvgAttr: function (lineCode) {
  183 + return svgAttrs[lineCode];
  184 + },
  185 + setSvgAttr: function (attr) {
  186 + attr.hideStations = JSON.parse(attr.hideStations);
  187 + attr.nicknames = JSON.parse(attr.nicknames);
  188 + svgAttrs[attr.lineCode] = attr;
  189 + },
  190 + //是否是环线
  191 + isLoopLine: function (lineCode) {
  192 + var data = gb_common.groupBy(stationRoutes[lineCode], 'directions');
  193 + //下行只有2个站点
  194 + var len = data[0].length;
  195 + if (len > 0 && data[1].length == 2) {
  196 + var first = data[0][0],
  197 + end = data[0][len - 1];
  198 +
  199 + /*if(first.stationName != end.stationName)
  200 + return false;*/
  201 +
  202 + var fPoint = {latitude: first.station.gLaty, longitude: first.station.gLonx}
  203 + , ePoint = {latitude: end.station.gLaty, longitude: end.station.gLonx};
  204 +
  205 + //并且上行起终点距离200米内
  206 + if (geolib.getDistance(fPoint, ePoint) < 200) {
  207 + return true;
  208 + }
  209 + }
  210 +
  211 + return false;
  212 + },
  213 + //刷新员工信息
  214 + refreshAllPersonnel: function (cb) {
  215 + loadAllPersonnel(function (data) {
  216 + allPersonnel = data;
  217 + cb && cb();
  218 + });
  219 + },
  220 + nbbm2PlateMap: function () {
  221 + return nbbm2PlateMap;
  222 + },
  223 + carsArray: function () {
  224 + return carsArray;
  225 + },
  226 + simpleParksArray: function () {
  227 + var map = {};
  228 + for(var code in carparks)
  229 + map[code] = carparks[code].parkName;
  230 + return map;
  231 + },
  232 + remarksMapps: function () {
  233 + return remarksMapps;
  234 + },
  235 + get_stat_park_data: function () {
  236 + return stat_park_data;
  237 + },
  238 + reload_stat_park_data: function () {
  239 + load_stat_park_data();
  240 + }
  241 + };
  242 +})();
... ...
src/main/resources/static/real_control_v2/alone_page/map/alone_data_gps.js
1   -/* gps 数据管理模块 */
2   -
3   -var gb_data_gps = (function () {
4   -
5   - //fixed time refresh delay
6   - var delay = 1000 * 7;
7   - //deviceId ——> gps
8   - var realData = {};
9   - //refresh after callback
10   - var refreshEventCallbacks = [];
11   - //register callback function
12   - var registerCallback = function (cb) {
13   - if (cb)
14   - refreshEventCallbacks.push(cb);
15   - };
16   -
17   - var refresh = function (cb) {
18   - $.ajax({
19   - url: '/gps/real/line',
20   - data: {lineCodes: gb_data_basic.line_idx},
21   - dataType: 'json',
22   - success: function (rs) {
23   - //用定时的gps来检测session断开
24   - if(rs.status && rs.status==407){
25   - location.href = '/login.html';
26   - return;
27   - }
28   - refreshData(rs);
29   - cb();
30   - },
31   - error: function (xr, t) {
32   - notify_err('刷新GPS失败,稍后重试' + t);
33   - cb();
34   - }
35   - });
36   - };
37   -
38   - var refreshData = function (rs) {
39   - var old, addArr = [],
40   - upArr = [],
41   - upDownChange = [];
42   -
43   - var schArray;
44   - $.each(rs, function () {
45   - old = realData[this.deviceId];
46   - if (old) {
47   - if (this.timestamp > old.timestamp) {
48   - if (old.upDown != this.upDown)
49   - upDownChange.push(this);
50   - else
51   - upArr.push(this);
52   - }
53   -
54   - } else
55   - addArr.push(this);
56   -
57   - /* //班次信息
58   - if (this.schId) {
59   - schArray = gb_schedule_table.findScheduleByLine(this.lineId);
60   - if (schArray)
61   - this.sch = schArray[this.schId];
62   - }*/
63   -
64   - //时间格式化
65   - this.dateStr = moment(this.timestamp).format('YYYY-MM-DD HH:mm:ss');
66   - realData[this.deviceId] = this;
67   - });
68   -
69   - //console.log('add array size: ' + addArr.length, 'up array size: ' + upArr.length);
70   - //CCCallFuncN
71   - $.each(refreshEventCallbacks, function (i, cb) {
72   - cb(addArr, upArr, upDownChange);
73   - });
74   -
75   - };
76   -
77   - var startFixedTime;
78   - var fixedTimeRefresh = function () {
79   - if (startFixedTime)
80   - return;
81   - startFixedTime = true;
82   -
83   - (function () {
84   - var f = arguments.callee;
85   - refresh(function () {
86   - setTimeout(f, delay);
87   - });
88   - })();
89   - };
90   -
91   - var gpsByLineCode = function (lineCode) {
92   - var rs = [];
93   - for (var device in realData) {
94   - if (realData[device].lineId == lineCode)
95   - rs.push(realData[device]);
96   - }
97   - return rs;
98   - };
99   -
100   - var findOne = function (deviceId) {
101   - return realData[deviceId];
102   - };
103   -
104   - var findGpsByNbbm = function (nbbm) {
105   - return realData[gb_data_basic.nbbm2deviceMap()[nbbm]];
106   - };
107   -
108   - /**
109   - * 设备掉线事件
110   - */
111   - var deviceOffline = function (gps) {
112   - $.each(offlineCallbacks, function (i, cb) {
113   - cb(gps);
114   - });
115   - };
116   -
117   - //注册掉线事件回调函数
118   - var offlineCallbacks = [];
119   - var registerOfflineCb = function (cb) {
120   - if (cb)
121   - offlineCallbacks.push(cb);
122   - };
123   -
124   - return {
125   - fixedTimeRefresh: fixedTimeRefresh,
126   - registerCallback: registerCallback,
127   - allGps: realData,
128   - gpsByLineCode: gpsByLineCode,
129   - findOne: findOne,
130   - findGpsByNbbm: findGpsByNbbm,
131   - deviceOffline: deviceOffline,
132   - registerOfflineCb: registerOfflineCb
133   - };
134   -})();
  1 +/* gps 数据管理模块 */
  2 +
  3 +var gb_data_gps = (function () {
  4 +
  5 + //fixed time refresh delay
  6 + var delay = 1000 * 7;
  7 + //deviceId ——> gps
  8 + var realData = {};
  9 + //refresh after callback
  10 + var refreshEventCallbacks = [];
  11 + //register callback function
  12 + var registerCallback = function (cb) {
  13 + if (cb)
  14 + refreshEventCallbacks.push(cb);
  15 + };
  16 +
  17 + var refresh = function (cb) {
  18 + $.ajax({
  19 + url: '/gps/real/line',
  20 + data: {lineCodes: gb_data_basic.line_idx},
  21 + dataType: 'json',
  22 + success: function (rs) {
  23 + //用定时的gps来检测session断开
  24 + if(rs.status && rs.status==407){
  25 + location.href = '/login.html';
  26 + return;
  27 + }
  28 + refreshData(rs);
  29 + cb();
  30 + },
  31 + error: function (xr, t) {
  32 + notify_err('刷新GPS失败,稍后重试' + t);
  33 + cb();
  34 + }
  35 + });
  36 + };
  37 +
  38 + var refreshData = function (rs) {
  39 + var old, addArr = [],
  40 + upArr = [],
  41 + upDownChange = [];
  42 +
  43 + var schArray;
  44 + $.each(rs, function () {
  45 + old = realData[this.deviceId];
  46 + if (old) {
  47 + if (this.timestamp > old.timestamp) {
  48 + if (old.upDown != this.upDown)
  49 + upDownChange.push(this);
  50 + else
  51 + upArr.push(this);
  52 + }
  53 +
  54 + } else
  55 + addArr.push(this);
  56 +
  57 + /* //班次信息
  58 + if (this.schId) {
  59 + schArray = gb_schedule_table.findScheduleByLine(this.lineId);
  60 + if (schArray)
  61 + this.sch = schArray[this.schId];
  62 + }*/
  63 +
  64 + //时间格式化
  65 + this.dateStr = moment(this.timestamp).format('YYYY-MM-DD HH:mm:ss');
  66 + realData[this.deviceId] = this;
  67 + });
  68 +
  69 + //console.log('add array size: ' + addArr.length, 'up array size: ' + upArr.length);
  70 + //CCCallFuncN
  71 + $.each(refreshEventCallbacks, function (i, cb) {
  72 + cb(addArr, upArr, upDownChange);
  73 + });
  74 +
  75 + };
  76 +
  77 + var startFixedTime;
  78 + var fixedTimeRefresh = function () {
  79 + if (startFixedTime)
  80 + return;
  81 + startFixedTime = true;
  82 +
  83 + (function () {
  84 + var f = arguments.callee;
  85 + refresh(function () {
  86 + setTimeout(f, delay);
  87 + });
  88 + })();
  89 + };
  90 +
  91 + var gpsByLineCode = function (lineCode) {
  92 + var rs = [];
  93 + for (var device in realData) {
  94 + if (realData[device].lineId == lineCode)
  95 + rs.push(realData[device]);
  96 + }
  97 + return rs;
  98 + };
  99 +
  100 + var findOne = function (deviceId) {
  101 + return realData[deviceId];
  102 + };
  103 +
  104 + var findGpsByNbbm = function (nbbm) {
  105 + return realData[gb_data_basic.nbbm2deviceMap()[nbbm]];
  106 + };
  107 +
  108 + /**
  109 + * 设备掉线事件
  110 + */
  111 + var deviceOffline = function (gps) {
  112 + $.each(offlineCallbacks, function (i, cb) {
  113 + cb(gps);
  114 + });
  115 + };
  116 +
  117 + //注册掉线事件回调函数
  118 + var offlineCallbacks = [];
  119 + var registerOfflineCb = function (cb) {
  120 + if (cb)
  121 + offlineCallbacks.push(cb);
  122 + };
  123 +
  124 + return {
  125 + fixedTimeRefresh: fixedTimeRefresh,
  126 + registerCallback: registerCallback,
  127 + allGps: realData,
  128 + gpsByLineCode: gpsByLineCode,
  129 + findOne: findOne,
  130 + findGpsByNbbm: findGpsByNbbm,
  131 + deviceOffline: deviceOffline,
  132 + registerOfflineCb: registerOfflineCb
  133 + };
  134 +})();
... ...
src/main/resources/static/real_control_v2/alone_page/map/alone_wrap.html
1   -<!DOCTYPE html>
2   -<html lang="zh-cn">
3   -
4   -<head>
5   - <meta charset="UTF-8">
6   - <title>地图监控 v2.0</title>
7   - <!-- uikit core style-->
8   - <link rel="stylesheet" href="/real_control_v2/assets/plugins/uikit-2.27.1/css/uikit.gradient.min.css"/>
9   - <link rel="stylesheet" href="/real_control_v2/assets/plugins/uikit-2.27.1/components/notify.gradient.min.css"
10   - merge="plugins"/>
11   - <link rel="stylesheet" href="/real_control_v2/assets/plugins/uikit-2.27.1/components/tooltip.gradient.min.css"
12   - merge="plugins"/>
13   - <link rel="stylesheet"
14   - href="/real_control_v2/assets/plugins/uikit-2.27.1/components/autocomplete.gradient.min.css" merge="plugins"/>
15   - <link rel="stylesheet" href="/real_control_v2/assets/plugins/uikit-2.27.1/components/accordion.gradient.min.css"
16   - merge="plugins"/>
17   - <link rel="stylesheet" href="/real_control_v2/assets/plugins/uikit-2.27.1/components/slidenav.gradient.min.css"
18   - merge="plugins"/>
19   - <link rel="stylesheet" href="/real_control_v2/assets/plugins/uikit-2.27.1/components/sticky.gradient.min.css"
20   - merge="plugins"/>
21   -
22   - <!-- main style -->
23   - <link rel="stylesheet" href="/real_control_v2/css/main.css"/>
24   - <!-- north style -->
25   - <link rel="stylesheet" href="/real_control_v2/css/north.css" merge="custom_style"/>
26   - <!-- home style -->
27   - <link rel="stylesheet" href="/real_control_v2/css/home.css" merge="custom_style"/>
28   -
29   - <!-- js tree -->
30   - <link rel="stylesheet" href="/real_control_v2/assets/plugins/jstree/default/style.css" merge="plugins"/>
31   -
32   - <link rel="stylesheet" href="/real_control_v2/css/modal_extend.css" merge="custom_style"/>
33   - <!-- perfect-scrollbar style -->
34   - <link rel="stylesheet" href="/real_control_v2/assets/plugins/perfect-scrollbar/perfect-scrollbar.css"
35   - merge="plugins"/>
36   - <!-- layer 3.0.3 -->
37   - <link rel="stylesheet" href="/real_control_v2/assets/plugins/layer3.0.3/skin/default/layer.css" merge="plugins"/>
38   - <link rel="stylesheet" href="/real_control_v2/assets/plugins/layer3.0.3/skin/moon/style.css" merge="plugins"/>
39   -
40   - <!-- flatpickr -->
41   - <link rel="stylesheet" href="/real_control_v2/assets/plugins/flatpickr/flatpickr.min.css" merge="plugins"/>
42   - <link rel="stylesheet" href="/real_control_v2/assets/plugins/flatpickr/themes/airbnb.css" merge="plugins"/>
43   -
44   - <link rel="stylesheet" href="/real_control_v2/css/ct_table.css" merge="custom_style"/>
45   -</head>
46   -
47   -<body>
48   -<div class="main-container" style="height: 100%;">
49   - <span style="position: absolute;left: calc(50% - 35px);top: calc(45% - 35px);">加载中...</span>
50   -</div>
51   -
52   -<!-- 地图相关 -->
53   -<script src="http://api.map.baidu.com/api?v=2.0&ak=IGGrr4UjwIYzatoCRFKEL8sT"></script>
54   -<script src="http://api.map.baidu.com/library/TrafficControl/1.4/src/TrafficControl_min.js"></script>
55   -<script src="/assets/js/baidu//MarkerClusterer.js" merge="plugins"></script>
56   -<script src="/assets/js/TransGPS.js" merge="plugins"></script>
57   -<!-- 高德 -->
58   -<script src="http://webapi.amap.com/maps?v=1.3&key=16cb1c5043847e09ef9edafdd77befda"></script>
59   -<!-- jquery -->
60   -<script src="/real_control_v2/assets/js/jquery.min.js"></script>
61   -<!-- jquery actual -->
62   -<script src="/real_control_v2/assets/js/jquery.actual.min.js" merge="plugins"></script>
63   -<!-- moment.js 日期处理类库 -->
64   -<script src="/real_control_v2/assets/plugins/moment/moment.min.js"></script>
65   -<script src="/real_control_v2/assets/plugins/moment/zh-cn.js"></script>
66   -
67   -<!-- flatpickr -->
68   -<script src="/real_control_v2/assets/plugins/flatpickr/flatpickr.min.js" merge="plugins"></script>
69   -<script src="/real_control_v2/assets/plugins/flatpickr/l10n/zh.js" merge="plugins"></script>
70   -
71   -<!-- perfect-scrollbar -->
72   -<script src="/real_control_v2/assets/plugins/perfect-scrollbar/perfect-scrollbar.jquery.js" merge="plugins"></script>
73   -<!-- common js -->
74   -<script src="/real_control_v2/js/common.js"></script>
75   -<!-- art-template 模版引擎 -->
76   -<script src="/assets/plugins/template.js" merge="plugins"></script>
77   -<!-- d3 -->
78   -<script src="/assets/js/d3.min.js"></script>
79   -<!-- EventProxy -->
80   -<script src="/assets/js/eventproxy.js"></script>
81   -<!-- uikit core -->
82   -<script src="/real_control_v2/assets/plugins/uikit-2.27.1/uikit.min.js" merge="uikit_js"></script>
83   -<script src="/real_control_v2/assets/plugins/uikit-2.27.1/components/notify.min.js" merge="uikit_js"></script>
84   -<script src="/real_control_v2/assets/plugins/uikit-2.27.1/components/tooltip.min.js" merge="uikit_js"></script>
85   -<script src="/real_control_v2/assets/plugins/uikit-2.27.1/components/autocomplete.min.js" merge="uikit_js"></script>
86   -<script src="/real_control_v2/assets/plugins/uikit-2.27.1/components/accordion.min.js" merge="uikit_js"></script>
87   -<script src="/real_control_v2/assets/plugins/uikit-2.27.1/components/sticky.min.js" merge="uikit_js"></script>
88   -
89   -<!-- js tree -->
90   -<script src="/real_control_v2/assets/plugins/jstree/jstree.min.js" merge="plugins"></script>
91   -<!-- layer 3.0.3 -->
92   -<script src="/real_control_v2/assets/plugins/layer3.0.3/layer.js" merge="plugins"></script>
93   -
94   -<!-- 模态框扩展 -->
95   -<script src="/real_control_v2/js/modal_extend.js" merge="custom_js"></script>
96   -
97   -<script src="/real_control_v2/alone_page/map/alone_data_basic.js" merge="custom_js"></script>
98   -<script src="/real_control_v2/alone_page/map/alone_data_gps.js" merge="custom_js"></script>
99   -<script src="/real_control_v2/js/utils/ct_table.js" merge="custom_js"></script>
100   -<!-- jquery.serializejson JSON序列化插件 -->
101   -<script src="/assets/plugins/jquery.serializejson.js" merge="uikit_js"></script>
102   -
103   -</body>
104   -<script>
105   - gb_data_gps.fixedTimeRefresh();
106   - var res_load_ep = EventProxy.create('data-basic', function () {
107   -
108   - //嵌入地图页面
109   - $('.main-container').load('/real_control_v2/mapmonitor/real.html', function () {
110   - $('.map-system-msg.flex-left').remove();
111   - });
112   - });
113   -
114   - var isArray = function (obj) {
115   - return Object.prototype.toString.call(obj) === '[object Array]';
116   - };
117   -</script>
118   -</html>
  1 +<!DOCTYPE html>
  2 +<html lang="zh-cn">
  3 +
  4 +<head>
  5 + <meta charset="UTF-8">
  6 + <title>地图监控 v2.0</title>
  7 + <!-- uikit core style-->
  8 + <link rel="stylesheet" href="/real_control_v2/assets/plugins/uikit-2.27.1/css/uikit.gradient.min.css"/>
  9 + <link rel="stylesheet" href="/real_control_v2/assets/plugins/uikit-2.27.1/components/notify.gradient.min.css"
  10 + merge="plugins"/>
  11 + <link rel="stylesheet" href="/real_control_v2/assets/plugins/uikit-2.27.1/components/tooltip.gradient.min.css"
  12 + merge="plugins"/>
  13 + <link rel="stylesheet"
  14 + href="/real_control_v2/assets/plugins/uikit-2.27.1/components/autocomplete.gradient.min.css" merge="plugins"/>
  15 + <link rel="stylesheet" href="/real_control_v2/assets/plugins/uikit-2.27.1/components/accordion.gradient.min.css"
  16 + merge="plugins"/>
  17 + <link rel="stylesheet" href="/real_control_v2/assets/plugins/uikit-2.27.1/components/slidenav.gradient.min.css"
  18 + merge="plugins"/>
  19 + <link rel="stylesheet" href="/real_control_v2/assets/plugins/uikit-2.27.1/components/sticky.gradient.min.css"
  20 + merge="plugins"/>
  21 +
  22 + <!-- main style -->
  23 + <link rel="stylesheet" href="/real_control_v2/css/main.css"/>
  24 + <!-- north style -->
  25 + <link rel="stylesheet" href="/real_control_v2/css/north.css" merge="custom_style"/>
  26 + <!-- home style -->
  27 + <link rel="stylesheet" href="/real_control_v2/css/home.css" merge="custom_style"/>
  28 +
  29 + <!-- js tree -->
  30 + <link rel="stylesheet" href="/real_control_v2/assets/plugins/jstree/default/style.css" merge="plugins"/>
  31 +
  32 + <link rel="stylesheet" href="/real_control_v2/css/modal_extend.css" merge="custom_style"/>
  33 + <!-- perfect-scrollbar style -->
  34 + <link rel="stylesheet" href="/real_control_v2/assets/plugins/perfect-scrollbar/perfect-scrollbar.css"
  35 + merge="plugins"/>
  36 + <!-- layer 3.0.3 -->
  37 + <link rel="stylesheet" href="/real_control_v2/assets/plugins/layer3.0.3/skin/default/layer.css" merge="plugins"/>
  38 + <link rel="stylesheet" href="/real_control_v2/assets/plugins/layer3.0.3/skin/moon/style.css" merge="plugins"/>
  39 +
  40 + <!-- flatpickr -->
  41 + <link rel="stylesheet" href="/real_control_v2/assets/plugins/flatpickr/flatpickr.min.css" merge="plugins"/>
  42 + <link rel="stylesheet" href="/real_control_v2/assets/plugins/flatpickr/themes/airbnb.css" merge="plugins"/>
  43 +
  44 + <link rel="stylesheet" href="/real_control_v2/css/ct_table.css" merge="custom_style"/>
  45 +</head>
  46 +
  47 +<body>
  48 +<div class="main-container" style="height: 100%;">
  49 + <span style="position: absolute;left: calc(50% - 35px);top: calc(45% - 35px);">加载中...</span>
  50 +</div>
  51 +
  52 +<!-- 地图相关 -->
  53 +<script src="http://api.map.baidu.com/api?v=2.0&ak=IGGrr4UjwIYzatoCRFKEL8sT"></script>
  54 +<script src="http://api.map.baidu.com/library/TrafficControl/1.4/src/TrafficControl_min.js"></script>
  55 +<script src="/assets/js/baidu//MarkerClusterer.js" merge="plugins"></script>
  56 +<script src="/assets/js/TransGPS.js" merge="plugins"></script>
  57 +<!-- 高德 -->
  58 +<script src="http://webapi.amap.com/maps?v=1.3&key=16cb1c5043847e09ef9edafdd77befda"></script>
  59 +<!-- jquery -->
  60 +<script src="/real_control_v2/assets/js/jquery.min.js"></script>
  61 +<!-- jquery actual -->
  62 +<script src="/real_control_v2/assets/js/jquery.actual.min.js" merge="plugins"></script>
  63 +<!-- moment.js 日期处理类库 -->
  64 +<script src="/real_control_v2/assets/plugins/moment/moment.min.js"></script>
  65 +<script src="/real_control_v2/assets/plugins/moment/zh-cn.js"></script>
  66 +
  67 +<!-- flatpickr -->
  68 +<script src="/real_control_v2/assets/plugins/flatpickr/flatpickr.min.js" merge="plugins"></script>
  69 +<script src="/real_control_v2/assets/plugins/flatpickr/l10n/zh.js" merge="plugins"></script>
  70 +
  71 +<!-- perfect-scrollbar -->
  72 +<script src="/real_control_v2/assets/plugins/perfect-scrollbar/perfect-scrollbar.jquery.js" merge="plugins"></script>
  73 +<!-- common js -->
  74 +<script src="/real_control_v2/js/common.js"></script>
  75 +<!-- art-template 模版引擎 -->
  76 +<script src="/assets/plugins/template.js" merge="plugins"></script>
  77 +<!-- d3 -->
  78 +<script src="/assets/js/d3.min.js"></script>
  79 +<!-- EventProxy -->
  80 +<script src="/assets/js/eventproxy.js"></script>
  81 +<!-- uikit core -->
  82 +<script src="/real_control_v2/assets/plugins/uikit-2.27.1/uikit.min.js" merge="uikit_js"></script>
  83 +<script src="/real_control_v2/assets/plugins/uikit-2.27.1/components/notify.min.js" merge="uikit_js"></script>
  84 +<script src="/real_control_v2/assets/plugins/uikit-2.27.1/components/tooltip.min.js" merge="uikit_js"></script>
  85 +<script src="/real_control_v2/assets/plugins/uikit-2.27.1/components/autocomplete.min.js" merge="uikit_js"></script>
  86 +<script src="/real_control_v2/assets/plugins/uikit-2.27.1/components/accordion.min.js" merge="uikit_js"></script>
  87 +<script src="/real_control_v2/assets/plugins/uikit-2.27.1/components/sticky.min.js" merge="uikit_js"></script>
  88 +
  89 +<!-- js tree -->
  90 +<script src="/real_control_v2/assets/plugins/jstree/jstree.min.js" merge="plugins"></script>
  91 +<!-- layer 3.0.3 -->
  92 +<script src="/real_control_v2/assets/plugins/layer3.0.3/layer.js" merge="plugins"></script>
  93 +
  94 +<!-- 模态框扩展 -->
  95 +<script src="/real_control_v2/js/modal_extend.js" merge="custom_js"></script>
  96 +
  97 +<script src="/real_control_v2/alone_page/map/alone_data_basic.js" merge="custom_js"></script>
  98 +<script src="/real_control_v2/alone_page/map/alone_data_gps.js" merge="custom_js"></script>
  99 +<script src="/real_control_v2/js/utils/ct_table.js" merge="custom_js"></script>
  100 +<!-- jquery.serializejson JSON序列化插件 -->
  101 +<script src="/assets/plugins/jquery.serializejson.js" merge="uikit_js"></script>
  102 +
  103 +</body>
  104 +<script>
  105 + gb_data_gps.fixedTimeRefresh();
  106 + var res_load_ep = EventProxy.create('data-basic', function () {
  107 +
  108 + //嵌入地图页面
  109 + $('.main-container').load('/real_control_v2/mapmonitor/real.html', function () {
  110 + $('.map-system-msg.flex-left').remove();
  111 + });
  112 + });
  113 +
  114 + var isArray = function (obj) {
  115 + return Object.prototype.toString.call(obj) === '[object Array]';
  116 + };
  117 +</script>
  118 +</html>
... ...
src/main/resources/static/real_control_v2/fragments/line_schedule/context_menu/bc_type_major.html
... ... @@ -84,11 +84,11 @@
84 84  
85 85 //只修改起点
86 86 if (sch.qdzCode != $qdz.val() && sch.zdzCode == $zdz.val()) {
87   - remarks = ' 从 ' + sch.qdzName + ' 客至 ' + qdzName + ' ,放站至 ' + zdzName;
  87 + remarks = ' 从 ' + sch.qdzName + ' 客至 ' + qdzName + ' ,放站至 ' + zdzName;
88 88 }
89 89 //只修改终点
90 90 else if (sch.qdzCode == $qdz.val() && sch.zdzCode != $zdz.val()) {
91   - remarks = ' 从 ' + sch.qdzName + ' 放站至 ' + zdzName + ' 开始客';
  91 + remarks = ' 从 ' + sch.qdzName + ' 放站至 ' + zdzName + ' 开始客';
92 92 }
93 93 //起终点都改变
94 94 else if (sch.qdzCode != $qdz.val() && sch.zdzCode != $zdz.val()) {
... ...
src/main/resources/static/real_control_v2/js/data/data_line_config.js
1   -/**
2   - * 线路配置信息
3   - * @type {{}}
4   - */
5   -var gb_data_line_config = (function () {
6   -
7   - var lineConfigMap;
8   -
9   - var storage = window.localStorage;
10   - var activeLines = JSON.parse(storage.getItem('lineControlItems'));
11   - var line_idx = (function () {
12   - var str = '';
13   - for (var i = 0, item; item = activeLines[i++];) {
14   - str += (',' + item.lineCode);
15   - }
16   - return str.substr(1);
17   - })();
18   -
19   - gb_common.$get('/lineConfig/findByIdx', {idx: line_idx}, function (rs) {
20   - lineConfigMap = {};
21   - $.each(rs.list, function () {
22   - lineConfigMap[this.line.lineCode] = this;
23   - });
24   -
25   - console.log('lineConfigMap', lineConfigMap);
26   - });
27   -
28   - return {
29   - get: function (lineCode) {
30   - return lineConfigMap[lineCode];
31   - }
32   - };
  1 +/**
  2 + * 线路配置信息
  3 + * @type {{}}
  4 + */
  5 +var gb_data_line_config = (function () {
  6 +
  7 + var lineConfigMap;
  8 +
  9 + var storage = window.localStorage;
  10 + var activeLines = JSON.parse(storage.getItem('lineControlItems'));
  11 + var line_idx = (function () {
  12 + var str = '';
  13 + for (var i = 0, item; item = activeLines[i++];) {
  14 + str += (',' + item.lineCode);
  15 + }
  16 + return str.substr(1);
  17 + })();
  18 +
  19 + gb_common.$get('/lineConfig/findByIdx', {idx: line_idx}, function (rs) {
  20 + lineConfigMap = {};
  21 + $.each(rs.list, function () {
  22 + lineConfigMap[this.line.lineCode] = this;
  23 + });
  24 +
  25 + console.log('lineConfigMap', lineConfigMap);
  26 + });
  27 +
  28 + return {
  29 + get: function (lineCode) {
  30 + return lineConfigMap[lineCode];
  31 + }
  32 + };
33 33 })();
34 34 \ No newline at end of file
... ...
src/main/resources/static/real_control_v2/js/north/toolbar.js
... ... @@ -48,7 +48,7 @@ var gb_northToolbar = (function () {
48 48 $('.north .north-toolbar .exit-system').on('click', function () {
49 49 //关闭websocket 连接
50 50 gb_sch_websocket.sock().close(1000, '退出线调');
51   - window.location.href = '/pages/control/lineallot/allot.html';
  51 + window.location.href = '/pages/control/lineallot_v2/iframe_wrap.html';
52 52 });
53 53  
54 54 //console.log('xd_auth', xd_auth, 'data', data);
... ...