Skip to content
切换导航条
切换导航条
当前项目
正在载入...
登录
刘韬
/
SO775-DUOStore
转到一个项目
切换导航栏
切换导航栏固定状态
项目
群组
代码片段
帮助
项目
活动
版本库
流水线
图表
问题
0
合并请求
0
维基
网络
创建新的问题
作业
提交
问题看板
文件
提交
网络
比较
分支
标签
Commit 8887225f
由
刘韬
编写于
2021-01-28 09:03:38 +0800
浏览文件
选项
浏览文件
标签
下载
电子邮件补丁
差异文件
7寸机,基本通过
1 个父辈
44f88ec1
显示空白字符变更
内嵌
并排
正在显示
30 个修改的文件
包含
370 行增加
和
1320 行删除
source/Common/util/HttpHelper.cs
source/Common/util/LogUtil.cs
source/Common/util/WaitUtil.cs
source/DUOStore/DUOStore.csproj
source/DUOStore/FrmAxisMove.cs
source/DUOStore/FrmBox.cs
source/DUOStore/FrmStore.cs
source/DUOStore/positionTool/FrmPositionTool.cs
source/DUOStore/useControl/AxisMoveControl.cs
source/DeviceLibrary/AXIS/HC/HCAxisManager.cs
source/DeviceLibrary/DeviceLibrary.csproj
source/DeviceLibrary/StoreConfig/BoxConfig_1.csv
source/DeviceLibrary/StoreConfig/BoxConfig_2.csv
source/DeviceLibrary/StoreConfig/FixPositions.csv
source/DeviceLibrary/StoreConfig/StoreConfig.csv
source/DeviceLibrary/StoreConfig/linePositions_1.csv
source/DeviceLibrary/StoreConfig/linePositions_2.csv
source/DeviceLibrary/device/halcon/CodeManager.cs
source/DeviceLibrary/duoStore/BoxBean.cs
source/DeviceLibrary/duoStore/BoxBean_Partial.cs
source/DeviceLibrary/duoStore/BoxBean_Shelf.cs
source/DeviceLibrary/duoStore/DUOStoreBean.cs
source/DeviceLibrary/duoStore/DUOStoreBean_Partial.cs
source/DeviceLibrary/duoStore/DUOStoreBean_RaiseStation.cs
source/DeviceLibrary/duoStore/ElectricGripper.cs
source/DeviceLibrary/duoStore/StoreManager.cs
source/DeviceLibrary/store/KTK_Store.cs
source/DeviceLibrary/store/StoreStep.cs
source/LoadCVSLibrary/storeConfig/ConfigItemBase.cs
source/LoadCVSLibrary/storeConfig/config/Store_Config.cs
source/Common/util/HttpHelper.cs
查看文件 @
8887225
...
...
@@ -94,8 +94,9 @@ namespace OnlineStore.Common
Operation
reOP
=
JsonHelper
.
DeserializeJsonToObject
<
Operation
>(
result
);
if
(
isLog
==
1
||
reOP
.
op
>
0
)
{
LogUtil
.
info
(
"【"
+
url
+
"】发送【"
+
json
+
"】收到【"
+
result
+
"】"
);
//
LogUtil.info("【"+url+"】发送【" + json + "】收到【" + result + "】");
}
return
reOP
;
}
catch
(
Exception
ex
)
{
...
...
source/Common/util/LogUtil.cs
查看文件 @
8887225
...
...
@@ -112,16 +112,13 @@ namespace OnlineStore.Common
{
logList
.
RemoveAt
(
0
);
}
string
text
=
""
;
foreach
(
string
str
in
logList
)
{
text
+=
str
;
}
string
text
=
string
.
Join
(
""
,
logList
);
System
.
DateTime
now
=
System
.
DateTime
.
Now
;
string
newmsg
=
now
.
ToLongTimeString
()
+
" "
+
msg
+
Environment
.
NewLine
;
logList
.
Add
(
newmsg
);
showLogEvent
?.
Invoke
(
text
+
newmsg
,
Color
.
Black
);
showLogEvent
?.
Invoke
(
text
+
newmsg
,
color
);
if
(
logBox
==
null
)
{
...
...
source/Common/util/WaitUtil.cs
查看文件 @
8887225
...
...
@@ -3,6 +3,7 @@ using System.Collections.Generic;
using
System.Linq
;
using
System.Text
;
using
System.Threading
;
using
System.Threading.Tasks
;
namespace
OnlineStore.Common
{
...
...
@@ -18,6 +19,21 @@ namespace OnlineStore.Common
/// <param name="isOk"></param>
public
static
bool
Wait
(
int
timeout
,
IsOk
isOk
,
string
waitName
=
""
)
{
Task
w
=
Task
.
Delay
(
timeout
);
Task
p
=
Task
.
Run
(()
=>
{
while
(
isOk
.
Invoke
())
{
Task
.
Delay
(
100
).
Wait
();
}
});
Task
.
WaitAny
(
w
,
p
);
return
true
;
//p.Wait();
//return p.Result;
/*
DateTime startTime = System.DateTime.Now;
TimeSpan timoutSpan = TimeSpan.FromMilliseconds(timeout);
TimeSpan waitSpan = TimeSpan.FromMilliseconds(0);
...
...
@@ -50,6 +66,7 @@ namespace OnlineStore.Common
Thread.Sleep(sleepTime);
waitSpan = System.DateTime.Now.Subtract(startTime);
}
*/
}
}
}
source/DUOStore/DUOStore.csproj
查看文件 @
8887225
...
...
@@ -42,9 +42,6 @@
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\GeneralClassLibrary\CodeLibraryProject\CodeLibrary\bin\Debug\CodeLibrary.dll</HintPath>
</Reference>
<Reference Include="halcondotnet">
<HintPath>..\..\dll\halcondotnet.dll</HintPath>
</Reference>
<Reference Include="HuichuanLibrary, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\HuichuanLibrary\HuichuanLibrary\bin\Debug\HuichuanLibrary.dll</HintPath>
...
...
source/DUOStore/FrmAxisMove.cs
查看文件 @
8887225
...
...
@@ -34,6 +34,10 @@ namespace OnlineStore.DUOStore
private
void
FrmTest_Load
(
object
sender
,
EventArgs
e
)
{
StoreManager
.
Store
.
Config
.
T1_Batch_Axis
=
StoreManager
.
Store
.
T1_BatchAxis
.
Config
;
StoreManager
.
Store
.
Config
.
T2_Middle_Axis
=
StoreManager
.
Store
.
T2_MiddleAxis
.
Config
;
StoreManager
.
Store
.
Config
.
T3_Updown_Axis
=
StoreManager
.
Store
.
T3_UpdownAxis
.
Config
;
StoreManager
.
Store
.
Config
.
T4_InOut_Axis
=
StoreManager
.
Store
.
T4_InOut_Axis
.
Config
;
axisMoveControl1
.
LoadData
(
StoreManager
.
Store
);
//new AxisBean[] { StoreManager.Store.T1_BatchAxis, StoreManager.Store.T2_MiddleAxis, StoreManager.Store.T3_UpdownAxis, StoreManager.Store.T4_InOut_Axis }
LoadPostion
();
...
...
source/DUOStore/FrmBox.cs
查看文件 @
8887225
...
...
@@ -70,8 +70,7 @@ namespace OnlineStore.DUOStore
txtUpDownP2
.
Text
=
BoxBean
.
Config
.
UpDownAxis_P2
.
ToString
();
txtMiddleP11
.
Text
=
BoxBean
.
Config
.
MiddleAxis_P11
.
ToString
();
txtInoutP11
.
Text
=
BoxBean
.
Config
.
InOutAxis_P11
.
ToString
();
//txtComP3.Text = BoxBean.Config.CompAxis_P3.ToString();
//txtInOutP2.Text = BoxBean.Config.InOutAxis_P2.ToString();
txtInOutP2
.
Text
=
BoxBean
.
Config
.
InOutAxis_P2
.
ToString
();
LoadPData
(
acPosition
);
chbDebug
.
Checked
=
BoxBean
.
IsDebug
;
...
...
@@ -280,8 +279,7 @@ namespace OnlineStore.DUOStore
txtMiddleP2
.
Text
=
acPosition
.
MiddleAxis_P2
.
ToString
();
txtComP2
.
Text
=
acPosition
.
ComAxis_P2
.
ToString
();
txtComP3
.
Text
=
acPosition
.
ComAxis_P3
.
ToString
();
//int comP2 = BoxBean.Config.GetComP2(acPosition.BagHigh);
//txtComP2.Text = comP2.ToString();
lblSize
.
Text
=
"尺寸:"
+
acPosition
.
BagWidth
+
"*"
+
acPosition
.
BagHigh
;
}
}
...
...
@@ -478,7 +476,7 @@ namespace OnlineStore.DUOStore
private
void
btnMiddleP11_Click
(
object
sender
,
EventArgs
e
)
{
AxisAbsMove
(
BoxBean
.
Config
.
UpDown
_Axis
,
txtMiddleP11
,
BoxBean
.
Config
.
MiddleAxis_P11_Speed
);
AxisAbsMove
(
BoxBean
.
Config
.
Middle
_Axis
,
txtMiddleP11
,
BoxBean
.
Config
.
MiddleAxis_P11_Speed
);
}
private
void
btnMiddleP1_Click
(
object
sender
,
EventArgs
e
)
...
...
@@ -723,7 +721,7 @@ namespace OnlineStore.DUOStore
ioIP
=
BoxBean
.
Config
.
DIList
[
IO_Type
.
Fixture_Check
].
IO_IP
;
ioIndex
=
BoxBean
.
Config
.
DIList
[
IO_Type
.
Fixture_Laser
].
GetIOAddr
();
}
FrmPositionTool
frm
=
new
FrmPositionTool
(
PortName
,
slvAddr
,
ioIP
,
ioIndex
,
Text
,
BoxBean
.
ID
);
FrmPositionTool
frm
=
new
FrmPositionTool
(
BoxBean
.
Config
.
UpDown_Axis
,
ioIndex
,
Text
,
BoxBean
.
ID
);
frm
.
ShowDialog
();
}
...
...
source/DUOStore/FrmStore.cs
查看文件 @
8887225
...
...
@@ -152,6 +152,7 @@ namespace OnlineStore.DUOStore
foreach
(
EquipBase
equip
in
eqList
)
{
if
(
i
.
Equals
(
0
))
{
}
...
...
@@ -166,6 +167,10 @@ namespace OnlineStore.DUOStore
if
(!
equip
.
MoveInfo
.
MoveType
.
Equals
(
MoveType
.
None
))
{
s
=
StoreRunStatus
.
Busy
;
//BoxBean _equip = (BoxBean)equip;
//LogUtil.info(_equip.MoveInfo.ToString());
//LogUtil.info(_equip.MoveInfo.MoveParam.ToString());
if
(
equip
.
MoveInfo
.
MoveParam
!=
null
)
trayInfo
=
equip
.
MoveInfo
.
MoveParam
.
ToStr
();
}
SetItemText
(
i
,
item_move_info_index
,
trayInfo
);
...
...
@@ -282,8 +287,11 @@ namespace OnlineStore.DUOStore
IOManager
.
instance
.
CloseAllDO
();
IOManager
.
instance
.
CloseAllConnection
();
HumitureController
.
CloseAllPort
();
if
(
AxisManager
.
instance
!=
null
)
{
AxisManager
.
instance
.
CloseAllPort
();
AxisManager
.
instance
.
CloseCard
();
}
if
(
Camera
.
_cam
!=
null
)
{
Camera
.
_cam
.
CloseAll
();
...
...
source/DUOStore/positionTool/FrmPositionTool.cs
查看文件 @
8887225
...
...
@@ -29,14 +29,16 @@ namespace OnlineStore.DUOStore
public
int
ptpAcc
=
0
;
public
int
ptpDec
=
0
;
private
string
boxName
=
""
;
public
FrmPositionTool
(
string
protName
,
short
slvAddr
,
string
ioIp
,
int
ioIndex
,
string
text
,
int
ioSubType
)
public
FrmPositionTool
(
ConfigMoveAxis
configMoveAxis
,
int
ioIndex
,
string
text
,
int
ioSubType
)
{
InitializeComponent
();
this
.
PortName
=
prot
Name
;
this
.
SlvAddr
=
slvAddr
;
this
.
IoIp
=
ioIp
;
this
.
PortName
=
configMoveAxis
.
Pro
Name
;
this
.
SlvAddr
=
configMoveAxis
.
SlaveID
;
this
.
IoIp
=
""
;
this
.
IoIndex
=
ioIndex
;
this
.
subType
=
ioSubType
;
this
.
ptpAcc
=
configMoveAxis
.
AddSpeed
;
this
.
ptpDec
=
configMoveAxis
.
DelSpeed
;
boxName
=
text
.
Trim
().
Replace
(
"料仓"
,
""
);
this
.
Text
=
boxName
+
"_升降轴位置调试"
;
LogName
=
boxName
+
"_升降轴调试:"
;
...
...
source/DUOStore/useControl/AxisMoveControl.cs
查看文件 @
8887225
...
...
@@ -72,8 +72,8 @@ namespace OnlineStore.DUOStore
}
//如果是取料升降轴,取料旋转轴,如果进出轴不在待机点,不能运动
if
(
boxBean
.
Config
.
UpDown_Axis
.
IsSameAxis
(
PortName
,
SlvAddr
)
||
(
boxBean
.
Config
.
Middle_Axis
.
IsSameAxis
(
PortName
,
SlvAddr
)))
if
(
boxBean
.
Config
!=
null
&&
(
boxBean
.
Config
.
UpDown_Axis
.
IsSameAxis
(
PortName
,
SlvAddr
)
||
(
boxBean
.
Config
.
Middle_Axis
.
IsSameAxis
(
PortName
,
SlvAddr
)))
)
{
int
InOutDefaultPosition
=
ConfigAppSettings
.
GetIntValue
(
Setting_Init
.
InOutDefaultPosition
);
int
currValue
=
AxisManager
.
instance
.
GetActualtPosition
(
boxBean
.
Config
.
InOut_Axis
.
DeviceName
,
boxBean
.
Config
.
InOut_Axis
.
GetAxisValue
());
...
...
source/DeviceLibrary/AXIS/HC/HCAxisManager.cs
查看文件 @
8887225
...
...
@@ -21,6 +21,7 @@ namespace OnlineStore.DeviceLibrary
}
public
override
void
AbsMove
(
string
portName
,
short
slvAddr
,
int
targetPosition
,
int
targetSpeed
,
int
ptpAcc
,
int
ptpDec
)
{
HCLogUtil
.
LOGGER
.
Info
(
$
"slvAddr={slvAddr},targetPosition={targetPosition},targetSpeed={targetSpeed},ptpAcc={ptpAcc},ptpDec={ptpDec}"
);
HCBoardManager
.
AbsMove
((
short
)
slvAddr
,
targetPosition
,
targetSpeed
,
ptpAcc
,
ptpDec
);
}
...
...
source/DeviceLibrary/DeviceLibrary.csproj
查看文件 @
8887225
...
...
@@ -47,8 +47,9 @@
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\GeneralClassLibrary\CodeLibraryProject\CodeLibrary\bin\Debug\CodeLibrary.dll</HintPath>
</Reference>
<Reference Include="halcondotnet">
<HintPath>..\..\dll\halcondotnet.dll</HintPath>
<Reference Include="halcondotnet, Version=12.0.0.0, Culture=neutral, PublicKeyToken=4973bed59ddbf2b8, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\SO815-AutoInOutStore\dll\halcondotnet.dll</HintPath>
</Reference>
<Reference Include="HuichuanLibrary">
<HintPath>..\..\..\HuichuanLibrary\HuichuanLibrary\bin\Debug\HuichuanLibrary.dll</HintPath>
...
...
@@ -128,6 +129,9 @@
</ItemGroup>
<ItemGroup />
<ItemGroup>
<None Include="StoreConfig\FixPositions.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="StoreConfig\linePositions_2.csv">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
...
...
source/DeviceLibrary/StoreConfig/BoxConfig_1.csv
查看文件 @
8887225
...
...
@@ -10,8 +10,6 @@ PRO,,L2_上下轴_P2入料口高点,UpDownAxis_P2,10,,,,,,,,,,,,
PRO,,L1_旋转轴_P1待机点/入料口位置,MiddleAxis_P1,10,,,,,,,,,,,,
PRO,,L3_进出轴_P1待机点,InOutAxis_P1,10,,,,,,,,,,,,
PRO,,L4_压紧轴_P1待机点,CompAxis_P1,10,,,,,,,,,,,,
PRO,,L4_压紧轴_P3压紧前点,CompAxis_P3,10,,,,,,,,,,,,
PRO,,L4_压紧轴_P2压紧点范围对应值,CompAxis_P2_List,8=42835;12=38557;16=34550;20=30540;24=26030;,,,,,,,,,,,,
,,,,,,,,,,,,,,,,
PRO,,L2_上下轴_P11-出料口-低点,UpDownAxis_P11,10,,,,,,,,,,,,
PRO,,L2_上下轴_P12-出料口-高点,UpDownAxis_P12,10,,,,,,,,,,,,
...
...
source/DeviceLibrary/StoreConfig/BoxConfig_2.csv
查看文件 @
8887225
...
...
@@ -10,8 +10,6 @@ PRO,,R2_上下轴_P2扫码放料高点缓冲点,UpDownAxis_P2,10,,,,,,,,,,,,
PRO,,R1_旋转轴_P1待机点/扫码放料点,MiddleAxis_P1,10,,,,,,,,,,,,
PRO,,R3_进出轴_P1待机点,InOutAxis_P1,10,,,,,,,,,,,,
PRO,,R4_压紧轴_P1待机点,CompAxis_P1,10,,,,,,,,,,,,
PRO,,R4_压紧轴_P3压紧前点,CompAxis_P3,10,,,,,,,,,,,,
PRO,,R4_压紧轴_P2压紧点范围对应值,CompAxis_P2_List,8=42835;12=38557;16=34550;20=30540;24=26030;,,,,,,,,,,,,
,,,,,,,,,,,,,,,,
PRO,,R2_上下轴_P11-出料口-低点,UpDownAxis_P11,10,,,,,,,,,,,,
PRO,,R2_上下轴_P12-出料口-高点,UpDownAxis_P12,10,,,,,,,,,,,,
...
...
source/DeviceLibrary/StoreConfig/FixPositions.csv
0 → 100644
查看文件 @
8887225
位置,优先级,高度,宽度,料仓ID,旋转轴库位点P2,升降轴库位出料前点P5,升降轴库位出料缓冲点P6,升降轴库位入料前点P3,升降轴库位入料缓冲点P4,进出轴库位点取料点P3,压紧轴压紧点P2,压紧轴压紧前点P3
fix_1#7,1,8,7,1,306200,1290614,1299614,1299614,1290614,110692,10,10
fix_2#11,2,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
fix_2#13,3,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
source/DeviceLibrary/StoreConfig/StoreConfig.csv
查看文件 @
8887225
...
...
@@ -123,7 +123,8 @@ PRO,0,T3_升降轴P2速度/快速度,UpdownAxis_P2Speed,501,,,,,,,,,,,,
PRO,0,T3_升降轴P3速度/慢速度,UpdownAxis_P3Speed,502,,,,,,,,,,,,
PRO,0,T3_升降轴P4速度/快速度,UpdownAxis_P4Speed,503,,,,,,,,,,,,
PRO,0,T3_升降轴P5速度/慢速度,UpdownAxis_P5Speed,504,,,,,,,,,,,,
PRO,0,T32_升降轴P6速度/快速度,UpdownAxis_P6Speed,505,,,,,,,,,,,,
PRO,0,T3_升降轴P6速度/快速度,UpdownAxis_P6Speed,505,,,,,,,,,,,,
PRO,0,T3_升降轴高度转换系数(1mm对应的脉冲),UpdownAxis_ChangeValue,11000,,,,,,,,,,,,
,,,,,,,,,,,,,,,,
PRO,0,T4_进出轴待机点 P1,InOutAxis_P1,5000,,,,,,,,,,,,
PRO,0,T4_进出轴7寸取料点P2,InOutAxis_P2,5000,,,,,,,,,,,,
...
...
source/DeviceLibrary/StoreConfig/linePositions_1.csv
查看文件 @
8887225
位置,优先级,高度,宽度,料仓ID,旋转轴库位点P2,升降轴库位出料前点P5,升降轴库位出料缓冲点P6,升降轴库位入料前点P3,升降轴库位入料缓冲点P4,进出轴库位点取料点P3,压紧轴压紧点P2,压紧轴压紧前点P3
1#AC1_1_1_4,259,32,15,1,306200,1290614,1299614,1299614,1290614,140800,,
1#AC1_1_1_5,258,32,15,1,306200,1334970,1343970,1343970,1334970,140800,,
1#AC1_1_1_6,257,32,15,1,306200,1381622,1392122,1392122,1381622,140800,,
1#AC1_1_1_7,256,32,15,1,306200,1424390,1433390,1433390,1424390,140800,,
1#AC1_1_1_8,255,32,15,1,306200,1471088,1481488,1481488,1471088,140800,,
1#AC1_1_1_9,254,32,15,1,306200,1514627,1525627,1525627,1514627,140800,,
1#AC1_1_1_10,253,32,15,1,306200,1561503,1570503,1570503,1561503,140800,,
1#AC1_1_1_11,252,32,15,1,306200,1603404,1612404,1612404,1603404,140800,,
1#AC1_1_1_12,251,32,15,1,306200,1650000,1660593,1660593,1650000,140800,,
1#AC1_1_1_13,250,32,15,1,306200,1693078,1702078,1702078,1693078,140800,,
1#AC1_1_1_14,249,32,15,1,306200,1738576,1747576,1747576,1738576,140800,,
1#AC1_1_1_15,248,32,15,1,306200,1785295,1794295,1794295,1785295,140800,,
1#AC1_1_1_16,247,12,15,1,436077,9671,20171,20171,9671,140800,,
1#AC1_1_1_17,246,12,15,1,436077,39893,50393,50393,39893,140800,,
1#AC1_1_1_18,245,12,15,1,436077,70661,81161,81161,70661,140800,,
1#AC1_1_1_19,244,12,15,1,436077,98713,109213,109213,98713,140800,,
1#AC1_1_1_20,243,12,15,1,436077,128728,139228,139228,128728,140800,,
1#AC1_1_1_21,242,12,15,1,436077,159195,169695,169695,159195,140800,,
1#AC1_1_2_4,241,12,15,1,436077,189134,199634,199634,189134,140800,,
1#AC1_1_2_5,240,12,15,1,436077,219845,230345,230345,219845,140800,,
1#AC1_1_2_6,239,12,15,1,436077,252000,262500,262500,252000,140800,,
1#AC1_1_2_7,238,12,15,1,436077,280421,290921,290921,280421,140800,,
1#AC1_1_2_8,237,12,15,1,436077,312224,322724,322724,312224,140800,,
1#AC1_1_2_9,236,12,15,1,436077,342256,352756,352756,342256,140800,,
1#AC1_1_2_10,235,12,15,1,436077,369382,379882,379882,369382,140800,,
1#AC1_1_2_11,234,12,15,1,436077,399751,410251,410251,399751,140800,,
1#AC1_1_2_12,233,12,15,1,436200,430923,441423,441423,430923,140800,,
1#AC1_1_2_13,232,12,15,1,436157,459859,470359,470359,459859,140800,,
1#AC1_1_2_14,231,12,15,1,436214,489685,500185,500185,489685,140800,,
1#AC1_1_2_15,230,12,15,1,436271,522581,533081,533081,522581,140800,,
1#AC1_1_2_16,229,12,15,1,435628,550105,560605,560605,550105,140800,,
1#AC1_1_2_17,228,12,15,1,435585,583474,593974,593974,583474,140800,,
1#AC1_1_2_18,227,12,15,1,435542,612943,623443,623443,612943,140800,,
1#AC1_1_2_19,226,12,15,1,435499,642389,652889,652889,642389,140800,,
1#AC1_1_2_20,225,12,15,1,435456,670221,680721,680721,670221,140800,,
1#AC1_1_2_21,224,12,15,1,435413,700236,713736,713736,700236,140800,,
,,,,,,,,,,,,
,,,,,,,,,,,,
,,,,,,,,,,,,
,,,,,,,,,,,,
,,,,,,,,,,,,
,,,,,,,,,,,,
,,,,,,,,,,,,
,,,,,,,,,,,,
1#AC1_1_1_4,259,32,15,1,306200,1290614,1299614,1299614,1290614,140800,20,20
1#AC1_1_1_5,258,32,15,1,306200,1334970,1343970,1343970,1334970,140800,20,20
1#AC1_1_1_6,257,32,15,1,306200,1381622,1392122,1392122,1381622,140800,20,20
1#AC1_1_1_7,256,32,15,1,306200,1424390,1433390,1433390,1424390,140800,20,20
1#AC1_1_1_8,255,32,15,1,306200,1471088,1481488,1481488,1471088,140800,20,20
1#AC1_1_1_9,254,32,15,1,306200,1514627,1525627,1525627,1514627,140800,20,20
1#AC1_1_1_10,253,32,15,1,306200,1561503,1570503,1570503,1561503,140800,20,20
1#AC1_1_1_11,252,32,15,1,306200,1603404,1612404,1612404,1603404,140800,20,20
1#AC1_1_1_12,251,32,15,1,306200,1650000,1660593,1660593,1650000,140800,20,20
1#AC1_1_1_13,250,32,15,1,306200,1693078,1702078,1702078,1693078,140800,20,20
1#AC1_1_1_14,249,32,15,1,306200,1738576,1747576,1747576,1738576,140800,20,20
1#AC1_1_1_15,248,32,15,1,306200,1785295,1794295,1794295,1785295,140800,20,20
1#AC1_1_1_16,247,12,15,1,436077,9671,20171,20171,9671,140800,20,20
1#AC1_1_1_17,246,12,15,1,436077,39893,50393,50393,39893,140800,20,20
1#AC1_1_1_18,245,12,15,1,436077,70661,81161,81161,70661,140800,20,20
1#AC1_1_1_19,244,12,15,1,436077,98713,109213,109213,98713,140800,20,20
1#AC1_1_1_20,243,12,15,1,436077,128728,139228,139228,128728,140800,20,20
1#AC1_1_1_21,242,12,15,1,436077,159195,169695,169695,159195,140800,20,20
1#AC1_1_2_4,241,12,15,1,436077,189134,199634,199634,189134,140800,20,20
1#AC1_1_2_5,240,12,15,1,436077,219845,230345,230345,219845,140800,20,20
1#AC1_1_2_6,239,12,15,1,436077,252000,262500,262500,252000,140800,20,20
1#AC1_1_2_7,238,12,15,1,436077,280421,290921,290921,280421,140800,20,20
1#AC1_1_2_8,237,12,15,1,436077,312224,322724,322724,312224,140800,20,20
1#AC1_1_2_9,236,12,15,1,436077,342256,352756,352756,342256,140800,20,20
1#AC1_1_2_10,235,12,15,1,436077,369382,379882,379882,369382,140800,20,20
1#AC1_1_2_11,234,12,15,1,436077,399751,410251,410251,399751,140800,20,20
1#AC1_1_2_12,233,12,15,1,436200,430923,441423,441423,430923,140800,20,20
1#AC1_1_2_13,232,12,15,1,436157,459859,470359,470359,459859,140800,20,20
1#AC1_1_2_14,231,12,15,1,436214,489685,500185,500185,489685,140800,20,20
1#AC1_1_2_15,230,12,15,1,436271,522581,533081,533081,522581,140800,20,20
1#AC1_1_2_16,229,12,15,1,435628,550105,560605,560605,550105,140800,20,20
1#AC1_1_2_17,228,12,15,1,435585,583474,593974,593974,583474,140800,20,20
1#AC1_1_2_18,227,12,15,1,435542,612943,623443,623443,612943,140800,20,20
1#AC1_1_2_19,226,12,15,1,435499,642389,652889,652889,642389,140800,20,20
1#AC1_1_2_20,225,12,15,1,435456,670221,680721,680721,670221,140800,20,20
1#AC1_1_2_21,224,12,15,1,435413,700236,713736,713736,700236,140800,20,20
source/DeviceLibrary/StoreConfig/linePositions_2.csv
查看文件 @
8887225
位置,优先级,高度,宽度,料仓ID,旋转轴库位点P2,升降轴库位出料前点P5,升降轴库位出料缓冲点P6,升降轴库位入料前点P3,升降轴库位入料缓冲点P4,进出轴库位点取料点P3,压紧轴压紧点P2,压紧轴压紧前点P3
1#AC1_0_1_1,1,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_1_2,2,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_1_3,3,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_1_4,4,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_1_5,5,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_1_6,6,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_1_7,7,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_1_8,8,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_1_9,9,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_1_10,10,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_1_11,11,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_1_12,12,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_1_13,13,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_1_14,14,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_1_15,15,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_1_16,16,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_1,17,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_2,18,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_3,19,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_4,20,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_5,21,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_6,22,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_7,23,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_8,24,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_9,25,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_10,26,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_11,27,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_12,28,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_13,29,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_14,30,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_15,31,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_16,32,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_17,33,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_18,34,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_19,35,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_20,36,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_21,37,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_22,38,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_23,39,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_24,40,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_25,41,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_26,42,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_27,43,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_28,44,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_29,45,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_30,46,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_31,47,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_32,48,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_33,49,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_34,50,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_2_35,51,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_1_1,52,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_1_2,53,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_1_3,54,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_1_4,55,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_1_5,56,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_1_6,57,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_1_7,58,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_1_8,59,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_1_9,60,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_1_10,61,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_1_11,62,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_1_12,63,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_1_13,64,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_1_14,65,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_1_15,66,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_1_16,67,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_1_17,68,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_1_18,69,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_1_19,70,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_1_20,71,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_1_21,72,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_2_1,73,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_2_2,74,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_2_3,75,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_2_4,76,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_2_5,77,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_2_6,78,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_2_7,79,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_2_8,80,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_2_9,81,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_2_10,82,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_2_11,83,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_2_12,84,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_2_13,85,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_2_14,86,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_2_15,87,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_2_16,88,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_2_17,89,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_2_18,90,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_2_19,91,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_2_20,92,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_2_21,93,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_3_1,94,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_3_2,95,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_3_3,96,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_3_4,97,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_3_5,98,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_3_6,99,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_3_7,100,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_3_8,101,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_3_9,102,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_3_10,103,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_3_11,104,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_3_12,105,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_3_13,106,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_3_14,107,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_3_15,108,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_3_16,109,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_3_17,110,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_3_18,111,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_3_19,112,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_3_20,113,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_3_21,114,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_1_3_22,115,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_1_1,116,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_1_2,117,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_1_3,118,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_1_4,119,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_1_5,120,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_1_6,121,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_1_7,122,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_1_8,123,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_1_9,124,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_1_10,125,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_1_11,126,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_1_12,127,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_1_13,128,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_1_14,129,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_1_15,130,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_1_16,131,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_1_17,132,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_1_18,133,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_1_19,134,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_1_20,135,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_1_21,136,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_2_1,137,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_2_2,138,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_2_3,139,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_2_4,140,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_2_5,141,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_2_6,142,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_2_7,143,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_2_8,144,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_2_9,145,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_2_10,146,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_2_11,147,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_2_12,148,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_2_13,149,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_2_14,150,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_2_15,151,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_2_16,152,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_2_17,153,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_2_18,154,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_2_19,155,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_2_20,156,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_2_21,157,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_3_1,158,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_3_2,159,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_3_3,160,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_3_4,161,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_3_5,162,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_3_6,163,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_3_7,164,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_3_8,165,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_3_9,166,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_3_10,167,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_3_11,168,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_3_12,169,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_3_13,170,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_3_14,171,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_3_15,172,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_3_16,173,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_3_17,174,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_3_18,175,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_3_19,176,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_3_20,177,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_3_21,178,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_2_3_22,179,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_1_1,180,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_1_2,181,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_1_3,182,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_1_4,183,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_1_5,184,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_1_6,185,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_1_7,186,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_1_8,187,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_1_9,188,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_1_10,189,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_1_11,190,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_1_12,191,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_1_13,192,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_1_14,193,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_1_15,194,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_1_16,195,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_1_17,196,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_1_18,197,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_1_19,198,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_1_20,199,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_1_21,200,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_2_1,201,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_2_2,202,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_2_3,203,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_2_4,204,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_2_5,205,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_2_6,206,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_2_7,207,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_2_8,208,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_2_9,209,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_2_10,210,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_2_11,211,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_2_12,212,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_2_13,213,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_2_14,214,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_2_15,215,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_2_16,216,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_2_17,217,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_2_18,218,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_2_19,219,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_2_20,220,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_2_21,221,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_3_1,222,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_3_2,223,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_3_3,224,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_3_4,225,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_3_5,226,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_3_6,227,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_3_7,228,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_3_8,229,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_3_9,230,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_3_10,231,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_3_11,232,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_3_12,233,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_3_13,234,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_3_14,235,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_3_15,236,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_3_16,237,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_3_17,238,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_3_18,239,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_3_19,240,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_3_20,241,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_3_21,242,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_3_3_22,243,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_1,244,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_2,245,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_3,246,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_4,247,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_5,248,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_6,249,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_7,250,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_8,251,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_9,252,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_10,253,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_11,254,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_12,255,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_13,256,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_14,257,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_15,258,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_16,259,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_17,260,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_18,261,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_19,262,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_20,263,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_21,264,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_22,265,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_23,266,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_24,267,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_25,268,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_26,269,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1A_27,270,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_1,271,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_2,272,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_3,273,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_4,274,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_5,275,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_6,276,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_7,277,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_8,278,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_9,279,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_10,280,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_11,281,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_12,282,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_13,283,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_14,284,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_15,285,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_16,286,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_17,287,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_18,288,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_19,289,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_20,290,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_21,291,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_22,292,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_23,293,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_24,294,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_25,295,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_26,296,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_27,297,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2A_28,298,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_1,299,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_2,300,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_3,301,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_4,302,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_5,303,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_6,304,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_7,305,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_8,306,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_9,307,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_10,308,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_11,309,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_12,310,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_13,311,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_14,312,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_15,313,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_16,314,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_17,315,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_18,316,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_19,317,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_20,318,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_21,319,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_22,320,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_23,321,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_24,322,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_25,323,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_26,324,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_1B_27,325,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_1,326,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_2,327,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_3,328,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_4,329,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_5,330,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_6,331,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_7,332,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_8,333,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_9,334,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_10,335,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_11,336,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_12,337,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_13,338,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_14,339,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_15,340,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_16,341,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_17,342,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_18,343,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_19,344,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_20,345,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_21,346,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_22,347,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_23,348,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_24,349,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_25,350,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_26,351,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_27,352,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_4_2B_28,353,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_1_1,354,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_1_2,355,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_1_3,356,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_1_4,357,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_1_5,358,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_1_6,359,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_1_7,360,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_1_8,361,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_1_9,362,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_1_10,363,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_1_11,364,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_1_12,365,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_1_13,366,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_1_14,367,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_1_15,368,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_1_16,369,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_1_17,370,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_1_18,371,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_1_19,372,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_1_20,373,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_1_21,374,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_2_1,375,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_2_2,376,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_2_3,377,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_2_4,378,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_2_5,379,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_2_6,380,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_2_7,381,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_2_8,382,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_2_9,383,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_2_10,384,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_2_11,385,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_2_12,386,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_2_13,387,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_2_14,388,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_2_15,389,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_2_16,390,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_2_17,391,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_2_18,392,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_2_19,393,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_2_20,394,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_2_21,395,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_3_1,396,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_3_2,397,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_3_3,398,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_3_4,399,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_3_5,400,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_3_6,401,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_3_7,402,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_3_8,403,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_3_9,404,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_3_10,405,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_3_11,406,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_3_12,407,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_3_13,408,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_3_14,409,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_3_15,410,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_3_16,411,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_3_17,412,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_3_18,413,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_3_19,414,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_3_20,415,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_3_21,416,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_5_3_22,417,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_1_1,418,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_1_2,419,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_1_3,420,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_1_4,421,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_1_5,422,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_1_6,423,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_1_7,424,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_1_8,425,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_1_9,426,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_1_10,427,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_1_11,428,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_1_12,429,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_1_13,430,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_1_14,431,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_1_15,432,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_1_16,433,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_1_17,434,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_1_18,435,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_1_19,436,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_1_20,437,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_1_21,438,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_2_1,439,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_2_2,440,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_2_3,441,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_2_4,442,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_2_5,443,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_2_6,444,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_2_7,445,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_2_8,446,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_2_9,447,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_2_10,448,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_2_11,449,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_2_12,450,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_2_13,451,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_2_14,452,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_2_15,453,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_2_16,454,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_2_17,455,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_2_18,456,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_2_19,457,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_2_20,458,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_2_21,459,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_3_1,460,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_3_2,461,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_3_3,462,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_3_4,463,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_3_5,464,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_3_6,465,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_3_7,466,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_3_8,467,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_3_9,468,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_3_10,469,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_3_11,470,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_3_12,471,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_3_13,472,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_3_14,473,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_3_15,474,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_3_16,475,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_3_17,476,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_3_18,477,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_3_19,478,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_3_20,479,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_3_21,480,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_6_3_22,481,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_1_1,482,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_1_2,483,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_1_3,484,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_1_4,485,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_1_5,486,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_1_6,487,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_1_7,488,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_1_8,489,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_1_9,490,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_1_10,491,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_1_11,492,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_1_12,493,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_1_13,494,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_1_14,495,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_1_15,496,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_1_16,497,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_1_17,498,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_1_18,499,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_1_19,500,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_1_20,501,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_1_21,502,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_2_1,503,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_2_2,504,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_2_3,505,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_2_4,506,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_2_5,507,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_2_6,508,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_2_7,509,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_2_8,510,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_2_9,511,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_2_10,512,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_2_11,513,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_2_12,514,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_2_13,515,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_2_14,516,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_2_15,517,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_2_16,518,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_2_17,519,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_2_18,520,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_2_19,521,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_2_20,522,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_2_21,523,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_3_1,524,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_3_2,525,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_3_3,526,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_3_4,527,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_3_5,528,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_3_6,529,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_3_7,530,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_3_8,531,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_3_9,532,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_3_10,533,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_3_11,534,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_3_12,535,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_3_13,536,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_3_14,537,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_3_15,538,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_3_16,539,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_3_17,540,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_3_18,541,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_3_19,542,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_3_20,543,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_3_21,544,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_7_3_22,545,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_1_1,546,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_1_2,547,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_1_3,548,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_1_4,549,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_1_5,550,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_1_6,551,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_1_7,552,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_1_8,553,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_1_9,554,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_1_10,555,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_1_11,556,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_1_12,557,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_1_13,558,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_1_14,559,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_1_15,560,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_1_16,561,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_1_17,562,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_1_18,563,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_1_19,564,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_1_20,565,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_1_21,566,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_2_1,567,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_2_2,568,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_2_3,569,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_2_4,570,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_2_5,571,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_2_6,572,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_2_7,573,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_2_8,574,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_2_9,575,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_2_10,576,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_2_11,577,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_2_12,578,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_2_13,579,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_2_14,580,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_2_15,581,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_2_16,582,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_2_17,583,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_2_18,584,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_2_19,585,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_2_20,586,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_2_21,587,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_3_1,588,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_3_2,589,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_3_3,590,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_3_4,591,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_3_5,592,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_3_6,593,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_3_7,594,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_3_8,595,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_3_9,596,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_3_10,597,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_3_11,598,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_3_12,599,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_3_13,600,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_3_14,601,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_3_15,602,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_3_16,603,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_3_17,604,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_3_18,605,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_3_19,606,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_3_20,607,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_3_21,608,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_8_3_22,609,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_1_1,610,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_1_2,611,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_1_3,612,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_1_4,613,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_1_5,614,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_1_6,615,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_1_7,616,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_1_8,617,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_1_9,618,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_1_10,619,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_1_11,620,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_1_12,621,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_1_13,622,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_1_14,623,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_1_15,624,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_1_16,625,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_1_17,626,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_1_18,627,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_1_19,628,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_1_20,629,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_1_21,630,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_2_1,631,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_2_2,632,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_2_3,633,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_2_4,634,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_2_5,635,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_2_6,636,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_2_7,637,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_2_8,638,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_2_9,639,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_2_10,640,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_2_11,641,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_2_12,642,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_2_13,643,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_2_14,644,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_2_15,645,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_2_16,646,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_2_17,647,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_2_18,648,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_2_19,649,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_2_20,650,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_2_21,651,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_3_1,652,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_3_2,653,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_3_3,654,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_3_4,655,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_3_5,656,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_3_6,657,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_3_7,658,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_3_8,659,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_3_9,660,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_3_10,661,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_3_11,662,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_3_12,663,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_3_13,664,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_3_14,665,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_3_15,666,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_3_16,667,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_3_17,668,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_3_18,669,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_3_19,670,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_3_20,671,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_3_21,672,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_9_3_22,673,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_1_1,674,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_1_2,675,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_1_3,676,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_1_4,677,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_1_5,678,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_1_6,679,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_1_7,680,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_1_8,681,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_1_9,682,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_1_10,683,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_1_11,684,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_1_12,685,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_1_13,686,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_1_14,687,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_1_15,688,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_1_16,689,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_1_17,690,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_1_18,691,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_1_19,692,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_1_20,693,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_1_21,694,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_2_1,695,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_2_2,696,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_2_3,697,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_2_4,698,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_2_5,699,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_2_6,700,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_2_7,701,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_2_8,702,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_2_9,703,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_2_10,704,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_2_11,705,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_2_12,706,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_2_13,707,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_2_14,708,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_2_15,709,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_2_16,710,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_2_17,711,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_2_18,712,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_2_19,713,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_2_20,714,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_2_21,715,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_3_1,716,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_3_2,717,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_3_3,718,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_3_4,719,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_3_5,720,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_3_6,721,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_3_7,722,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_3_8,723,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_3_9,724,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_3_10,725,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_3_11,726,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_3_12,727,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_3_13,728,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_3_14,729,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_3_15,730,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_3_16,731,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_3_17,732,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_3_18,733,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_3_19,734,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_3_20,735,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_3_21,736,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_10_3_22,737,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_1_1,738,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_1_2,739,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_1_3,740,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_1_4,741,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_1_5,742,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_1_6,743,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_1_7,744,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_1_8,745,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_1_9,746,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_1_10,747,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_1_11,748,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_1_12,749,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_1_13,750,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_1_14,751,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_1_15,752,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_1_16,753,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_1_17,754,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_1_18,755,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_1_19,756,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_1_20,757,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_1_21,758,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_2_1,759,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_2_2,760,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_2_3,761,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_2_4,762,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_2_5,763,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_2_6,764,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_2_7,765,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_2_8,766,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_2_9,767,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_2_10,768,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_2_11,769,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_2_12,770,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_2_13,771,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_2_14,772,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_2_15,773,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_2_16,774,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_2_17,775,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_2_18,776,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_2_19,777,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_2_20,778,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_2_21,779,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_3_1,780,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_3_2,781,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_3_3,782,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_3_4,783,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_3_5,784,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_3_6,785,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_3_7,786,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_3_8,787,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_3_9,788,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_3_10,789,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_3_11,790,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_3_12,791,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_3_13,792,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_3_14,793,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_3_15,794,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_3_16,795,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_3_17,796,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_3_18,797,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_3_19,798,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_3_20,799,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_3_21,800,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_11_3_22,801,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_1_1,802,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_1_2,803,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_1_3,804,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_1_4,805,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_1_5,806,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_1_6,807,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_1_7,808,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_1_8,809,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_1_9,810,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_1_10,811,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_1_11,812,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_1_12,813,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_1_13,814,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_1_14,815,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_1_15,816,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_1_16,817,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_1_17,818,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_1_18,819,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_1_19,820,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_1_20,821,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_1_21,822,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_2_1,823,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_2_2,824,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_2_3,825,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_2_4,826,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_2_5,827,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_2_6,828,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_2_7,829,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_2_8,830,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_2_9,831,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_2_10,832,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_2_11,833,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_2_12,834,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_2_13,835,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_2_14,836,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_2_15,837,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_2_16,838,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_2_17,839,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_2_18,840,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_2_19,841,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_2_20,842,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_2_21,843,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_3_1,844,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_3_2,845,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_3_3,846,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_3_4,847,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_3_5,848,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_3_6,849,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_3_7,850,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_3_8,851,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_3_9,852,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_3_10,853,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_3_11,854,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_3_12,855,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_3_13,856,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_3_14,857,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_3_15,858,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_3_16,859,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_3_17,860,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_3_18,861,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_3_19,862,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_3_20,863,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_3_21,864,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_12_3_22,865,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_1_1,866,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_1_2,867,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_1_3,868,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_1_4,869,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_1_5,870,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_1_6,871,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_1_7,872,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_1_8,873,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_1_9,874,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_1_10,875,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_1_11,876,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_1_12,877,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_1_13,878,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_1_14,879,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_1_15,880,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_1_16,881,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_1_17,882,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_1_18,883,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_1_19,884,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_1_20,885,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_1_21,886,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_2_1,887,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_2_2,888,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_2_3,889,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_2_4,890,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_2_5,891,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_2_6,892,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_2_7,893,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_2_8,894,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_2_9,895,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_2_10,896,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_2_11,897,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_2_12,898,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_2_13,899,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_2_14,900,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_2_15,901,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_2_16,902,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_2_17,903,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_2_18,904,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_2_19,905,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_2_20,906,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_2_21,907,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_3_1,908,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_3_2,909,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_3_3,910,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_3_4,911,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_3_5,912,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_3_6,913,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_3_7,914,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_3_8,915,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_3_9,916,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_3_10,917,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_3_11,918,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_3_12,919,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_3_13,920,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_3_14,921,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_3_15,922,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_3_16,923,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_3_17,924,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_3_18,925,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_3_19,926,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_3_20,927,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_3_21,928,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_13_3_22,929,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_1_1,930,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_1_2,931,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_1_3,932,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_1_4,933,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_1_5,934,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_1_6,935,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_1_7,936,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_1_8,937,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_1_9,938,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_1_10,939,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_1_11,940,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_1_12,941,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_1_13,942,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_1_14,943,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_1_15,944,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_1_16,945,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_1_17,946,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_1_18,947,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_1_19,948,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_1_20,949,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_1_21,950,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_2_1,951,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_2_2,952,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_2_3,953,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_2_4,954,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_2_5,955,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_2_6,956,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_2_7,957,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_2_8,958,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_2_9,959,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_2_10,960,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_2_11,961,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_2_12,962,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_2_13,963,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_2_14,964,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_2_15,965,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_2_16,966,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_2_17,967,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_2_18,968,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_2_19,969,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_2_20,970,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_2_21,971,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_3_1,972,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_3_2,973,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_3_3,974,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_3_4,975,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_3_5,976,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_3_6,977,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_3_7,978,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_3_8,979,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_3_9,980,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_3_10,981,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_3_11,982,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_3_12,983,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_3_13,984,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_3_14,985,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_3_15,986,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_3_16,987,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_3_17,988,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_3_18,989,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_3_19,990,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_3_20,991,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_3_21,992,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_14_3_22,993,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_1_1,994,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_1_2,995,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_1_3,996,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_1_4,997,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_1_5,998,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_1_6,999,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_1_7,1000,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_1_8,1001,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_1_9,1002,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_1_10,1003,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_1_11,1004,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_1_12,1005,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_1_13,1006,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_1_14,1007,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_1_15,1008,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_1_16,1009,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_1_17,1010,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_1_18,1011,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_1_19,1012,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_1_20,1013,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_1_21,1014,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_2_1,1015,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_2_2,1016,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_2_3,1017,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_2_4,1018,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_2_5,1019,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_2_6,1020,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_2_7,1021,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_2_8,1022,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_2_9,1023,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_2_10,1024,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_2_11,1025,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_2_12,1026,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_2_13,1027,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_2_14,1028,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_2_15,1029,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_2_16,1030,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_2_17,1031,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_2_18,1032,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_2_19,1033,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_2_20,1034,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_2_21,1035,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_3_1,1036,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_3_2,1037,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_3_3,1038,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_3_4,1039,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_3_5,1040,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_3_6,1041,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_3_7,1042,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_3_8,1043,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_3_9,1044,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_3_10,1045,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_3_11,1046,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_3_12,1047,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_3_13,1048,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_3_14,1049,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_3_15,1050,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_3_16,1051,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_3_17,1052,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_3_18,1053,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_3_19,1054,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_3_20,1055,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_3_21,1056,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_15_3_22,1057,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_1_1,1058,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_1_2,1059,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_1_3,1060,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_1_4,1061,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_1_5,1062,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_1_6,1063,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_1_7,1064,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_1_8,1065,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_1_9,1066,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_1_10,1067,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_1_11,1068,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_1_12,1069,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_1_13,1070,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_1_14,1071,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_1_15,1072,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_1_16,1073,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_1_17,1074,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_1_18,1075,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_1_19,1076,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_1_20,1077,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_1_21,1078,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_2_1,1079,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_2_2,1080,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_2_3,1081,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_2_4,1082,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_2_5,1083,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_2_6,1084,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_2_7,1085,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_2_8,1086,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_2_9,1087,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_2_10,1088,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_2_11,1089,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_2_12,1090,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_2_13,1091,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_2_14,1092,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_2_15,1093,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_2_16,1094,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_2_17,1095,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_2_18,1096,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_2_19,1097,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_2_20,1098,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_2_21,1099,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_3_1,1100,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_3_2,1101,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_3_3,1102,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_3_4,1103,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_3_5,1104,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_3_6,1105,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_3_7,1106,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_3_8,1107,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_3_9,1108,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_3_10,1109,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_3_11,1110,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_3_12,1111,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_3_13,1112,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_3_14,1113,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_3_15,1114,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_3_16,1115,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_3_17,1116,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_3_18,1117,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_3_19,1118,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_3_20,1119,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_3_21,1120,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_16_3_22,1121,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_1_1,1122,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_1_2,1123,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_1_3,1124,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_1_4,1125,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_1_5,1126,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_1_6,1127,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_1_7,1128,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_1_8,1129,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_1_9,1130,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_1_10,1131,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_1_11,1132,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_1_12,1133,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_1_13,1134,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_1_14,1135,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_1_15,1136,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_1_16,1137,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_1_17,1138,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_1_18,1139,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_1_19,1140,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_1_20,1141,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_1_21,1142,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_2_1,1143,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_2_2,1144,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_2_3,1145,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_2_4,1146,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_2_5,1147,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_2_6,1148,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_2_7,1149,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_2_8,1150,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_2_9,1151,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_2_10,1152,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_2_11,1153,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_2_12,1154,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_2_13,1155,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_2_14,1156,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_2_15,1157,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_2_16,1158,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_2_17,1159,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_2_18,1160,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_2_19,1161,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_2_20,1162,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_2_21,1163,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_3_1,1164,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_3_2,1165,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_3_3,1166,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_3_4,1167,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_3_5,1168,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_3_6,1169,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_3_7,1170,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_3_8,1171,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_3_9,1172,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_3_10,1173,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_3_11,1174,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_3_12,1175,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_3_13,1176,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_3_14,1177,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_3_15,1178,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_3_16,1179,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_3_17,1180,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_3_18,1181,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_3_19,1182,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_3_20,1183,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_3_21,1184,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_17_3_22,1185,8,7,2,306200,1290614,1299614,1299614,1290614,110692,,
1#AC1_0_1_1,1,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_1_2,2,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_1_3,3,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_1_4,4,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_1_5,5,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_1_6,6,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_1_7,7,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_1_8,8,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_1_9,9,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_1_10,10,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_1_11,11,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_1_12,12,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_1_13,13,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_1_14,14,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_1_15,15,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_1_16,16,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_1,17,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_2,18,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_3,19,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_4,20,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_5,21,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_6,22,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_7,23,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_8,24,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_9,25,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_10,26,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_11,27,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_12,28,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_13,29,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_14,30,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_15,31,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_16,32,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_17,33,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_18,34,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_19,35,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_20,36,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_21,37,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_22,38,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_23,39,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_24,40,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_25,41,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_26,42,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_27,43,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_28,44,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_29,45,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_30,46,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_31,47,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_32,48,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_33,49,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_34,50,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_0_2_35,51,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_1_1_1,52,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_1_1_2,53,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_1_1_3,54,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_1_1_4,55,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_1_1_5,56,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_1_1_6,57,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_1_1_7,58,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_1_1_8,59,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_1_1_9,60,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_1_1_10,61,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_1_1_11,62,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_1_1_12,63,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
1#AC1_1_1_13,64,8,7,2,306200,1290614,1299614,1299614,1290614,110692,10,10
source/DeviceLibrary/device/halcon/CodeManager.cs
查看文件 @
8887225
...
...
@@ -106,6 +106,7 @@ namespace OnlineStore.DeviceLibrary
{
codeCount
=
1
;
}
LogUtil
.
info
(
$
"Task=>cameraList={cameraList.Count()}"
);
List
<
string
>
codeList
=
new
List
<
string
>();
if
(
cameraList
==
null
||
cameraList
.
Count
<=
0
)
{
...
...
@@ -114,29 +115,33 @@ namespace OnlineStore.DeviceLibrary
try
{
Task
[]
cameraTask
=
new
Task
[
cameraList
.
Count
()];
for
(
int
i
=
0
;
i
<
cameraList
.
Count
();
i
++)
{
var
cameraName
=
cameraList
[
i
];
cameraTask
[
i
]
=
Task
.
Run
(()
=>
{
//cameraTask[i] = Task.Run(() =>
//{
if
(
cameraName
.
Trim
().
Equals
(
""
))
{
return
;
continue
;
}
DateTime
startTime
=
DateTime
.
Now
;
LogUtil
.
info
(
" 【"
+
cameraName
+
"】开始取图片"
);
HalconDotNet
.
HObject
ho_Image
=
null
;
LogUtil
.
info
(
" 【"
+
cameraName
+
"】开始取图片2"
);
Bitmap
bmp
=
null
;
try
{
bool
nohalcon
=
true
;
LogUtil
.
info
(
" 【"
+
cameraName
+
"】开始取图片3"
);
ho_Image
=
Camera
.
_cam
.
CaptureOnImage
(
cameraName
,
out
bmp
,
nohalcon
);
if
(
ho_Image
==
null
&&
!
nohalcon
)
{
LogUtil
.
error
(
" 【"
+
cameraName
+
"】取图片失败["
+
Camera
.
_cam
.
ErrInfo
+
"],关闭相机"
);
CloseCamera
(
cameraName
);
return
;
continue
;
}
LogUtil
.
info
(
" 【"
+
cameraName
+
"】取图片完成,开始扫码"
);
string
r
=
""
;
...
...
@@ -211,10 +216,10 @@ namespace OnlineStore.DeviceLibrary
bmp
.
Dispose
();
}
});
//
cameraTask[i].Wait();
//
});
//
cameraTask[i].Wait();
}
Task
.
WaitAll
(
cameraTask
);
//
Task.WaitAll(cameraTask);
}
catch
(
AccessViolationException
e
)
{
...
...
source/DeviceLibrary/duoStore/BoxBean.cs
查看文件 @
8887225
...
...
@@ -230,7 +230,7 @@ namespace OnlineStore.DeviceLibrary
return
;
}
//复位和回原点要等轴3进出轴ORG亮了以后才能返回其他轴
MoveInfo
.
NextMoveStep
(
StoreMoveStep
.
BOX_H03_OtherAxisHome
);
MoveInfo
.
NextMoveStep
(
StoreMoveStep
.
BOX_H03_OtherAxisHome
_wait
);
MoveInfo
.
WaitList
.
Add
(
WaitResultInfo
.
WaitTime
(
2000
));
LogInfo
(
MoveInfo
.
MoveType
+
": 压紧轴,旋转轴,上下轴开始 原点返回,关闭NG门"
);
CylinderMove
(
MoveInfo
,
IO_Type
.
OutDoor_Up
,
IO_Type
.
OutDoor_Down
);
...
...
@@ -239,6 +239,10 @@ namespace OnlineStore.DeviceLibrary
UpdownAxis
.
HomeMove
(
MoveInfo
);
break
;
case
StoreMoveStep
.
BOX_H03_OtherAxisHome_wait
:
MoveInfo
.
WaitList
.
Add
(
WaitResultInfo
.
WaitTime
(
500
));
MoveInfo
.
NextMoveStep
(
StoreMoveStep
.
BOX_H03_OtherAxisHome
);
break
;
case
StoreMoveStep
.
BOX_H03_OtherAxisHome
:
MoveInfo
.
NextMoveStep
(
StoreMoveStep
.
BOX_H04_OtherAxisBack
);
MoveInfo
.
WaitList
.
Add
(
WaitResultInfo
.
WaitTime
(
2000
));
...
...
source/DeviceLibrary/duoStore/BoxBean_Partial.cs
查看文件 @
8887225
...
...
@@ -333,7 +333,8 @@ namespace OnlineStore.DeviceLibrary
InOutBackToP1
(
MoveInfo
.
MoveParam
.
MoveP
.
InOut_P1
);
return
true
;
}
//修正库位
LineMoveP
fixMoveP
=
new
LineMoveP
();
protected
override
void
OutStoreProcess
()
{
string
outType
=
"出库:"
;
...
...
@@ -404,23 +405,82 @@ namespace OnlineStore.DeviceLibrary
else
if
(
MoveInfo
.
IsStep
(
StoreMoveStep
.
SO_06_ToDoor
))
{
var
fixposid
=
$
"fix_{this.ID}#{MoveInfo.MoveParam.PlateW}"
;
var
fixposition
=
CSVPositionReader
<
ACBoxPosition
>.
GetPositon
(
fixposid
);
InOutStoreLog
(
outType
+
$
"获取修正库位置{fixposid}={fixposition}"
);
if
(
fixposition
==
null
)
{
MoveInfo
.
NextMoveStep
(
StoreMoveStep
.
SO_07_FixtureCheck
);
}
else
{
MoveInfo
.
NextMoveStep
(
StoreMoveStep
.
SO_06A_01_FixDisk
);
fixMoveP
.
ComPress_P1
=
Config
.
CompAxis_P1
;
fixMoveP
.
InOut_P1
=
Config
.
InOutAxis_P1
;
fixMoveP
.
Middle_P1
=
Config
.
MiddleAxis_P1
;
fixMoveP
.
InOut_P2
=
Config
.
InOutAxis_P2
;
fixMoveP
.
UpDown_P1
=
Config
.
UpDownAxis_P1
;
fixMoveP
.
UpDown_P2
=
Config
.
UpDownAxis_P2
;
fixMoveP
.
ComPress_P2
=
fixposition
.
ComAxis_P2
;
fixMoveP
.
ComPress_P3
=
fixposition
.
ComAxis_P3
;
fixMoveP
.
InOut_P3
=
fixposition
.
InoutAxis_P3
;
fixMoveP
.
Middle_P2
=
fixposition
.
MiddleAxis_P2
;
fixMoveP
.
UpDown_P3
=
fixposition
.
UpdownAxis_IH_P3
;
fixMoveP
.
UpDown_P4
=
fixposition
.
UpdownAxis_IL_P4
;
fixMoveP
.
UpDown_P5
=
fixposition
.
UpdownAxis_OH_P5
;
fixMoveP
.
UpDown_P6
=
fixposition
.
UpdownAxis_OL_P6
;
}
InOutStoreLog
(
outType
+
"等待料叉检测信号 "
);
MoveInfo
.
WaitList
.
Add
(
WaitResultInfo
.
WaitIO
(
IO_Type
.
Fixture_Check
,
IO_VALUE
.
HIGH
));
//if (StoreManager.Store.BoxDoorFree(ID))
//{
// MoveInfo.NextMoveStep(StoreMoveStep.SO_08_InoutToP2);
// InOutStoreLog(outType + "进出轴到P2 [" + moveP.InOut_P2 + "]");
// InoutAxis.AbsMove(MoveInfo, moveP.InOut_P2, Config.InOutAxis_P2_Speed);
// ClearTimeoutAlarm("进出轴可以到P2");
//}
//else if (MoveInfo.IsTimeOut(60))
//{
// WarnMsg = MoveInfo.Name + "[" + MoveInfo.MoveStep + "] 等待 进出轴可以到P2 超时 [" + Math.Round(MoveInfo.StepSpan().TotalSeconds, 1) + "]秒";
// LogUtil.error(WarnMsg, ID * 1000 + 30);
// Alarm(AlarmType.IoSingleTimeOut);
//}
}
#
region
修正料盘
else
if
(
MoveInfo
.
IsStep
(
StoreMoveStep
.
SO_06A_01_FixDisk
))
{
MoveInfo
.
NextMoveStep
(
StoreMoveStep
.
SO_06A_02_FixDisk
);
InOutStoreLog
(
outType
+
"[修正]升降轴到P3["
+
moveP
.
UpDown_P3
+
"]"
);
UpdownAxis
.
AbsMove
(
MoveInfo
,
moveP
.
UpDown_P3
,
Config
.
UpDownAxis_P4_Speed
);
}
else
if
(
MoveInfo
.
IsStep
(
StoreMoveStep
.
SO_06A_02_FixDisk
))
{
MoveInfo
.
NextMoveStep
(
StoreMoveStep
.
SO_06A_03_FixDisk
);
InOutStoreLog
(
outType
+
"[修正]进出轴到P3 ["
+
moveP
.
InOut_P3
+
"] "
);
InoutAxis
.
AbsMove
(
MoveInfo
,
moveP
.
InOut_P3
,
Config
.
InOutAxis_P3_Speed
);
}
else
if
(
MoveInfo
.
IsStep
(
StoreMoveStep
.
SO_06A_03_FixDisk
))
{
MoveInfo
.
NextMoveStep
(
StoreMoveStep
.
SO_06A_04_FixDisk
);
InOutStoreLog
(
outType
+
"[修正]升降轴到P4["
+
moveP
.
UpDown_P4
+
"],压紧轴到P3["
+
moveP
.
ComPress_P3
+
"]"
);
ComAxis
.
AbsMove
(
MoveInfo
,
moveP
.
ComPress_P3
,
Config
.
CompAxis_P3_Speed
);
UpdownAxis
.
AbsMove
(
MoveInfo
,
moveP
.
UpDown_P4
,
Config
.
UpDownAxis_P4_Speed
);
}
else
if
(
MoveInfo
.
IsStep
(
StoreMoveStep
.
SO_06A_04_FixDisk
))
{
MoveInfo
.
NextMoveStep
(
StoreMoveStep
.
SO_06A_05_FixDisk
);
InOutStoreLog
(
outType
+
"[修正]升降轴到P6["
+
fixMoveP
.
UpDown_P6
+
"],压紧轴到P2["
+
fixMoveP
.
ComPress_P2
+
"]"
);
ComAxis
.
AbsMove
(
MoveInfo
,
fixMoveP
.
ComPress_P2
,
Config
.
CompAxis_P2_Speed
);
UpdownAxis
.
AbsMove
(
MoveInfo
,
fixMoveP
.
UpDown_P6
,
Config
.
UpDownAxis_P6_Speed
);
}
else
if
(
MoveInfo
.
IsStep
(
StoreMoveStep
.
SO_06A_05_FixDisk
))
{
MoveInfo
.
NextMoveStep
(
StoreMoveStep
.
SO_06A_06_FixDisk
);
InOutStoreLog
(
outType
+
"[修正]进出轴返回P1["
+
fixMoveP
.
InOut_P1
+
"]"
);
InOutBackToP1
(
fixMoveP
.
InOut_P1
);
}
else
if
(
MoveInfo
.
IsStep
(
StoreMoveStep
.
SO_06A_06_FixDisk
))
{
MoveInfo
.
NextMoveStep
(
StoreMoveStep
.
SO_07_FixtureCheck
);
InOutStoreLog
(
outType
+
"[修正]升降轴到P2["
+
moveP
.
UpDown_P2
+
"] "
);
UpdownAxis
.
AbsMove
(
MoveInfo
,
moveP
.
UpDown_P2
,
Config
.
UpDownAxis_P1_Speed
);
}
#
endregion
else
if
(
MoveInfo
.
IsStep
(
StoreMoveStep
.
SO_07_FixtureCheck
))
{
if
(
StoreManager
.
Store
.
BoxDoorFree
(
ID
))
...
...
source/DeviceLibrary/duoStore/BoxBean_Shelf.cs
查看文件 @
8887225
...
...
@@ -168,7 +168,7 @@ namespace OnlineStore.DeviceLibrary
}
string
server
=
ConfigAppSettings
.
GetValue
(
Setting_Init
.
http_server
);
Operation
resultOperation
=
HttpHelper
.
PostOperation
(
StoreManager
.
GetPostApi
(
server
),
lineOperation
);
//LogUtil.info("resultOperation="+ JsonHelper.SerializeObject(resultOperation));
//发送状态信息到服务器
if
(
resultOperation
==
null
||
(
resultOperation
.
op
<=
0
))
{
...
...
source/DeviceLibrary/duoStore/DUOStoreBean.cs
查看文件 @
8887225
...
...
@@ -106,12 +106,7 @@ namespace OnlineStore.DeviceLibrary
HasT4Axis
=
Convert
.
ToBoolean
(
ConfigAppSettings
.
GetValue
(
Setting_Init
.
HasT4Axis
));
Task
.
Factory
.
StartNew
(
delegate
{
if
(!
electricClamp
.
OpenPort
(
Config
.
Clamp1Port
))
throw
new
Exception
(
$
"电动夹爪打开失败 端口:{Config.Clamp1Port}"
);
else
{
LogUtil
.
info
(
Name
+
$
"加载电夹爪成功:{Config.Clamp1Port}"
);
electricClamp
.
HomeReset
();
}
//RFIDManager.RfidReader.Open(rfidList.ToArray());
IOManager
.
instance
.
ConnectionIOList
(
ioList
);
AxisManager
.
Init
();
...
...
@@ -120,12 +115,27 @@ namespace OnlineStore.DeviceLibrary
IOMove
(
IO_Type
.
AutoRun_HddLed
,
IO_VALUE
.
LOW
);
IOMove
(
IO_Type
.
RunSign_HddLed
,
IO_VALUE
.
LOW
);
mainTimer
.
Enabled
=
true
;
if
(!
electricClamp
.
OpenPort
(
Config
.
Clamp1Port
))
{
Thread
.
Sleep
(
1000
);
electricClamp
.
ClosePort
();
if
(!
electricClamp
.
OpenPort
(
Config
.
Clamp1Port
))
{
LogUtil
.
info
(
Name
+
$
"电动夹爪打开失败 端口:{Config.Clamp1Port}"
);
return
;
}
}
LogUtil
.
info
(
Name
+
$
"加载电夹爪成功:{Config.Clamp1Port}"
);
electricClamp
.
HomeReset
();
canStart
=
true
;
int
isAuto
=
ConfigAppSettings
.
GetIntValue
(
Setting_Init
.
App_AutoRun
);
if
(
isAuto
==
1
)
{
IoCheckTimer
.
Enabled
=
true
;
}
LogUtil
.
info
(
Name
+
"初始化完成.等待启动."
);
});
}
...
...
@@ -253,7 +263,7 @@ namespace OnlineStore.DeviceLibrary
}
else
if
(
MoveInfo
.
IsStep
(
StoreMoveStep
.
LR_02_LineRun
))
{
MoveInfo
.
NextMoveStep
(
StoreMoveStep
.
LR_03_BatchAxisHome
);
MoveInfo
.
NextMoveStep
(
StoreMoveStep
.
LR_03_BatchAxisHome
_wait
);
LogUtil
.
info
(
Name
+
"复位 "
+
MoveInfo
.
MoveStep
+
" :夹爪回原点,提升轴回原点,上下轴回原点,流水线停止"
);
MoveInfo
.
WaitList
.
Add
(
WaitResultInfo
.
WaitTime
(
1000
));
electricClamp
.
HomeReset
(
MoveInfo
);
...
...
@@ -262,10 +272,15 @@ namespace OnlineStore.DeviceLibrary
T3_UpdownAxis
.
HomeMove
(
MoveInfo
);
LineStop
(
MoveInfo
);
}
else
if
(
MoveInfo
.
IsStep
(
StoreMoveStep
.
LR_03_BatchAxisHome_wait
))
{
MoveInfo
.
NextMoveStep
(
StoreMoveStep
.
LR_03_BatchAxisHome
);
MoveInfo
.
WaitList
.
Add
(
WaitResultInfo
.
WaitTime
(
500
));
}
else
if
(
MoveInfo
.
IsStep
(
StoreMoveStep
.
LR_03_BatchAxisHome
))
{
MoveInfo
.
NextMoveStep
(
StoreMoveStep
.
LR_04_BatchToP1
);
LogUtil
.
info
(
Name
+
"复位 "
+
MoveInfo
.
MoveStep
+
" :夹爪放松,提升轴到P1点["
+
Config
.
BatchAxis_P1
+
"],上下轴到待机点P2["
+
Config
.
UpdownAxis_P2
+
"]"
);
LogUtil
.
info
(
Name
+
"复位 "
+
MoveInfo
.
MoveStep
+
" :夹爪放松,提升轴到P1点["
+
Config
.
BatchAxis_P1
+
"],上下轴到待机点P2["
+
Config
.
UpdownAxis_P2
+
"]"
);
MoveInfo
.
WaitList
.
Add
(
WaitResultInfo
.
WaitTime
(
1000
));
T1_BatchAxis
.
AbsMove
(
MoveInfo
,
Config
.
BatchAxis_P1
,
Config
.
BatchAxis_P1Speed
);
T3_UpdownAxis
.
AbsMove
(
MoveInfo
,
Config
.
UpdownAxis_P2
,
Config
.
UpdownAxis_P2Speed
);
...
...
@@ -285,7 +300,7 @@ namespace OnlineStore.DeviceLibrary
else
if
(
MoveInfo
.
IsStep
(
StoreMoveStep
.
LR_05_Hoister_Back
))
{
MoveInfo
.
NextMoveStep
(
StoreMoveStep
.
LR_06_TopDown
);
LogUtil
.
info
(
Name
+
"复位 "
+
MoveInfo
.
MoveStep
+
" :顶升气缸下降,旋转轴到待机点P1["
+
Config
.
MiddleAxis_P1
+
"]"
);
LogUtil
.
info
(
Name
+
"复位 "
+
MoveInfo
.
MoveStep
+
" :顶升气缸下降,旋转轴到待机点P1["
+
Config
.
MiddleAxis_P1
+
"]"
);
MoveInfo
.
WaitList
.
Add
(
WaitResultInfo
.
WaitTime
(
1000
));
CylinderMove
(
MoveInfo
,
IO_Type
.
TopCylinder_Up
,
IO_Type
.
TopCylinder_Down
);
T2_MiddleAxis
.
AbsMove
(
MoveInfo
,
Config
.
MiddleAxis_P1
,
Config
.
MiddleAxis_P1Speed
);
...
...
@@ -307,7 +322,7 @@ namespace OnlineStore.DeviceLibrary
{
if
(
box
.
alarmType
.
Equals
(
AlarmType
.
None
))
{
msg
=
"等待"
+
box
.
Name
+
"复位完成超时"
;
msg
=
"等待"
+
box
.
Name
+
"复位完成超时"
;
isOk
=
false
;
break
;
}
...
...
@@ -327,7 +342,7 @@ namespace OnlineStore.DeviceLibrary
}
else
if
(
MoveInfo
.
IsTimeOut
(
120
))
{
WarnMsg
=
Name
+
"["
+
MoveInfo
.
MoveStep
+
"] "
+
msg
+
" ["
+
Math
.
Round
(
MoveInfo
.
StepSpan
().
TotalSeconds
,
1
)
+
"]秒"
;
WarnMsg
=
Name
+
"["
+
MoveInfo
.
MoveStep
+
"] "
+
msg
+
" ["
+
Math
.
Round
(
MoveInfo
.
StepSpan
().
TotalSeconds
,
1
)
+
"]秒"
;
LogUtil
.
error
(
WarnMsg
,
logType
+
21
);
Alarm
(
AlarmType
.
IoSingleTimeOut
);
}
...
...
@@ -628,7 +643,7 @@ namespace OnlineStore.DeviceLibrary
if
(
StoreManager
.
checkWatch
(
lowWatch
,
3000
))
{
//左侧下层需要放个料架
Task
.
Factory
.
StartNew
(
delegate
Task
.
Run
(()=>
{
LowProcess
=
true
;
LogUtil
.
info
(
Name
+
"从料架堆积处放一个料架到后端"
);
...
...
source/DeviceLibrary/duoStore/DUOStoreBean_Partial.cs
查看文件 @
8887225
...
...
@@ -472,24 +472,31 @@ namespace OnlineStore.DeviceLibrary
{
StartInStoreMove
(
null
);
}
if
(
IOValue
(
IO_Type
.
RaiseStation_FrontCheck
).
Equals
(
IO_VALUE
.
HIGH
)
&&
IOValue
(
IO_Type
.
RaiseStation_BackendCheck
).
Equals
(
IO_VALUE
.
HIGH
))
{
StartInStoreMove
(
null
);
}
return
false
;
}
private
void
ShelfEnterProcess
()
{
//入口有料架,需要转动链条
Task
.
Factory
.
StartNew
(
delegate
Task
.
Run
(()=>
{
InShelfInProcess
=
true
;
try
{
InOutStoreLog
(
"检测到入口(X03-Line_InCheck)有料"
);
InShelfInProcess
=
true
;
LineRun
(
null
);
//等待进料检测信号
bool
result
=
WaitIo
(
IO_Type
.
Line_InCheck
,
IO_VALUE
.
LOW
,
10000
);
//bool result = WaitIo(IO_Type.Line_InCheck, IO_VALUE.LOW, 10000);
bool
result
=
WaitIo
(
IO_Type
.
Line_WaitCheck
,
IO_VALUE
.
HIGH
,
10000
);
}
catch
(
Exception
ex
)
{
InOutStoreLog
(
"检测到入口(X03-Line_InCheck)有料:"
+
ex
.
ToString
());
}
finally
{
...
...
@@ -544,10 +551,18 @@ namespace OnlineStore.DeviceLibrary
public
override
bool
StartInStoreMove
(
InOutParam
param
)
{
if
(
IOValue
(
IO_Type
.
RaiseStation_FrontCheck
).
Equals
(
IO_VALUE
.
HIGH
)
&&
IOValue
(
IO_Type
.
RaiseStation_BackendCheck
).
Equals
(
IO_VALUE
.
HIGH
))
{
runStatus
=
StoreRunStatus
.
Busy
;
storeStatus
=
StoreStatus
.
InStoreExecute
;
MoveInfo
.
NewMove
(
MoveType
.
InStore
,
new
InOutParam
(
MoveType
.
InStore
));
MoveInfo
.
NextMoveStep
(
StoreMoveStep
.
LI_06_TopUp
);
return
true
;
}
//判断是哪个工位有料架
if
(
IOValue
(
IO_Type
.
Line_WorkCheck
).
Equals
(
IO_VALUE
.
HIGH
))
{
//InOutStoreLog($"CurrShelfNum:{CurrShelfNum},CurrShelfType={CurrShelfType}");
if
(
CurrShelfNum
<
0
||
CurrShelfType
.
Equals
(
1
))
{
runStatus
=
StoreRunStatus
.
Busy
;
...
...
@@ -640,6 +655,7 @@ namespace OnlineStore.DeviceLibrary
MoveInfo
.
NextMoveStep
(
StoreMoveStep
.
LI_07_HoisterForward_2
);
InOutStoreLog
(
"入料检测:定位销上升"
);
InOutStation_LocationUp
();
InOutStation_Stop
();
}
else
if
(
MoveInfo
.
IsStep
(
StoreMoveStep
.
LI_07_HoisterForward_2
))
{
...
...
@@ -686,8 +702,11 @@ namespace OnlineStore.DeviceLibrary
{
MoveInfo
.
NextMoveStep
(
StoreMoveStep
.
LI_15_WaitNoCheck
);
InOutStoreLog
(
"取料:等待没有提升机构料盘检测"
);
if
(
Math
.
Abs
(
T1_BatchAxis
.
GetAclPosition
()
-
Config
.
BatchAxis_P2
)
>
T1_BatchAxis
.
Config
.
CanErrorCountMin
)
{
MoveInfo
.
WaitList
.
Add
(
WaitResultInfo
.
WaitIO
(
IO_Type
.
BatchAxis_Check
,
IO_VALUE
.
HIGH
));
}
}
else
if
(
MoveInfo
.
IsStep
(
StoreMoveStep
.
LI_15_WaitNoCheck
))
{
MoveInfo
.
NextMoveStep
(
StoreMoveStep
.
LI_16_BatchAxisToP2
);
...
...
@@ -745,8 +764,13 @@ namespace OnlineStore.DeviceLibrary
else
if
(
MoveInfo
.
IsStep
(
StoreMoveStep
.
LI_21_WaitToBox
))
{
int
storeId
=
LastPosParam
.
GetStoreId
();
InOutStoreLog
(
$
"料盘移栽:storeId :{storeId}"
);
BoxBean
box
=
BoxMap
[
storeId
];
if
(
IOManager
.
IOValue
(
IO_Type
.
InDoor_Check
,
storeId
).
Equals
(
IO_VALUE
.
LOW
)
&&
box
.
waitInStoreParam
==
null
)
bool
waitRightLeave
=
false
;
if
(
HasT4Axis
&&
storeId
==
1
&&
IOManager
.
IOValue
(
IO_Type
.
InDoor_Check
,
2
).
Equals
(
IO_VALUE
.
HIGH
))
{
waitRightLeave
=
true
;
}
if
(
IOManager
.
IOValue
(
IO_Type
.
InDoor_Check
,
storeId
).
Equals
(
IO_VALUE
.
LOW
)
&&
box
.
waitInStoreParam
==
null
&&
!
waitRightLeave
)
{
MoveInfo
.
NextMoveStep
(
StoreMoveStep
.
LI_22_ToBoxDoor
);
MoveInfo
.
WaitList
.
Add
(
WaitResultInfo
.
WaitTime
(
500
));
...
...
@@ -754,18 +778,20 @@ namespace OnlineStore.DeviceLibrary
if
(
LastPosParam
.
TargetBox
.
Equals
(
1
))
{
InOutStoreLog
(
"料盘移栽:获取库位号完成, BOX "
+
storeId
+
" 升降轴到料门口高点P4["
+
Config
.
UpdownAxis_P4
+
"],旋转轴到料仓门口 P2["
+
Config
.
MiddleAxis_P2
+
"]"
);
T3_UpdownAxis
.
AbsMove
(
MoveInfo
,
Config
.
UpdownAxis_P4
,
Config
.
UpdownAxis_P4Speed
);
T2_MiddleAxis
.
AbsMove
(
MoveInfo
,
Config
.
MiddleAxis_P2
,
Config
.
MiddleAxis_P2Speed
);
if
(
HasT4Axis
)
T4_InOut_Axis
.
AbsMove
(
MoveInfo
,
Config
.
InOutAxis_P2
,
Config
.
InOutAxis_P2Speed
);
T3_UpdownAxis
.
AbsMove
(
MoveInfo
,
Config
.
UpdownAxis_P4
,
Config
.
UpdownAxis_P4Speed
);
T2_MiddleAxis
.
AbsMove
(
MoveInfo
,
Config
.
MiddleAxis_P2
,
Config
.
MiddleAxis_P2Speed
);
}
else
{
InOutStoreLog
(
"料盘移栽:获取库位号完成, BOX "
+
storeId
+
" 升降轴到料门口高点P6["
+
Config
.
UpdownAxis_P6
+
"],旋转轴到料仓门口 P3["
+
Config
.
MiddleAxis_P3
+
"]"
);
T3_UpdownAxis
.
AbsMove
(
MoveInfo
,
Config
.
UpdownAxis_P6
,
Config
.
UpdownAxis_P6Speed
);
T2_MiddleAxis
.
AbsMove
(
MoveInfo
,
Config
.
MiddleAxis_P3
,
Config
.
MiddleAxis_P3Speed
);
if
(
HasT4Axis
)
T4_InOut_Axis
.
AbsMove
(
MoveInfo
,
Config
.
InOutAxis_P3
,
Config
.
InOutAxis_P3Speed
);
T3_UpdownAxis
.
AbsMove
(
MoveInfo
,
Config
.
UpdownAxis_P6
,
Config
.
UpdownAxis_P6Speed
);
T2_MiddleAxis
.
AbsMove
(
MoveInfo
,
Config
.
MiddleAxis_P3
,
Config
.
MiddleAxis_P3Speed
);
}
ClearTimeoutAlarm
(
"入料口无料盘"
);
...
...
@@ -783,13 +809,13 @@ namespace OnlineStore.DeviceLibrary
YuScanCode
();
if
(
LastPosParam
.
TargetBox
.
Equals
(
1
))
{
InOutStoreLog
(
"料盘移栽: 升降轴到料门口低点P3["
+
Config
.
UpdownAxis_P3
+
"
],开始预扫码"
);
T3_UpdownAxis
.
AbsMove
(
MoveInfo
,
Config
.
UpdownAxis_P3
,
Config
.
UpdownAxis_P3Speed
);
InOutStoreLog
(
$
"料盘移栽: 升降轴到料门口低点P3[{Config.UpdownAxis_P3},补偿:{(LastHeight - 8) * Config.UpdownAxis_ChangeValue}
],开始预扫码"
);
T3_UpdownAxis
.
AbsMove
(
MoveInfo
,
Config
.
UpdownAxis_P3
-(
LastHeight
-
8
)*
Config
.
UpdownAxis_ChangeValue
,
Config
.
UpdownAxis_P3Speed
);
}
else
{
InOutStoreLog
(
"料盘移栽: 升降轴到料门口低点P5["
+
Config
.
UpdownAxis_P5
+
"
],开始预扫码"
);
T3_UpdownAxis
.
AbsMove
(
MoveInfo
,
Config
.
UpdownAxis_P5
,
Config
.
UpdownAxis_P5Speed
);
InOutStoreLog
(
$
"料盘移栽: 升降轴到料门口低点P5[{Config.UpdownAxis_P5},补偿:{(LastHeight - 8) * Config.UpdownAxis_ChangeValue}
],开始预扫码"
);
T3_UpdownAxis
.
AbsMove
(
MoveInfo
,
Config
.
UpdownAxis_P5
-
(
LastHeight
-
8
)
*
Config
.
UpdownAxis_ChangeValue
,
Config
.
UpdownAxis_P5Speed
);
}
}
else
if
(
MoveInfo
.
IsStep
(
StoreMoveStep
.
LI_23_UpdownDown
))
...
...
@@ -882,7 +908,7 @@ namespace OnlineStore.DeviceLibrary
MoveInfo
.
NextMoveStep
(
StoreMoveStep
.
LI_35_WaitShelfGo
);
InOutStoreLog
(
"送出料架:等待上料无料架"
);
MoveInfo
.
WaitList
.
Add
(
WaitResultInfo
.
WaitTime
(
1500
));
MoveInfo
.
WaitList
.
Add
(
WaitResultInfo
.
WaitIO
(
IO_Type
.
Line_W
ait
Check
,
IO_VALUE
.
LOW
));
MoveInfo
.
WaitList
.
Add
(
WaitResultInfo
.
WaitIO
(
IO_Type
.
Line_W
ork
Check
,
IO_VALUE
.
LOW
));
}
else
if
(
MoveInfo
.
IsStep
(
StoreMoveStep
.
LI_35_WaitShelfGo
))
{
...
...
@@ -965,6 +991,9 @@ namespace OnlineStore.DeviceLibrary
else
if
(!
result
.
Msg
.
Equals
(
""
))
{
LastPosParam
=
result
.
Param
;
LastPosParam
.
PosID
=
"2#2"
;
LastPosParam
.
TargetBox
=
2
;
LastPosParam
.
InStoreNg
=
true
;
LogUtil
.
error
(
Name
+
"【"
+
code
+
"】第["
+
count
+
"]次 LI_18_GetPosID 入库NG:"
+
result
.
Msg
);
break
;
}
...
...
@@ -1017,12 +1046,15 @@ namespace OnlineStore.DeviceLibrary
{
Task
<
List
<
string
>>
scanTask
=
Task
.
Factory
.
StartNew
(
delegate
{
IOMove
(
IO_Type
.
Camera_Led
,
IO_VALUE
.
HIGH
);
Task
.
Delay
(
10
).
Wait
();
LastCodeList
=
CodeManager
.
CameraScan
(
Config
.
GetCameraList
(),
Name
);
if
(
LastCodeList
.
Count
<=
0
)
{
LastCodeList
=
CodeManager
.
CameraScan
(
Config
.
GetCameraList
(),
Name
,
3000
);
}
IOMove
(
IO_Type
.
Camera_Led
,
IO_VALUE
.
LOW
);
return
LastCodeList
;
});
}
...
...
source/DeviceLibrary/duoStore/DUOStoreBean_RaiseStation.cs
查看文件 @
8887225
...
...
@@ -46,8 +46,8 @@ namespace OnlineStore.DeviceLibrary
/// </summary>
public
void
InOutStation_LocationUp
()
{
IOMove
(
IO_Type
.
RaiseStation_LocationUp
,
IO_VALUE
.
HIGH
);
IOMove
(
IO_Type
.
RaiseStation_LocationDown
,
IO_VALUE
.
LOW
);
IOMove
(
IO_Type
.
RaiseStation_LocationUp
,
IO_VALUE
.
HIGH
);
MoveInfo
.
WaitList
.
Add
(
WaitResultInfo
.
WaitIO
(
IO_Type
.
RaiseStation_UpLocation1
,
IO_VALUE
.
HIGH
));
MoveInfo
.
WaitList
.
Add
(
WaitResultInfo
.
WaitIO
(
IO_Type
.
RaiseStation_UpLocation2
,
IO_VALUE
.
HIGH
));
}
...
...
source/DeviceLibrary/duoStore/ElectricGripper.cs
查看文件 @
8887225
...
...
@@ -58,9 +58,8 @@ namespace OnlineStore.DeviceLibrary
axis
.
ResetError
();
axis
.
GoHome
();
// }
if
(
moveInfo
!=
null
)
//moveInfo.WaitList.Add(WaitResultInfo.WaitElectricClamp());
moveInfo
.
WaitList
.
Add
(
WaitResultInfo
.
WaitAction
(
new
Func
<
WaitResultInfo
,
bool
>(
WaitAction
)));
//if (moveInfo != null)
// moveInfo.WaitList.Add(WaitResultInfo.WaitAction(new Func<WaitResultInfo, bool>(WaitAction)));
}
public
bool
IsBusy
{
get
{
...
...
source/DeviceLibrary/duoStore/StoreManager.cs
查看文件 @
8887225
...
...
@@ -104,6 +104,7 @@ namespace OnlineStore.DeviceLibrary
{
CSVPositionReader
<
ACBoxPosition
>.
AddCSVFile
(
positionConfigFile
);
}
CSVPositionReader
<
ACBoxPosition
>.
AddCSVFile
(
Path
.
Combine
(
appPath
,
@"StoreConfig\FixPositions.csv"
));
LogUtil
.
info
(
"加载料仓完成!"
);
}
...
...
source/DeviceLibrary/store/KTK_Store.cs
查看文件 @
8887225
...
...
@@ -390,9 +390,24 @@ namespace OnlineStore.DeviceLibrary
protected
bool
WaitIo
(
string
ioType
,
IO_VALUE
value
,
int
timeOut
,
string
errName
=
""
)
{
return
WaitUtil
.
Wait
(
timeOut
,
delegate
()
{
return
value
.
Equals
(
IOValue
(
ioType
));
},
errName
);
Task
w
=
Task
.
Delay
(
timeOut
);
Task
p
=
Task
.
Run
(()
=>
{
while
(!
IOValue
(
ioType
).
Equals
(
value
))
{
Task
.
Delay
(
100
).
Wait
();
}
});
Task
.
WaitAny
(
w
,
p
);
return
true
;
//return WaitUtil.Wait(timeOut, delegate () {
// return value.Equals(IOValue(ioType));
//}, errName);
}
public
void
LogInfo
(
string
logInfo
)
{
...
...
@@ -528,7 +543,9 @@ namespace OnlineStore.DeviceLibrary
internal
void
SetWarnMsg
(
string
msg
)
{
if
(
String
.
IsNullOrEmpty
(
WarnMsg
).
Equals
(
false
))
if
(
String
.
IsNullOrEmpty
(
WarnMsg
))
WarnMsg
=
msg
;
{
if
(
WarnMsg
.
Equals
(
msg
))
{
...
...
@@ -541,7 +558,7 @@ namespace OnlineStore.DeviceLibrary
LogUtil
.
error
(
Name
+
msg
,
105
);
}
}
else
else
if
(!
String
.
IsNullOrEmpty
(
WarnMsg
))
{
if
(
msg
.
StartsWith
(
Name
))
{
...
...
@@ -554,7 +571,7 @@ namespace OnlineStore.DeviceLibrary
}
}
WarnMsg
=
msg
;
}
}
...
...
source/DeviceLibrary/store/StoreStep.cs
查看文件 @
8887225
...
...
@@ -132,7 +132,7 @@ namespace OnlineStore.DeviceLibrary
/// BOX复位:其他轴回原点
/// </summary>
BOX_H03_OtherAxisHome
,
BOX_H03_OtherAxisHome_wait
,
/// <summary>
/// BOX复位:升降轴,旋转轴,压紧轴原点返回
/// </summary>
...
...
@@ -251,6 +251,15 @@ namespace OnlineStore.DeviceLibrary
/// </summary>
SO_06_ToDoor
,
/// <summary>
/// 料仓出库:修正盘位
/// </summary>
SO_06A_01_FixDisk
,
SO_06A_02_FixDisk
,
SO_06A_03_FixDisk
,
SO_06A_04_FixDisk
,
SO_06A_05_FixDisk
,
SO_06A_06_FixDisk
,
/// <summary>
/// 检测叉子是否有物料
/// </summary>
SO_07_FixtureCheck
,
...
...
@@ -321,6 +330,7 @@ namespace OnlineStore.DeviceLibrary
/// 复位:夹爪放松,提升轴回原点,上下轴回原点
/// </summary>
LR_03_BatchAxisHome
,
LR_03_BatchAxisHome_wait
,
/// <summary>
/// 复位:提升轴到P1点,上下轴到待机点P1
/// </summary>
...
...
source/LoadCVSLibrary/storeConfig/ConfigItemBase.cs
查看文件 @
8887225
...
...
@@ -76,10 +76,10 @@ namespace OnlineStore.LoadCSVLibrary
[
CSVAttribute
(
"加速时间"
)]
public
shor
t
AddSpeed
{
get
;
set
;
}
public
in
t
AddSpeed
{
get
;
set
;
}
[
CSVAttribute
(
"减速时间"
)]
public
shor
t
DelSpeed
{
get
;
set
;
}
public
in
t
DelSpeed
{
get
;
set
;
}
[
CSVAttribute
(
"原点低速度"
)]
public
int
HomeLowSpeed
{
get
;
set
;
}
...
...
source/LoadCVSLibrary/storeConfig/config/Store_Config.cs
查看文件 @
8887225
...
...
@@ -228,6 +228,11 @@ namespace OnlineStore.LoadCSVLibrary
[
ConfigProAttribute
(
"UpdownAxis_P6"
)]
public
int
UpdownAxis_P6
{
get
;
set
;
}
/// <summary>
/// PRO,0,T3_升降轴高度转换系数(1mm对应的脉冲),UpdownAxis_ChangeValue,11000
/// </summary>
[
ConfigProAttribute
(
"UpdownAxis_ChangeValue"
)]
public
int
UpdownAxis_ChangeValue
{
get
;
set
;
}
/// <summary>
/// PRO,0,T2_升降轴P1速度/慢速度,UpdownAxis_P1Speed,500
/// </summary>
[
ConfigProAttribute
(
"UpdownAxis_P1Speed"
)]
...
...
@@ -297,10 +302,11 @@ namespace OnlineStore.LoadCSVLibrary
private
List
<
string
>
CameraList
=
new
List
<
string
>();
public
List
<
string
>
GetCameraList
()
{
if
(
CameraList
==
null
)
if
(
CameraList
.
Count
==
0
)
{
CameraList
=
new
List
<
string
>();
string
[]
arrayList
=
CameraNameList
.
Split
(
'#'
);
foreach
(
string
str
in
arrayList
)
{
string
camera
=
str
.
Trim
();
...
...
编写
预览
支持
Markdown
格式
附加文件
你添加了
0
人
到此讨论。请谨慎行事。
Finish editing this message first!
Cancel
请
注册
或
登录
后发表评论