Commit 09fdf50fb9513f64cf9d6567cea8d701ed7fc1c8

Authored by Administrator
1 parent fdd4bb76

bpms

Showing 42 changed files with 1491 additions and 994 deletions   Show diff stats
.project
1   -<?xml version="1.0" encoding="UTF-8"?>
2   -<projectDescription>
3   - <name>essa</name>
4   - <comment></comment>
5   - <projects>
6   - </projects>
7   - <buildSpec>
8   - <buildCommand>
9   - <name>org.eclipse.jdt.core.javabuilder</name>
10   - <arguments>
11   - </arguments>
12   - </buildCommand>
13   - <buildCommand>
14   - <name>org.eclipse.m2e.core.maven2Builder</name>
15   - <arguments>
16   - </arguments>
17   - </buildCommand>
18   - </buildSpec>
19   - <natures>
20   - <nature>org.eclipse.jdt.core.javanature</nature>
21   - <nature>org.eclipse.m2e.core.maven2Nature</nature>
22   - </natures>
23   -</projectDescription>
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<projectDescription>
  3 + <name>demo</name>
  4 + <comment></comment>
  5 + <projects>
  6 + </projects>
  7 + <buildSpec>
  8 + <buildCommand>
  9 + <name>org.eclipse.jdt.core.javabuilder</name>
  10 + <arguments>
  11 + </arguments>
  12 + </buildCommand>
  13 + <buildCommand>
  14 + <name>org.eclipse.m2e.core.maven2Builder</name>
  15 + <arguments>
  16 + </arguments>
  17 + </buildCommand>
  18 + </buildSpec>
  19 + <natures>
  20 + <nature>org.eclipse.jdt.core.javanature</nature>
  21 + <nature>org.eclipse.m2e.core.maven2Nature</nature>
  22 + </natures>
  23 +</projectDescription>
... ...
... ... @@ -19,8 +19,8 @@
19 19 <dependency>
20 20 <groupId>org.testng</groupId>
21 21 <artifactId>testng</artifactId>
22   - <version>6.14.2</version>
23   - <scope>test</scope>
  22 + <version>6.14.3</version>
  23 + <!-- <scope>test</scope>-->
24 24 </dependency>
25 25  
26 26 <dependency>
... ... @@ -76,19 +76,19 @@
76 76 <dependency>
77 77 <groupId>org.apache.poi</groupId>
78 78 <artifactId>poi</artifactId>
79   - <version>3.17</version>
  79 + <version>3.14</version>
80 80 </dependency>
81 81  
82 82 <dependency>
83 83 <groupId>org.apache.poi</groupId>
84 84 <artifactId>poi-ooxml</artifactId>
85   - <version>3.17</version>
  85 + <version>3.14</version>
86 86 </dependency>
87 87  
88 88 <dependency>
89 89 <groupId>org.apache.poi</groupId>
90 90 <artifactId>poi-ooxml-schemas</artifactId>
91   - <version>3.17</version>
  91 + <version>3.14</version>
92 92 </dependency>
93 93  
94 94 <dependency>
... ...
src/main/resources/TestConfig/config.properties
... ... @@ -2,5 +2,15 @@
2 2 #browserName=IE
3 3 browserName=Chrome
4 4  
5   -URL=http://bpms.hotfix.gz.essa
6   -#URL=http://www.baidu.com
  5 +SIT=http://bpms.sit.gz.essa
  6 +BSIT=http://en.portalsit.cn
  7 +
  8 +HOTFIX=http://bpms.hotfix.gz.essa
  9 +BHOTFIX=http://en.portalhotfix.cn
  10 +
  11 +UAT=http://bpms.spstoys.com:7291
  12 +BUAT=http://en.spstoys.com:889
  13 +
  14 +DIT=http://bpms.dit.gz.essa
  15 +BDIT=http://en.portaldit.cn
  16 +
... ...
src/main/resources/chromedriver.exe
No preview for this file type
src/test/java/com/essa/framework/BasePage.java
... ... @@ -22,13 +22,18 @@ import org.apache.poi.ss.usermodel.Sheet;
22 22 import org.apache.poi.ss.usermodel.Workbook;
23 23 import org.apache.poi.xssf.usermodel.XSSFWorkbook;
24 24 import org.openqa.selenium.Alert;
  25 +import org.openqa.selenium.By;
25 26 import org.openqa.selenium.JavascriptExecutor;
  27 +import org.openqa.selenium.Keys;
26 28 import org.openqa.selenium.NoSuchElementException;
27 29 import org.openqa.selenium.OutputType;
28 30 import org.openqa.selenium.TakesScreenshot;
29 31 import org.openqa.selenium.WebDriver;
30 32 import org.openqa.selenium.WebElement;
  33 +import org.openqa.selenium.interactions.Actions;
  34 +import org.openqa.selenium.support.ui.ExpectedConditions;
31 35 import org.openqa.selenium.support.ui.Select;
  36 +import org.openqa.selenium.support.ui.WebDriverWait;
32 37  
33 38 import com.essa.framework.BasePage;
34 39 import com.essa.framework.LogType;
... ... @@ -40,18 +45,23 @@ public class BasePage {
40 45 public static String pageTitle;
41 46 public static String pageUrl;
42 47 public static String OutputFileName = getDateTimeByFormat(new Date(), "yyyyMMdd_HHmmss");
43   - /*
44   - * 构造方法
  48 +
  49 + /**
  50 + * 构造方法
  51 + * @param driver
45 52 */
46 53 public BasePage(WebDriver driver) {
47 54 BasePage.driver = driver;
48 55 }
49 56  
50   - /*
51   - * 在文本框内输入字符
  57 + /**
  58 + * 在文本框内输入字符
  59 + * @param element
  60 + * @param text
52 61 */
53 62 protected void sendKeys(WebElement element, String text) {
54 63 try {
  64 + mywait(element);
55 65 if (element.isEnabled()) {
56 66 element.clear();
57 67 Logger.Output(LogType.LogTypeName.INFO, "清除文本框中已有字符:" + partialStr(element.toString(), "xpath:"));
... ... @@ -64,12 +74,14 @@ public class BasePage {
64 74  
65 75 }
66 76  
67   - /*
  77 + /**
68 78 * 点击元素,这里指点击鼠标左键
  79 + * @param element
69 80 */
70 81 protected void click(WebElement element) {
71 82  
72 83 try {
  84 + mywait(element);
73 85 if (element.isEnabled()) {
74 86 Logger.Output(LogType.LogTypeName.INFO, "点击元素:" + partialStr(element.toString(), "xpath:"));
75 87 element.click();
... ... @@ -80,11 +92,11 @@ public class BasePage {
80 92  
81 93 }
82 94  
83   - /*
  95 + /**
84 96 * 在文本输入框执行清除操作
  97 + * @param element
85 98 */
86 99 protected void clear(WebElement element) {
87   -
88 100 try {
89 101 if (element.isEnabled()) {
90 102 element.clear();
... ... @@ -96,8 +108,9 @@ public class BasePage {
96 108  
97 109 }
98 110  
99   - /*
  111 + /**
100 112 * 判断一个页面元素是否显示在当前页面
  113 + * @param element
101 114 */
102 115 protected void verifyElementIsPresent(WebElement element) {
103 116  
... ... @@ -111,8 +124,9 @@ public class BasePage {
111 124 }
112 125 }
113 126  
114   - /*
  127 + /**
115 128 * 获取页面的标题
  129 + * @return
116 130 */
117 131 protected String getCurrentPageTitle() {
118 132  
... ... @@ -121,17 +135,17 @@ public class BasePage {
121 135 return pageTitle;
122 136 }
123 137  
124   - /*
  138 + /**
125 139 * 获取页面的url
  140 + * @return
126 141 */
127   - protected String getCurrentPageUrl() {
128   -
  142 + public static String getCurrentPageUrl() {
129 143 pageUrl = driver.getCurrentUrl();
130 144 Logger.Output(LogType.LogTypeName.INFO, "当前页面的URL为:" + pageUrl);
131 145 return pageUrl;
132 146 }
133 147  
134   - /*
  148 + /**
135 149 * 处理多窗口之间切换
136 150 */
137 151 protected void switchWindow() {
... ... @@ -157,8 +171,9 @@ public class BasePage {
157 171 // driver.switchTo().window(currentWindow);//回到原来页面
158 172 }
159 173  
160   - /*
  174 + /**
161 175 * 浏览器弹框操作,true确认弹框,false取消弹框
  176 + * @param isAccept
162 177 */
163 178 protected void alert(boolean isAccept) {
164 179 Alert alert = driver.switchTo().alert();
... ... @@ -173,8 +188,11 @@ public class BasePage {
173 188 }
174 189 }
175 190  
176   - /*
  191 + /**
177 192 * 下拉框选择选项
  193 + * 元素必须可以使用select,input和button使用会报错
  194 + * @param element
  195 + * @param optionText
178 196 */
179 197 protected void selectElement(WebElement element, String optionText) {
180 198 Select select = new Select(element);
... ... @@ -182,13 +200,26 @@ public class BasePage {
182 200 Logger.Output(LogType.LogTypeName.INFO, "选择选项:" + optionText);
183 201 }
184 202  
185   - /*
  203 + /**
  204 + * 下拉框选择选项,通过选项中的value来定位
  205 + * @param element
  206 + * @param value
  207 + */
  208 + protected void selectElement(WebElement element, int value) {
  209 + Select select = new Select(element);
  210 + select.selectByIndex(value);
  211 + Logger.Output(LogType.LogTypeName.INFO, "选择选项:" + value);
  212 + }
  213 + /**
186 214 * 判断元素在页面中是否存在
  215 + * @param element
  216 + * @return boolean
187 217 */
188 218 protected boolean isElementExist(WebElement element) {
189 219 try {
190 220 Boolean bool = element.isDisplayed();
191   - Logger.Output(LogType.LogTypeName.INFO, "检查元素是否存在:" + bool);
  221 +
  222 + Logger.Output(LogType.LogTypeName.INFO, "检查元素是否存在:" +partialStr(element.toString(), "xpath:")+":"+ bool);
192 223 return bool;
193 224 } catch (NoSuchElementException e) {
194 225 takeScreenShot();
... ... @@ -196,9 +227,48 @@ public class BasePage {
196 227 return false;
197 228 }
198 229 }
  230 +
  231 + /**
  232 + * 元素在页面上是否可见
  233 + * @param element
  234 + * @return boolean
  235 + */
  236 + protected boolean isVisibility(WebElement element) {
  237 + try {
  238 + if(ExpectedConditions.visibilityOf(element) != null) {
  239 + Logger.Output(LogType.LogTypeName.INFO, "元素在页面上可见:" +partialStr(element.toString(), "xpath:"));
  240 + return true;
  241 + }
  242 + } catch (NoSuchElementException e) {
  243 + Logger.Output(LogType.LogTypeName.ERROR, "无法页面上是否有此元素:"+partialStr(element.toString(), "xpath:")+ e.getMessage());
  244 + return false;
  245 + }
  246 + Logger.Output(LogType.LogTypeName.INFO, "元素在页面不可见:" +partialStr(element.toString(), "xpath:"));
  247 + return false;
  248 + }
  249 +
  250 + /**
  251 + * 元素在页面上是否可见
  252 + * @param element
  253 + * @return
  254 + */
  255 + protected boolean isVisibility(By by) {
  256 + try {
  257 + Logger.Output(LogType.LogTypeName.INFO, "检查元素在页面上是否可见");
  258 + if(ExpectedConditions.visibilityOf(driver.findElement(by)) != null) {
  259 + Logger.Output(LogType.LogTypeName.INFO, "元素可见:"+by.toString());
  260 + return true;
  261 + }
  262 + } catch (NoSuchElementException e) {
  263 + }
  264 + Logger.Output(LogType.LogTypeName.INFO, "元素不可见:"+by.toString());
  265 + return false;
  266 + }
  267 +
199 268  
200   - /*
  269 + /**
201 270 * 获取元素的文本值
  271 + * @param element
202 272 */
203 273 protected void getText(WebElement element) {
204 274  
... ... @@ -212,11 +282,13 @@ public class BasePage {
212 282 }
213 283 }
214 284  
215   - /*
  285 + /**
216 286 * js的点击操作
  287 + * @param element
217 288 */
218 289 protected void jsExecutorClick(WebElement element) {
219 290 try {
  291 + mywait(element);
220 292 JavascriptExecutor jsExecutor = (JavascriptExecutor) driver;
221 293 jsExecutor.executeScript("arguments[0].click();", element);
222 294 Logger.Output(LogType.LogTypeName.INFO, "调用JavaScript点击元素:" + element.getText());
... ... @@ -225,9 +297,11 @@ public class BasePage {
225 297 }
226 298  
227 299 }
228   -
229   - /*
  300 +
  301 + /**
230 302 * js的删除操作
  303 + * @param webElement
  304 + * @param attribute
231 305 */
232 306 protected void jsExecutorRemoveAttribute(WebElement webElement, String attribute) {
233 307 try {
... ... @@ -240,10 +314,12 @@ public class BasePage {
240 314  
241 315 }
242 316  
243   - /*
  317 + /**
244 318 * 获取js返回的值
  319 + * @param webElement
  320 + * @return
245 321 */
246   - protected String jsExecutorGetAttributeValue(WebDriver driver, WebElement webElement) {
  322 + protected String jsExecutorGetAttributeValue(WebElement webElement) {
247 323 try {
248 324 JavascriptExecutor jsExecutor = (JavascriptExecutor) driver;
249 325 Logger.Output(LogType.LogTypeName.INFO, "调用JavaScript返回元素属性值");
... ... @@ -254,114 +330,127 @@ public class BasePage {
254 330 }
255 331 }
256 332  
257   - /*
  333 + /**
258 334 * 读取excel中的数据
259   - * 第一个参数为excel的路径地址
260   - * 第二个参数为excel的文件名
261   - * 第三个参数为excel的worksheet名
262   - */
263   - public static Object[][] readExcel(String filepath, String filename, String SheetName) throws Exception {
264   - File file = new File(filepath + "\\" + filename);
265   - FileInputStream inputStream = new FileInputStream(file);
266   - Workbook Workbook = null;
267   - // 获取文件扩展名
268   - String fileExtensionName = filename.substring(filename.indexOf("."));
269   - Logger.Output(LogType.LogTypeName.INFO, "获取所要读取的文件");
270   - // 判断是.xlsx还是.xls的文件并进行实例化
271   - if (fileExtensionName.equals(".xlsx")) {
272   - Workbook = new XSSFWorkbook(inputStream);
273   - Logger.Output(LogType.LogTypeName.INFO, "文件为:.xlsx格式");
274   - } else if (fileExtensionName.equals(".xls")) {
275   - Workbook = new HSSFWorkbook(inputStream);
276   - Logger.Output(LogType.LogTypeName.INFO, "文件为:.xls格式");
277   - }
278   - // 通过sheetName生成Sheet对象
279   - Sheet Sheet = Workbook.getSheet(SheetName);
280   - int rowCount = Sheet.getLastRowNum() - Sheet.getFirstRowNum();
281   - List<Object[]> records = new ArrayList<Object[]>();
282   - for (int i = 0; i < rowCount + 1; i++) {
283   - Row row = Sheet.getRow(i);
284   - String fields[] = new String[row.getLastCellNum()];
285   - for (int j = 0; j < row.getLastCellNum(); j++) {
286   - if (row.getCell(j).getCellType() == Cell.CELL_TYPE_NUMERIC) {
287   - row.getCell(j).setCellType(Cell.CELL_TYPE_STRING);
288   - }
289   - // 判断数据的类型
290   - switch (row.getCell(j).getCellType()) {
291   - case Cell.CELL_TYPE_NUMERIC: // 数字
292   - fields[j] = String.valueOf(row.getCell(j).getNumericCellValue());
293   - break;
294   - case Cell.CELL_TYPE_STRING: // 字符串
295   - fields[j] = String.valueOf(row.getCell(j).getStringCellValue());
296   - break;
297   - case Cell.CELL_TYPE_BOOLEAN: // Boolean
298   - fields[j] = String.valueOf(row.getCell(j).getBooleanCellValue());
299   - break;
300   - case Cell.CELL_TYPE_FORMULA: // 公式
301   - fields[j] = String.valueOf(row.getCell(j).getCellFormula());
302   - break;
303   - case Cell.CELL_TYPE_BLANK: // 空值
304   - fields[j] = "";
305   - break;
306   - case Cell.CELL_TYPE_ERROR: // 故障
307   - fields[j] = "非法字符";
308   - break;
309   - default:
310   - fields[j] = "未知类型";
311   - break;
  335 + * @param filepath excel的路径地址
  336 + * @param filename excel的文件名
  337 + * @param SheetName excel的worksheet名
  338 + * @return
  339 + * @throws Exception
  340 + */
  341 + public static Object[][] readExcel(String filepath, String filename, String SheetName){
  342 + try {
  343 + File file = new File(filepath + "\\" + filename);
  344 + FileInputStream inputStream = new FileInputStream(file);
  345 + Workbook Workbook = null;
  346 + // 获取文件扩展名
  347 + String fileExtensionName = filename.substring(filename.indexOf("."));
  348 + Logger.Output(LogType.LogTypeName.INFO, "获取所要读取的文件");
  349 + // 判断是.xlsx还是.xls的文件并进行实例化
  350 + if (fileExtensionName.equals(".xlsx")) {
  351 + Workbook = new XSSFWorkbook(inputStream);
  352 + Logger.Output(LogType.LogTypeName.INFO, "文件为:.xlsx格式");
  353 + } else if (fileExtensionName.equals(".xls")) {
  354 + Workbook = new HSSFWorkbook(inputStream);
  355 + Logger.Output(LogType.LogTypeName.INFO, "文件为:.xls格式");
  356 + }
  357 + // 通过sheetName生成Sheet对象
  358 + Sheet Sheet = Workbook.getSheet(SheetName);
  359 + int rowCount = Sheet.getLastRowNum() - Sheet.getFirstRowNum();
  360 + List<Object[]> records = new ArrayList<Object[]>();
  361 + for (int i = 0; i < rowCount + 1; i++) {
  362 + Row row = Sheet.getRow(i);
  363 + String fields[] = new String[row.getLastCellNum()];
  364 + for (int j = 0; j < row.getLastCellNum(); j++) {
  365 + if (row.getCell(j).getCellType() == Cell.CELL_TYPE_NUMERIC) {
  366 + row.getCell(j).setCellType(Cell.CELL_TYPE_STRING);
  367 + }
  368 + // 判断数据的类型
  369 + switch (row.getCell(j).getCellType()) {
  370 + case Cell.CELL_TYPE_NUMERIC: // 数字
  371 + fields[j] = String.valueOf(row.getCell(j).getNumericCellValue());
  372 + break;
  373 + case Cell.CELL_TYPE_STRING: // 字符串
  374 + fields[j] = String.valueOf(row.getCell(j).getStringCellValue());
  375 + break;
  376 + case Cell.CELL_TYPE_BOOLEAN: // Boolean
  377 + fields[j] = String.valueOf(row.getCell(j).getBooleanCellValue());
  378 + break;
  379 + case Cell.CELL_TYPE_FORMULA: // 公式
  380 + fields[j] = String.valueOf(row.getCell(j).getCellFormula());
  381 + break;
  382 + case Cell.CELL_TYPE_BLANK: // 空值
  383 + fields[j] = "";
  384 + break;
  385 + case Cell.CELL_TYPE_ERROR: // 故障
  386 + fields[j] = "非法字符";
  387 + break;
  388 + default:
  389 + fields[j] = "未知类型";
  390 + break;
  391 + }
312 392 }
  393 + records.add(fields);
313 394 }
314   -
315   - records.add(fields);
316   - }
317   - Object[][] results = new Object[records.size()][];
318   - for (int i = 0; i < records.size(); i++) {
319   - results[i] = records.get(i);
  395 + Object[][] results = new Object[records.size()][];
  396 + for (int i = 0; i < records.size(); i++) {
  397 + results[i] = records.get(i);
  398 + }
  399 + Logger.Output(LogType.LogTypeName.INFO, "读取文件成功");
  400 + return results;
  401 + } catch (Exception e) {
  402 + Logger.Output(LogType.LogTypeName.ERROR, e.getMessage() + ".");
320 403 }
321   - Logger.Output(LogType.LogTypeName.INFO, "读取文件成功");
322   - return results;
  404 + return null;
323 405 }
324 406  
325   - /*
  407 + /**
326 408 * 上传文件
  409 + * @param filePath
  410 + * @throws Exception
327 411 */
328   - protected void uploadFile(String filePath) throws Exception {
329   - Logger.Output(LogType.LogTypeName.INFO, "开始上传文件");
330   - StringSelection sel = new StringSelection(filePath);
331   - Toolkit.getDefaultToolkit().getSystemClipboard().setContents(sel, null);
332   - // 新建一个Robot类的对象
333   - Robot robot = new Robot();
334   - Thread.sleep(1000);
  412 + protected void uploadFile(String filePath){
  413 + try {
  414 + Logger.Output(LogType.LogTypeName.INFO, "开始上传文件");
  415 + StringSelection sel = new StringSelection(filePath);
  416 + Toolkit.getDefaultToolkit().getSystemClipboard().setContents(sel, null);
  417 + // 新建一个Robot类的对象
  418 + Robot robot = new Robot();
  419 + Thread.sleep(1000);
335 420  
336   - // 按下回车
337   - robot.keyPress(KeyEvent.VK_ENTER);
  421 + // 按下回车
  422 + robot.keyPress(KeyEvent.VK_ENTER);
338 423  
339   - // 释放回车
340   - robot.keyRelease(KeyEvent.VK_ENTER);
  424 + // 释放回车
  425 + robot.keyRelease(KeyEvent.VK_ENTER);
341 426  
342   - // 按下 CTRL+V
343   - robot.keyPress(KeyEvent.VK_CONTROL);
344   - robot.keyPress(KeyEvent.VK_V);
  427 + // 按下 CTRL+V
  428 + robot.keyPress(KeyEvent.VK_CONTROL);
  429 + robot.keyPress(KeyEvent.VK_V);
345 430  
346   - // 释放 CTRL+V
347   - robot.keyRelease(KeyEvent.VK_CONTROL);
348   - robot.keyRelease(KeyEvent.VK_V);
349   - Thread.sleep(1000);
  431 + // 释放 CTRL+V
  432 + robot.keyRelease(KeyEvent.VK_CONTROL);
  433 + robot.keyRelease(KeyEvent.VK_V);
  434 + Thread.sleep(1000);
350 435  
351   - // 点击回车 Enter
352   - robot.keyPress(KeyEvent.VK_ENTER);
353   - robot.keyRelease(KeyEvent.VK_ENTER);
354   - Logger.Output(LogType.LogTypeName.INFO, "上传文件成功");
  436 + // 点击回车 Enter
  437 + robot.keyPress(KeyEvent.VK_ENTER);
  438 + robot.keyRelease(KeyEvent.VK_ENTER);
  439 +
  440 + Logger.Output(LogType.LogTypeName.INFO, "上传文件成功");
  441 + } catch (Exception e) {
  442 + Logger.Output(LogType.LogTypeName.ERROR, e.getMessage() + ".");
  443 + }
355 444 }
356 445  
357   - /*
  446 + /**
358 447 * 字符串切片
359   - * 第一个参数:需要被操作的元素
360   - * 第二个参数:从这个字符开始切
361   - * 第三个参数:到这个字符结尾
362   - * 例子:某个元素的文本值为:广州市天河区猎德
363   - * 只要“天河区”
364   - * 第二个参数:天 第三个参数:区
  448 + * @param element 需要被操作的元素
  449 + * @param begin 从这个字符开始切
  450 + * @param end 到这个字符结尾
  451 + * 例子:某个元素的文本值为:广州市天河区猎德,只要“天河区”
  452 + * 第二个参数:天, 第三个参数:区
  453 + * @return
365 454 */
366 455 protected String partialStr(WebElement element, String begin, String end) {
367 456 String result_string = element.getText();
... ... @@ -376,31 +465,40 @@ public class BasePage {
376 465 return search_need;
377 466 }
378 467  
379   - //复写切片
  468 + /**
  469 + * 复写切片,仅在本页面作为截断日志文本后面带的一堆字符串
  470 + * @param string
  471 + * @param begin
  472 + * @return
  473 + */
380 474 protected String partialStr(String string,String begin) {
381 475 String st1 = string.split(begin)[1];
382 476 return st1;
383 477 }
384 478  
385   - /*
386   - * 每隔1秒查找一次我们要的元素是否存在
  479 + /**要的元素是否存在,最多5秒
  480 + * @param element
387 481 */
388   - protected WebElement mywait(WebElement element) throws InterruptedException {
389   - while(!(isElementExist(element)))
390   - Thread.sleep(1000);
391   - return element;
  482 + protected void mywait(WebElement element) {
  483 +
  484 + WebDriverWait wait = new WebDriverWait(driver, 5);
  485 +// Logger.Output(LogType.LogTypeName.INFO, "等待元素在页面上加载可见,最多5秒");
  486 + wait.until(ExpectedConditions.visibilityOf(element));
392 487 }
393 488  
394   - /*
  489 + /**
395 490 * 设立检查点,判断页面是否是我们要的
  491 + * @param checkPoint
  492 + * @param element
  493 + * @return
396 494 */
397 495 protected boolean isThisPage(String checkPoint,WebElement element) {
398 496 boolean bool1=checkPoint.equals(element.getText());
399   - Logger.Output(LogType.LogTypeName.INFO, "判断检查点是否存在");
  497 + Logger.Output(LogType.LogTypeName.INFO, "判断检查点是否存在:"+bool1);
400 498 return bool1;
401 499 }
402 500  
403   - /*
  501 + /**
404 502 * 截图当前页面
405 503 */
406 504 protected void takeScreenShot() {
... ... @@ -414,29 +512,126 @@ public class BasePage {
414 512  
415 513 catch (IOException e) {
416 514 System.out.println(e.getMessage());
417   - Logger.Output(LogType.LogTypeName.INFO, "截图当前页面失败!");
  515 + Logger.Output(LogType.LogTypeName.ERROR, "截图当前页面失败!");
418 516 }
419 517  
420 518 }
421 519  
422   - /*
  520 + /**
423 521 * 上下移动滚动条,这里使用js操作
424   - * percent值:0:最下方 100:最上方
  522 + * @param percent 0:最下方 100:最上方
425 523 */
426 524 protected void moveHeightScroll(String percent) {
427 525 JavascriptExecutor js = (JavascriptExecutor)driver;
428 526 js.executeScript("scrollBy(0, 0-document.body.scrollHeight *"+percent+"/100)");
  527 + try {
  528 + Thread.sleep(1000);
  529 + } catch (Exception e) {
  530 + }
429 531 Logger.Output(LogType.LogTypeName.INFO, "上下拖动滚动条");
430 532 }
431   -
432   - //左右移动滚动条,0:最左 100:最右
  533 +
  534 + /**
  535 + * 左右移动滚动条
  536 + * @param percent 0:最左 100:最右
  537 + */
433 538 protected void moveWidthScroll(String percent) {
434 539 JavascriptExecutor js = (JavascriptExecutor)driver;
435 540 js.executeScript("scrollBy(0, 0-document.body.scrollWidth *"+percent+"/100)");
436 541 Logger.Output(LogType.LogTypeName.INFO, "左右拖动滚动条");
437 542 }
438 543  
439   - //获取当前系统时间,得到格式化时间字符串
  544 + /**
  545 + * 鼠标点击
  546 + * @param element
  547 + */
  548 + protected void actionClick(WebElement element) {
  549 + try {
  550 + Actions action = new Actions(driver);
  551 + Logger.Output(LogType.LogTypeName.INFO, "鼠标事件点击元素");
  552 + action.click(element).perform();
  553 + } catch (Exception e) {
  554 + Logger.Output(LogType.LogTypeName.ERROR, "鼠标事件点击元素失败!");
  555 + }
  556 + }
  557 +
  558 + /**
  559 + * 鼠标双击
  560 + * @param element
  561 + */
  562 + protected void actionDoubleClick(WebElement element) {
  563 + try {
  564 + Actions action = new Actions(driver);
  565 + Logger.Output(LogType.LogTypeName.INFO, "鼠标双击元素");
  566 + action.doubleClick(element).perform();
  567 + } catch (Exception e) {
  568 + Logger.Output(LogType.LogTypeName.ERROR, "鼠标双击元素失败!");
  569 + }
  570 + }
  571 +
  572 +
  573 + /**
  574 + * 模拟鼠标事件拖动元素
  575 + * @param element 需要拖动的元素
  576 + * @param horizontal 水平方向:正数向右,负数向左
  577 + * @param vertical 垂直方向:正数向上,负数向下
  578 + */
  579 + protected void jsExecutorDragAndDrop(WebElement element,int horizontal,int vertical) {
  580 + try {
  581 + Actions action = new Actions(driver);
  582 + action.dragAndDropBy(element, horizontal, vertical).perform();
  583 + Logger.Output(LogType.LogTypeName.INFO, "使用鼠标拖动,将元素水平拖动"+horizontal+" 垂直拖动"+vertical);
  584 + } catch (Exception e) {
  585 + Logger.Output(LogType.LogTypeName.ERROR, e.getMessage() + ".");
  586 + }
  587 + }
  588 +
  589 + /**
  590 + * 移动鼠标到指定元素
  591 + * @param element
  592 + */
  593 + public void moveMouse(WebElement element) {
  594 + try {
  595 + Actions action = new Actions(driver);
  596 + Logger.Output(LogType.LogTypeName.INFO, "移动鼠标到指定元素上");
  597 + action.moveToElement(element).perform();
  598 + } catch (Exception e) {
  599 + Logger.Output(LogType.LogTypeName.ERROR, "移动鼠标失败了~");
  600 + }
  601 + }
  602 +
  603 + /**
  604 + * 键盘回车
  605 + * @param element
  606 + */
  607 + protected void enter(WebElement element) {
  608 + try {
  609 + Logger.Output(LogType.LogTypeName.INFO, "对元素进行键盘回车");
  610 + element.sendKeys(Keys.ENTER);
  611 + } catch (Exception e) {
  612 + Logger.Output(LogType.LogTypeName.ERROR, "键盘回车失败!");
  613 + }
  614 + }
  615 +
  616 + /**
  617 + * 强行等待,有时候页面加载需要时间,检查点检测不出使用
  618 + * @param msec
  619 + */
  620 + protected void forceWait(int msec) {
  621 + try {
  622 + Logger.Output(LogType.LogTypeName.INFO, "强行等待:"+msec/1000+"秒");
  623 + Thread.sleep(msec);
  624 + } catch (Exception e) {
  625 + Logger.Output(LogType.LogTypeName.ERROR, "强行等待失败");
  626 + }
  627 + }
  628 +
  629 + /**
  630 + * 获取当前系统时间,得到格式化时间字符串
  631 + * @param date
  632 + * @param format
  633 + * @return
  634 + */
440 635 protected static String getDateTimeByFormat(Date date, String format) {
441 636  
442 637 SimpleDateFormat df = new SimpleDateFormat(format);
... ...
src/test/java/com/essa/framework/BrowserEngine.java
... ... @@ -16,25 +16,53 @@ import org.openqa.selenium.remote.DesiredCapabilities;
16 16  
17 17 public class BrowserEngine {
18 18  
19   - private String browserName;
  19 + private static String browserName;
20 20 private String serverURL;
21   - private WebDriver driver;
  21 + private String buyerURL;
  22 + private static WebDriver driver;
  23 + private static String env;
22 24  
23 25 public void initConfigData() throws IOException{
24 26  
25 27 Properties p = new Properties();
26 28 // 加载配置文件
27   - InputStream ips = new FileInputStream(".\\src\\main\\resources\\TestConfig\\config.properties");
  29 +// InputStream ips = new FileInputStream(".\\src\\main\\resources\\TestConfig\\config.properties");
  30 + InputStream ips = new FileInputStream(".\\config.properties");
28 31 p.load(ips);
29 32  
30 33 Logger.Output(LogType.LogTypeName.INFO, "开始从配置文件中选择浏览器");
31   - browserName=p.getProperty("browserName");
32   - Logger.Output(LogType.LogTypeName.INFO, "所选择的浏览器类型为: "+ browserName);
33   - serverURL = p.getProperty("URL");
34   - Logger.Output(LogType.LogTypeName.INFO, "所测试的URL地址为: "+ serverURL);
  34 +// browserName=p.getProperty("browserName");//使用jframe要注释
  35 + Logger.Output(LogType.LogTypeName.INFO, "所选择的浏览器类型为: "+ browserName);
  36 + if (env=="DIT") {
  37 + serverURL = p.getProperty("DIT");
  38 + buyerURL = p.getProperty("BDIT");
  39 + }else if (env =="HOTFIX") {
  40 + serverURL = p.getProperty("HOTFIX");
  41 + buyerURL = p.getProperty("BHOTFIX");
  42 + }else if (env == "UAT") {
  43 + serverURL = p.getProperty("UAT");
  44 + buyerURL = p.getProperty("BUAT");
  45 + }else {
  46 + serverURL = p.getProperty("SIT");
  47 + buyerURL = p.getProperty("BSIT");
  48 + }
  49 + Logger.Output(LogType.LogTypeName.INFO, "所测试的环境为:"+ env);
35 50 ips.close();
36 51 }
  52 + /**
  53 + * bpms环境初始化
  54 + * @param environment
  55 + * @param browser
  56 + */
  57 + public static void setInit(String environment,String browser) {
  58 + browserName = browser;
  59 + env = environment;
  60 + }
37 61  
  62 + /**
  63 + * bpms获取地址方法
  64 + * @return
  65 + */
38 66 public WebDriver getBrowser(){
39 67  
40 68 if(browserName.equalsIgnoreCase("Firefox")){
... ... @@ -45,7 +73,8 @@ public class BrowserEngine {
45 73  
46 74 }
47 75 else if(browserName.equals("Chrome")){
48   - System.setProperty("webdriver.chrome.driver", ".\\src\\main\\resources\\chromedriver.exe");
  76 +// System.setProperty("webdriver.chrome.driver", ".\\src\\main\\resources\\chromedriver.exe");
  77 + System.setProperty("webdriver.chrome.driver", ".\\chromedriver.exe");
49 78 driver= new ChromeDriver();
50 79 Logger.Output(LogType.LogTypeName.INFO, "正在启动Chrome浏览器");
51 80  
... ... @@ -62,6 +91,25 @@ public class BrowserEngine {
62 91 callWait(5);
63 92 return driver;
64 93 }
  94 +
  95 + /**
  96 + * buyer获取浏览器,并读取buyer的地址
  97 + * @return
  98 + */
  99 + public WebDriver buyerGetBrowser() {
  100 + if (browserName.equals("Chrome")) {
  101 +// System.setProperty("webdriver.chrome.driver", ".\\src\\main\\resources\\chromedriver.exe");
  102 + System.setProperty("webdriver.chrome.driver", ".\\chromedriver.exe");
  103 + driver= new ChromeDriver();
  104 + Logger.Output(LogType.LogTypeName.INFO, "正在启动Chrome浏览器");
  105 + }
  106 + driver.manage().window().maximize();
  107 + Logger.Output(LogType.LogTypeName.INFO, "窗口最大化");
  108 + driver.get(buyerURL);
  109 + Logger.Output(LogType.LogTypeName.INFO, "打开URL: "+ buyerURL);
  110 + callWait(5);
  111 + return driver;
  112 + }
65 113  
66 114 /*
67 115 * 关闭浏览器并退出方法
... ...
src/test/java/com/essa/framework/Logger.java
... ... @@ -8,12 +8,15 @@ import java.util.Date;
8 8  
9 9 import com.essa.framework.LogType;
10 10  
  11 +import demo.firstDemo;
  12 +
11 13 public class Logger {
12 14  
13   - public static String OutputFileName = getDateTimeByFormat(new Date(), "yyyyMMdd_HHmmss");
  15 + public static String OutputFileName = getDateTimeByFormat(new Date(), "yyyyMMdd");
14 16 private static OutputStreamWriter outputStreamWriter;
15 17 private static String logFileName;
16 18 public static boolean LogFlag = true;
  19 + public static String logContent;
17 20  
18 21 public Logger() {
19 22  
... ... @@ -34,6 +37,7 @@ public class Logger {
34 37 outputStreamWriter = new OutputStreamWriter(new FileOutputStream(logFileName), "utf-8");
35 38 }
36 39 outputStreamWriter.write(logEntry, 0, logEntry.length());
  40 +
37 41 outputStreamWriter.flush();
38 42  
39 43 } catch (Exception e) {
... ... @@ -54,13 +58,25 @@ public class Logger {
54 58 }
55 59  
56 60 public static void Output(LogType.LogTypeName logTypeName, String logMessage) {
57   -
  61 + firstDemo aa = new firstDemo();
58 62 Date date = new Date();
59 63 String logTime = getDateTimeByFormat(date, "yyyy-MM-dd HH:mm:ss.SSS");
60 64 String logEntry = logTime + " " + logTypeName.name() + ": " + logMessage + "\r\n";
61   - System.out.print(logEntry);
  65 + System.out.print(logEntry);
  66 + setLog(logEntry);
62 67 // 定义一个开关,为True就输出日志,如果你不想输出,改成False
63 68 if (LogFlag)
64 69 WriteLog(logEntry);
65 70 }
  71 + /**
  72 + * 获取日志信息
  73 + * @return
  74 + */
  75 + public static String getLog() {
  76 + return logContent;
  77 + }
  78 +
  79 + public static void setLog(String logEntry) {
  80 + logContent = logEntry;
  81 + }
66 82 }
... ...
src/test/java/com/essa/pageObject/BaseTest.java
... ... @@ -14,24 +14,39 @@ public class BaseTest {
14 14 return driver;
15 15 }
16 16  
17   - // 调用浏览器,打开要测试的网页
18   - public void initsetUp() throws IOException {
19   -
  17 + /**
  18 + * bpms调用浏览器,打开要测试的网页
  19 + */
  20 + public void initsetUp() {
20 21 BrowserEngine browserEngine = new BrowserEngine();
21   -
22   - browserEngine.initConfigData();
23   -
  22 + try {
  23 + browserEngine.initConfigData();
  24 + } catch (IOException e) {
  25 + e.printStackTrace();
  26 + }
24 27 driver = browserEngine.getBrowser();
25   -
  28 + }
  29 +
  30 + /**
  31 + * buyer调用浏览器,将访问buyer的地址
  32 + */
  33 + public void initBuyer() {
  34 + BrowserEngine browserEngine = new BrowserEngine();
  35 + try {
  36 + browserEngine.initConfigData();
  37 + } catch (IOException e) {
  38 + e.printStackTrace();
  39 + }
  40 + driver = browserEngine.buyerGetBrowser();
26 41 }
27 42  
28   - //初始化登录页面,登录
29   - public void loginValid() {
30   -
  43 + /**
  44 + * bpms初始化登录页面,登录
  45 + * @param account
  46 + */
  47 + public void loginValid(String account) {
31 48 LoginPage loginPage = PageFactory.initElements(driver, LoginPage.class);
32   -
33   - loginPage.login("admin", "essa123");
34   -
  49 + loginPage.login(account, "essa123");
35 50 }
36 51 }
37 52  
... ...
src/test/java/com/essa/pageObject/HomePage.java
... ... @@ -3,12 +3,20 @@ package com.essa.pageObject;
3 3 import org.openqa.selenium.WebDriver;
4 4 import org.openqa.selenium.WebElement;
5 5 import org.openqa.selenium.support.FindBy;
6   -import com.essa.framework.BasePage;
  6 +import com.essa.framework.BasePage;
  7 +import com.essa.pageObject.GoodsManage.AddOriginalGoodsPage;
  8 +import com.essa.pageObject.GoodsManage.AuditMarketGoodsPage;
  9 +import com.essa.pageObject.GoodsManage.AuditOriginalGoodsPage;
  10 +import com.essa.pageObject.GoodsManage.GoodsBankPage;
  11 +import com.essa.pageObject.GoodsManage.GoodsRelesePage;
  12 +import com.essa.pageObject.GoodsManage.MarketGoodsRelesePage;
  13 +import com.essa.pageObject.buyPlaneManage.SkuCategoryManagerCongfigPage;
  14 +import com.essa.pageObject.marketingManage.GroupControlPage;
  15 +import com.essa.pageObject.marketingManage.GroupSettingPage;
7 16  
8 17 public class HomePage extends BasePage{
9 18 public HomePage(WebDriver driver) {
10 19 super(driver);
11   -
12 20 }
13 21  
14 22 /*
... ... @@ -19,6 +27,10 @@ public class HomePage extends BasePage{
19 27 @FindBy (xpath="//*[text()='退出']")
20 28 WebElement logout;
21 29  
  30 + //左上角图标--用于回到首页
  31 + @FindBy (xpath="//*[@class='logo-text']")
  32 + WebElement essaIcon;
  33 +
22 34 //供应商管理
23 35 @FindBy (xpath="//*[text()='供应商管理']")
24 36 WebElement supplier;
... ... @@ -31,11 +43,62 @@ public class HomePage extends BasePage{
31 43 @FindBy (xpath="//*[text()='供应商查询']")
32 44 WebElement searchSuppliers;
33 45  
  46 + //商品管理
  47 + @FindBy (xpath="//*[text()='商品管理']")
  48 + WebElement goodsManage;
  49 +
  50 + //商品库
  51 + @FindBy (xpath="//*[text()='商品库']")
  52 + WebElement goodBank;
  53 +
  54 + //原厂商品发布
  55 + @FindBy (xpath="//*[text()='原厂商品发布']")
  56 + WebElement addOriginalGoods;
  57 +
  58 + //市场商品发布
  59 + @FindBy (xpath="//*[text()='市场商品发布']")
  60 + WebElement marketGoodsRelese;
  61 +
  62 + //商品发布管理-子元素
  63 + @FindBy(xpath="//*[@name='child.text' and text()='商品发布管理']")
  64 + WebElement goodsPublish;
  65 +
  66 + //原厂商品发布审核
  67 + @FindBy(xpath="//*[text()='原厂商品发布审核']")
  68 + WebElement auditOriginal;
  69 +
  70 + //市场商品发布审核
  71 + @FindBy(xpath="//*[text()='市场商品发布审核']")
  72 + WebElement auditMarket;
  73 +
  74 + //采购计划管理
  75 + @FindBy(xpath="//*[text()='采购计划管理']")
  76 + WebElement buyerPlaneManage;
  77 +
  78 + //商品类目经理分配配置
  79 + @FindBy(xpath="//*[text()='商品类目经理分配配置']")
  80 + WebElement skuManagerConfig;
  81 +
  82 + //营销管理
  83 + @FindBy (xpath="//*[text()='营销管理']")
  84 + WebElement marketingManage;
  85 +
  86 + //团购设置
  87 + @FindBy (xpath="//*[text()='团购设置']/..")
  88 + WebElement groupSetting;
  89 +
  90 + //团购控制
  91 + @FindBy (xpath="//*[text()='团购控制']/..")
  92 + WebElement groupControl;
  93 +
34 94 /*
35 95 * 方法
36 96 */
37 97  
38   - //进入运营跟进管理页面
  98 + /**
  99 + * 进入运营跟进管理页面
  100 + * @return
  101 + */
39 102 public SupplierOperationsTrackPage goToSupplierOperationsTrack() {
40 103  
41 104 //点击 供应商管理
... ... @@ -49,6 +112,96 @@ public class HomePage extends BasePage{
49 112  
50 113 }
51 114  
  115 + /**
  116 + * 进入原厂商品发布
  117 + * @return
  118 + */
  119 + public AddOriginalGoodsPage tOriginalGoodsPage() {
  120 + click(goodsManage);
  121 + isElementExist(addOriginalGoods);
  122 + click(addOriginalGoods);
  123 + return new AddOriginalGoodsPage(driver);
  124 + }
  125 +
  126 + /**
  127 + * 进入商品发布管理
  128 + * @return
  129 + */
  130 + public GoodsRelesePage tGoodsRelesePage() {
  131 + click(goodsManage);
  132 + click(goodsPublish);
  133 + return new GoodsRelesePage(driver);
  134 + }
  135 +
  136 + /**
  137 + * 进入原厂商品发布审核
  138 + * @return
  139 + */
  140 + public AuditOriginalGoodsPage toAuditOriginalGoodsPage() {
  141 + mywait(logout);
  142 + click(goodsManage);
  143 + click(auditOriginal);
  144 + return new AuditOriginalGoodsPage(driver);
  145 + }
  146 +
  147 + /**
  148 + * 进入商品库
  149 + * @return
  150 + */
  151 + public GoodsBankPage toGoodsBankPage() {
  152 + click(goodsManage);
  153 + click(goodBank);
  154 + return new GoodsBankPage(driver);
  155 + }
  156 +
  157 + /**
  158 + * 进入市场商品发布
  159 + * @return
  160 + */
  161 + public MarketGoodsRelesePage toMarketGoodsRelesePage() {
  162 + click(goodsManage);
  163 + click(marketGoodsRelese);
  164 + return new MarketGoodsRelesePage(driver);
  165 + }
  166 + /**
  167 + * 进入市场商品发布审核
  168 + * @return
  169 + */
  170 + public AuditMarketGoodsPage toAuditMarketGoodsPage() {
  171 + click(goodsManage);
  172 + click(auditMarket);
  173 + return new AuditMarketGoodsPage(driver);
  174 + }
  175 + /**
  176 + * 进入商品类目经理分配配置
  177 + * @return
  178 + */
  179 + public SkuCategoryManagerCongfigPage toSkuCategoryManagerCongfig() {
  180 + mywait(logout);
  181 + click(buyerPlaneManage);
  182 + click(skuManagerConfig);
  183 + return new SkuCategoryManagerCongfigPage(driver);
  184 + }
  185 + /**
  186 + * 进入团购设置
  187 + * @return
  188 + */
  189 + public GroupSettingPage toGroupSettingPage() {
  190 + getHome();
  191 + click(marketingManage);
  192 + click(groupSetting);
  193 + return new GroupSettingPage(driver);
  194 + }
  195 + /**
  196 + * 进入团购控制
  197 + * @return
  198 + */
  199 + public GroupControlPage toGroupControlPage() {
  200 +// getHome();
  201 + click(marketingManage);
  202 + click(groupControl);
  203 + return new GroupControlPage(driver);
  204 + }
52 205 //判断是否存在退出按钮
53 206 public boolean isSucceed() {
54 207  
... ... @@ -64,6 +217,14 @@ public class HomePage extends BasePage{
64 217  
65 218 }
66 219  
  220 + /**
  221 + *点击essa图标, 回到bpms后台首页
  222 + */
  223 + public void getHome() {
  224 + forceWait(500);
  225 + jsExecutorClick(essaIcon);
  226 + forceWait(1000);
  227 + }
67 228 //退出登录
68 229 public void logout() {
69 230  
... ...
src/test/java/com/essa/testSuite/Test_Development_Ability.java renamed to src/test/java/com/essa/testSuite/TestDevelopmentAbility.java
... ... @@ -17,7 +17,7 @@ import com.essa.pageObject.SupplierOperationsTrackPage;
17 17 import com.essa.pageObject.SupplierStrengthPage;
18 18 import com.essa.pageObject.BaseTest;
19 19  
20   -public class Test_Development_Ability extends BaseTest {
  20 +public class TestDevelopmentAbility extends BaseTest {
21 21  
22 22 WebDriver driver;
23 23  
... ... @@ -27,7 +27,7 @@ public class Test_Development_Ability extends BaseTest {
27 27  
28 28 initsetUp();
29 29  
30   - loginValid();
  30 + loginValid("admin");
31 31  
32 32 }
33 33  
... ...
src/test/java/com/essa/testSuite/Test_Login.java renamed to src/test/java/com/essa/testSuite/TestLogin.java
... ... @@ -14,7 +14,7 @@ import com.essa.framework.BrowserEngine;
14 14 import com.essa.pageObject.HomePage;
15 15 import com.essa.pageObject.LoginPage;
16 16  
17   -public class Test_Login {
  17 +public class TestLogin {
18 18 WebDriver driver;
19 19  
20 20 /*
... ...
suites/testng.xml renamed to suites/addOriginalGoods.xml
1 1 <?xml version="1.0" encoding="UTF-8"?>
2 2 <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
3   -<suite name="bpms自动化测试">
  3 +<suite name="新增原厂商品">
4 4 <listeners>
5 5 <!-- 设置监听,测试完毕后会发送测试报告至qq邮箱
6 6 <listener class-name="com.essa.framework.ListenerSuite"/>
7 7 -->
8 8 </listeners>
  9 + <test name="addOriginalGoods">
  10 + <classes>
  11 + <class name="com.essa.testSuite.TestAddOriginalGoods">
  12 + <methods>
  13 + <include name="toAddOriginalGoodsPage"/>
  14 + <include name="toGoodsRelesePage"/>
  15 + <include name="updatePic"/>
  16 + <include name="auditOriginal"/>
  17 + <include name="getSkuNo"/>
  18 + </methods>
  19 + </class>
  20 + </classes>
  21 + </test>
9 22  
10   - <test name="login">
  23 +<!-- <test name="login">
11 24 <classes>
12   - <!-- 选择要执行的测试类 -->
  25 + 选择要执行的测试类
13 26 <class name="com.essa.testSuite.Test_Login">
14 27 </class>
15 28 </classes>
16   - </test>
  29 + </test> -->
17 30  
18 31 <!--
19 32 <test name="编辑综合实力评估">
... ...
target/classes/META-INF/MANIFEST.MF
1   -Manifest-Version: 1.0
2   -Built-By: Administrator
3   -Build-Jdk: 1.8.0_51
4   -Created-By: Maven Integration for Eclipse
5   -
  1 +Manifest-Version: 1.0
  2 +Built-By: Administrator
  3 +Build-Jdk: 10.0.2
  4 +Created-By: Maven Integration for Eclipse
  5 +
... ...
target/classes/META-INF/maven/com.essatest/essa/pom.properties
1   -#Generated by Maven Integration for Eclipse
2   -#Sat Apr 14 17:00:22 CST 2018
3   -version=0.0.1-SNAPSHOT
4   -groupId=com.essatest
5   -m2e.projectName=essa
6   -m2e.projectLocation=E\:\\work\\essa
7   -artifactId=essa
  1 +#Generated by Maven Integration for Eclipse
  2 +#Sat Aug 18 18:12:23 CST 2018
  3 +m2e.projectLocation=D\:\\workspace\\demo
  4 +m2e.projectName=demo
  5 +groupId=com.essatest
  6 +artifactId=essa
  7 +version=0.0.1-SNAPSHOT
... ...
target/classes/META-INF/maven/com.essatest/essa/pom.xml
... ... @@ -19,8 +19,8 @@
19 19 <dependency>
20 20 <groupId>org.testng</groupId>
21 21 <artifactId>testng</artifactId>
22   - <version>6.14.2</version>
23   - <scope>test</scope>
  22 + <version>6.14.3</version>
  23 + <!-- <scope>test</scope>-->
24 24 </dependency>
25 25  
26 26 <dependency>
... ... @@ -76,19 +76,19 @@
76 76 <dependency>
77 77 <groupId>org.apache.poi</groupId>
78 78 <artifactId>poi</artifactId>
79   - <version>3.17</version>
  79 + <version>3.14</version>
80 80 </dependency>
81 81  
82 82 <dependency>
83 83 <groupId>org.apache.poi</groupId>
84 84 <artifactId>poi-ooxml</artifactId>
85   - <version>3.17</version>
  85 + <version>3.14</version>
86 86 </dependency>
87 87  
88 88 <dependency>
89 89 <groupId>org.apache.poi</groupId>
90 90 <artifactId>poi-ooxml-schemas</artifactId>
91   - <version>3.17</version>
  91 + <version>3.14</version>
92 92 </dependency>
93 93  
94 94 <dependency>
... ...
target/classes/TestConfig/config.properties
... ... @@ -2,5 +2,15 @@
2 2 #browserName=IE
3 3 browserName=Chrome
4 4  
5   -URL=http://bpms.hotfix.gz.essa
6   -#URL=http://www.baidu.com
  5 +SIT=http://bpms.sit.gz.essa
  6 +BSIT=http://en.portalsit.cn
  7 +
  8 +HOTFIX=http://bpms.hotfix.gz.essa
  9 +BHOTFIX=http://en.portalhotfix.cn
  10 +
  11 +UAT=http://bpms.spstoys.com:7291
  12 +BUAT=http://en.spstoys.com:889
  13 +
  14 +DIT=http://bpms.dit.gz.essa
  15 +BDIT=http://en.portaldit.cn
  16 +
... ...
target/classes/chromedriver.exe
No preview for this file type
target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
... ... @@ -0,0 +1,15 @@
  1 +C:\Users\Administrator\git\selenium_windows\src\test\java\com\essa\testSuite\SendEmail.java
  2 +C:\Users\Administrator\git\selenium_windows\src\test\java\com\essa\framework\BasePage.java
  3 +C:\Users\Administrator\git\selenium_windows\src\test\java\com\essa\pageObject\HomePage.java
  4 +C:\Users\Administrator\git\selenium_windows\src\test\java\com\essa\framework\BrowserEngine.java
  5 +C:\Users\Administrator\git\selenium_windows\src\test\java\com\essa\framework\Logger.java
  6 +C:\Users\Administrator\git\selenium_windows\src\test\java\com\essa\pageObject\LoginPage.java
  7 +C:\Users\Administrator\git\selenium_windows\src\test\java\com\essa\framework\LogType.java
  8 +C:\Users\Administrator\git\selenium_windows\src\test\java\com\essa\pageObject\SupplierStrengthPage.java
  9 +C:\Users\Administrator\git\selenium_windows\src\test\java\com\essa\testSuite\Test_Login.java
  10 +C:\Users\Administrator\git\selenium_windows\src\test\java\com\essa\framework\ListenerSuite.java
  11 +C:\Users\Administrator\git\selenium_windows\src\test\java\com\essa\framework\SendEmail.java
  12 +C:\Users\Administrator\git\selenium_windows\src\test\java\com\essa\pageObject\BaseTest.java
  13 +C:\Users\Administrator\git\selenium_windows\src\test\java\com\essa\testSuite\Test_Development_Ability.java
  14 +C:\Users\Administrator\git\selenium_windows\src\test\java\com\essa\pageObject\SupplierOperationsTrackPage.java
  15 +C:\Users\Administrator\git\selenium_windows\src\test\java\com\essa\pageObject\NewProduct.java
... ...
target/test-classes/com/essa/framework/BasePage.class
No preview for this file type
target/test-classes/com/essa/framework/BrowserEngine.class
No preview for this file type
target/test-classes/com/essa/framework/Logger.class
No preview for this file type
target/test-classes/com/essa/framework/SendEmail$1.class
No preview for this file type
target/test-classes/com/essa/pageObject/BaseTest.class
No preview for this file type
target/test-classes/com/essa/pageObject/HomePage.class
No preview for this file type
target/test-classes/com/essa/testSuite/SendEmail$1.class
No preview for this file type
test-output/bpms自动化测试/login.html
... ... @@ -57,9 +57,9 @@ function toggleAllBoxes() {
57 57 <tr>
58 58 <td>Tests passed/Failed/Skipped:</td><td>2/0/0</td>
59 59 </tr><tr>
60   -<td>Started on:</td><td>Tue Apr 10 18:26:41 CST 2018</td>
  60 +<td>Started on:</td><td>Mon Aug 13 10:09:58 CST 2018</td>
61 61 </tr>
62   -<tr><td>Total time:</td><td>35 seconds (35821 ms)</td>
  62 +<tr><td>Total time:</td><td>13 seconds (13736 ms)</td>
63 63 </tr><tr>
64 64 <td>Included groups:</td><td></td>
65 65 </tr><tr>
... ... @@ -77,13 +77,13 @@ function toggleAllBoxes() {
77 77 <tr>
78 78 <td title='com.essa.testSuite.Test_Login.login()'><b>login</b><br>Test class: com.essa.testSuite.Test_Login<br>Parameters: admin, essa123</td>
79 79 <td></td>
80   -<td>9</td>
81   -<td>com.essa.testSuite.Test_Login@83b407</td></tr>
  80 +<td>2</td>
  81 +<td>com.essa.testSuite.Test_Login@5f16132a</td></tr>
82 82 <tr>
83 83 <td title='com.essa.testSuite.Test_Login.login()'><b>login</b><br>Test class: com.essa.testSuite.Test_Login<br>Parameters: linrong, essa123</td>
84 84 <td></td>
85   -<td>9</td>
86   -<td>com.essa.testSuite.Test_Login@83b407</td></tr>
  85 +<td>2</td>
  86 +<td>com.essa.testSuite.Test_Login@5f16132a</td></tr>
87 87 </table><p>
88 88 </body>
89 89 </html>
90 90 \ No newline at end of file
... ...
test-output/bpms自动化测试/login.xml
1   -<?xml version="1.0" encoding="UTF-8"?>
  1 +<?xml version="1.0" encoding="UTF-8"?>
2 2 <!-- Generated by org.testng.reporters.JUnitXMLReporter -->
3   -<testsuite hostname="DESKTOP-NIGE62D" ignored="0" name="login" tests="2" failures="0" timestamp="10 四月 2018 10:27:17 GMT" time="35.821" errors="0">
4   - <testcase name="login" time="9.69" classname="com.essa.testSuite.Test_Login"/>
5   - <testcase name="login" time="9.11" classname="com.essa.testSuite.Test_Login"/>
6   -</testsuite> <!-- login -->
  3 +<testsuite ignored="0" hostname="A4O1M5DMPNJ0AZF" failures="0" tests="2" name="login" time="13.736" errors="0" timestamp="13 8月 2018 02:10:12 GMT">
  4 + <testcase classname="com.essa.testSuite.Test_Login" name="login" time="2.878"/>
  5 + <testcase classname="com.essa.testSuite.Test_Login" name="login" time="2.333"/>
  6 +</testsuite> <!-- login -->
... ...
test-output/emailable-report.html
1   -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2   -<html xmlns="http://www.w3.org/1999/xhtml">
3   -<head>
4   -<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
5   -<title>TestNG Report</title>
6   -<style type="text/css">table {margin-bottom:10px;border-collapse:collapse;empty-cells:show}th,td {border:1px solid #009;padding:.25em .5em}th {vertical-align:bottom}td {vertical-align:top}table a {font-weight:bold}.stripe td {background-color: #E6EBF9}.num {text-align:right}.passedodd td {background-color: #3F3}.passedeven td {background-color: #0A0}.skippedodd td {background-color: #DDD}.skippedeven td {background-color: #CCC}.failedodd td,.attn {background-color: #F33}.failedeven td,.stripe .attn {background-color: #D00}.stacktrace {white-space:pre;font-family:monospace}.totop {font-size:85%;text-align:center;border-bottom:2px solid #000}.invisible {display:none}</style>
7   -</head>
8   -<body>
9   -<table>
10   -<tr><th>Test</th><th># Passed</th><th># Skipped</th><th># Failed</th><th>Time (ms)</th><th>Included Groups</th><th>Excluded Groups</th></tr>
11   -<tr><th colspan="7">bpms自动化测试</th></tr>
12   -<tr><td><a href="#t0">login</a></td><td class="num">2</td><td class="num">0</td><td class="num">0</td><td class="num">35,821</td><td></td><td></td></tr>
13   -</table>
14   -<table id='summary'><thead><tr><th>Class</th><th>Method</th><th>Start</th><th>Time (ms)</th></tr></thead><tbody><tr><th colspan="4">bpms自动化测试</th></tr></tbody><tbody id="t0"><tr><th colspan="4">login &#8212; passed</th></tr><tr class="passedeven"><td rowspan="2">com.essa.testSuite.Test_Login</td><td><a href="#m0">login</a></td><td rowspan="2">1523356016389</td><td rowspan="2">9690</td></tr><tr class="passedeven"><td><a href="#m1">login</a></td></tr></tbody>
15   -</table>
16   -<h2>login</h2><h3 id="m0">com.essa.testSuite.Test_Login#login</h3><table class="result"><tr class="param"><th>Parameter #1</th><th>Parameter #2</th></tr><tr class="param stripe"><td>admin</td><td>essa123</td></tr></table><p class="totop"><a href="#summary">back to summary</a></p>
17   -<h3 id="m1">com.essa.testSuite.Test_Login#login</h3><table class="result"><tr class="param"><th>Parameter #1</th><th>Parameter #2</th></tr><tr class="param stripe"><td>linrong</td><td>essa123</td></tr></table><p class="totop"><a href="#summary">back to summary</a></p>
18   -</body>
19   -</html>
  1 +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
  2 +<html xmlns="http://www.w3.org/1999/xhtml">
  3 +<head>
  4 +<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
  5 +<title>TestNG Report</title>
  6 +<style type="text/css">table {margin-bottom:10px;border-collapse:collapse;empty-cells:show}th,td {border:1px solid #009;padding:.25em .5em}th {vertical-align:bottom}td {vertical-align:top}table a {font-weight:bold}.stripe td {background-color: #E6EBF9}.num {text-align:right}.passedodd td {background-color: #3F3}.passedeven td {background-color: #0A0}.skippedodd td {background-color: #DDD}.skippedeven td {background-color: #CCC}.failedodd td,.attn {background-color: #F33}.failedeven td,.stripe .attn {background-color: #D00}.stacktrace {white-space:pre;font-family:monospace}.totop {font-size:85%;text-align:center;border-bottom:2px solid #000}.invisible {display:none}</style>
  7 +</head>
  8 +<body>
  9 +<table>
  10 +<tr><th>Test</th><th># Passed</th><th># Skipped</th><th># Failed</th><th>Time (ms)</th><th>Included Groups</th><th>Excluded Groups</th></tr>
  11 +<tr><th colspan="7">新增市场商品</th></tr>
  12 +<tr><td><a href="#t0">addMarketGoods</a></td><td class="num">3</td><td class="num">0</td><td class="num">0</td><td class="num">71,013</td><td></td><td></td></tr>
  13 +</table>
  14 +<table id='summary'><thead><tr><th>Class</th><th>Method</th><th>Start</th><th>Time (ms)</th></tr></thead><tbody><tr><th colspan="4">新增市场商品</th></tr></tbody><tbody id="t0"><tr><th colspan="4">addMarketGoods &#8212; passed</th></tr><tr class="passedeven"><td rowspan="3">com.essa.testSuite.TestAddMarketGoods</td><td><a href="#m0">addMarketGoods</a></td><td rowspan="1">1535079590155</td><td rowspan="1">37865</td></tr><tr class="passedeven"><td><a href="#m1">auditMarketGoods</a></td><td rowspan="1">1535079628021</td><td rowspan="1">16655</td></tr><tr class="passedeven"><td><a href="#m2">toMarketGoodsRelesePage</a></td><td rowspan="1">1535079583878</td><td rowspan="1">6275</td></tr></tbody>
  15 +</table>
  16 +<h2>addMarketGoods</h2><h3 id="m0">com.essa.testSuite.TestAddMarketGoods#addMarketGoods</h3><table class="result"><tr><th class="invisible"/></tr></table><p class="totop"><a href="#summary">back to summary</a></p>
  17 +<h3 id="m1">com.essa.testSuite.TestAddMarketGoods#auditMarketGoods</h3><table class="result"><tr><th class="invisible"/></tr></table><p class="totop"><a href="#summary">back to summary</a></p>
  18 +<h3 id="m2">com.essa.testSuite.TestAddMarketGoods#toMarketGoodsRelesePage</h3><table class="result"><tr><th class="invisible"/></tr></table><p class="totop"><a href="#summary">back to summary</a></p>
  19 +</body>
  20 +</html>
... ...
test-output/index.html
... ... @@ -21,245 +21,266 @@
21 21 </head>
22 22  
23 23 <body>
24   - <div class="top-banner-root">
25   - <span class="top-banner-title-font">Test results</span>
26   - <br/>
27   - <span class="top-banner-font-1">1 suite</span>
28   - </div> <!-- top-banner-root -->
29   - <div class="navigator-root">
30   - <div class="navigator-suite-header">
31   - <span>All suites</span>
32   - <a href="#" class="collapse-all-link" title="Collapse/expand all the suites">
33   - <img class="collapse-all-icon" src="collapseall.gif">
34   - </img> <!-- collapse-all-icon -->
35   - </a> <!-- collapse-all-link -->
36   - </div> <!-- navigator-suite-header -->
37   - <div class="suite">
38   - <div class="rounded-window">
39   - <div class="suite-header light-rounded-window-top">
40   - <a href="#" class="navigator-link" panel-name="suite-bpms自动化测试">
41   - <span class="suite-name border-passed">bpms自动化测试</span>
42   - </a> <!-- navigator-link -->
43   - </div> <!-- suite-header light-rounded-window-top -->
44   - <div class="navigator-suite-content">
45   - <div class="suite-section-title">
46   - <span>Info</span>
47   - </div> <!-- suite-section-title -->
48   - <div class="suite-section-content">
49   - <ul>
50   - <li>
51   - <a href="#" class="navigator-link " panel-name="test-xml-bpms自动化测试">
52   - <span>E:\work\essa\suites\testng.xml</span>
53   - </a> <!-- navigator-link -->
54   - </li>
55   - <li>
56   - <a href="#" class="navigator-link " panel-name="testlist-bpms自动化测试">
57   - <span class="test-stats">1 test</span>
58   - </a> <!-- navigator-link -->
59   - </li>
60   - <li>
61   - <a href="#" class="navigator-link " panel-name="group-bpms自动化测试">
62   - <span>0 groups</span>
63   - </a> <!-- navigator-link -->
64   - </li>
65   - <li>
66   - <a href="#" class="navigator-link " panel-name="times-bpms自动化测试">
67   - <span>Times</span>
68   - </a> <!-- navigator-link -->
69   - </li>
70   - <li>
71   - <a href="#" class="navigator-link " panel-name="reporter-bpms自动化测试">
72   - <span>Reporter output</span>
73   - </a> <!-- navigator-link -->
74   - </li>
75   - <li>
76   - <a href="#" class="navigator-link " panel-name="ignored-methods-bpms自动化测试">
77   - <span>Ignored methods</span>
78   - </a> <!-- navigator-link -->
79   - </li>
80   - <li>
81   - <a href="#" class="navigator-link " panel-name="chronological-bpms自动化测试">
82   - <span>Chronological view</span>
83   - </a> <!-- navigator-link -->
84   - </li>
85   - </ul>
86   - </div> <!-- suite-section-content -->
87   - <div class="result-section">
88   - <div class="suite-section-title">
89   - <span>Results</span>
90   - </div> <!-- suite-section-title -->
91   - <div class="suite-section-content">
92   - <ul>
93   - <li>
94   - <span class="method-stats">2 methods, 2 passed</span>
95   - </li>
96   - <li>
97   - <span class="method-list-title passed">Passed methods</span>
98   - <span class="show-or-hide-methods passed">
99   - <a href="#" panel-name="suite-bpms自动化测试" class="hide-methods passed suite-bpms自动化测试"> (hide)</a> <!-- hide-methods passed suite-bpms自动化测试 -->
100   - <a href="#" panel-name="suite-bpms自动化测试" class="show-methods passed suite-bpms自动化测试"> (show)</a> <!-- show-methods passed suite-bpms自动化测试 -->
101   - </span>
102   - <div class="method-list-content passed suite-bpms自动化测试">
103   - <span>
104   - <img width="3%" src="passed.png"/>
105   - <a href="#" class="method navigator-link" panel-name="suite-bpms自动化测试" title="com.essa.testSuite.Test_Login" hash-for-method="login(admin, essa123)">login(admin, essa123)</a> <!-- method navigator-link -->
106   - </span>
107   - <br/>
108   - <span>
109   - <img width="3%" src="passed.png"/>
110   - <a href="#" class="method navigator-link" panel-name="suite-bpms自动化测试" title="com.essa.testSuite.Test_Login" hash-for-method="login(linrong, essa123)">login(linrong, essa123)</a> <!-- method navigator-link -->
111   - </span>
112   - <br/>
113   - </div> <!-- method-list-content passed suite-bpms自动化测试 -->
114   - </li>
115   - </ul>
116   - </div> <!-- suite-section-content -->
117   - </div> <!-- result-section -->
118   - </div> <!-- navigator-suite-content -->
119   - </div> <!-- rounded-window -->
120   - </div> <!-- suite -->
121   - </div> <!-- navigator-root -->
122   - <div class="wrapper">
123   - <div class="main-panel-root">
124   - <div panel-name="suite-bpms自动化测试" class="panel bpms自动化测试">
125   - <div class="suite-bpms自动化测试-class-passed">
126   - <div class="main-panel-header rounded-window-top">
127   - <img src="passed.png"/>
128   - <span class="class-name">com.essa.testSuite.Test_Login</span>
129   - </div> <!-- main-panel-header rounded-window-top -->
130   - <div class="main-panel-content rounded-window-bottom">
131   - <div class="method">
132   - <div class="method-content">
133   - <a name="login(admin, essa123)">
134   - </a> <!-- login(admin, essa123) -->
135   - <span class="method-name">login</span>
136   - <span class="parameters">(admin, essa123)</span>
137   - </div> <!-- method-content -->
138   - </div> <!-- method -->
139   - <div class="method">
140   - <div class="method-content">
141   - <a name="login(linrong, essa123)">
142   - </a> <!-- login(linrong, essa123) -->
143   - <span class="method-name">login</span>
144   - <span class="parameters">(linrong, essa123)</span>
145   - </div> <!-- method-content -->
146   - </div> <!-- method -->
147   - </div> <!-- main-panel-content rounded-window-bottom -->
148   - </div> <!-- suite-bpms自动化测试-class-passed -->
149   - </div> <!-- panel bpms自动化测试 -->
150   - <div panel-name="test-xml-bpms自动化测试" class="panel">
151   - <div class="main-panel-header rounded-window-top">
152   - <span class="header-content">E:\work\essa\suites\testng.xml</span>
153   - </div> <!-- main-panel-header rounded-window-top -->
154   - <div class="main-panel-content rounded-window-bottom">
155   - <pre>
156   -&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
157   -&lt;!DOCTYPE suite SYSTEM &quot;http://testng.org/testng-1.0.dtd&quot;&gt;
158   -&lt;suite guice-stage=&quot;DEVELOPMENT&quot; name=&quot;bpms自动化测试&quot;&gt;
159   - &lt;listeners&gt;
160   - &lt;listener class-name=&quot;com.essa.framework.ListenerSuite&quot;/&gt;
161   - &lt;/listeners&gt;
162   - &lt;test thread-count=&quot;5&quot; name=&quot;login&quot;&gt;
163   - &lt;classes&gt;
164   - &lt;class name=&quot;com.essa.testSuite.Test_Login&quot;/&gt;
165   - &lt;/classes&gt;
166   - &lt;/test&gt; &lt;!-- login --&gt;
167   -&lt;/suite&gt; &lt;!-- bpms自动化测试 --&gt;
168   - </pre>
169   - </div> <!-- main-panel-content rounded-window-bottom -->
170   - </div> <!-- panel -->
171   - <div panel-name="testlist-bpms自动化测试" class="panel">
172   - <div class="main-panel-header rounded-window-top">
173   - <span class="header-content">Tests for bpms自动化测试</span>
174   - </div> <!-- main-panel-header rounded-window-top -->
175   - <div class="main-panel-content rounded-window-bottom">
176   - <ul>
177   - <li>
178   - <span class="test-name">login (1 class)</span>
179   - </li>
180   - </ul>
181   - </div> <!-- main-panel-content rounded-window-bottom -->
182   - </div> <!-- panel -->
183   - <div panel-name="group-bpms自动化测试" class="panel">
184   - <div class="main-panel-header rounded-window-top">
185   - <span class="header-content">Groups for bpms自动化测试</span>
186   - </div> <!-- main-panel-header rounded-window-top -->
187   - <div class="main-panel-content rounded-window-bottom">
188   - </div> <!-- main-panel-content rounded-window-bottom -->
189   - </div> <!-- panel -->
190   - <div panel-name="times-bpms自动化测试" class="panel">
191   - <div class="main-panel-header rounded-window-top">
192   - <span class="header-content">Times for bpms自动化测试</span>
193   - </div> <!-- main-panel-header rounded-window-top -->
194   - <div class="main-panel-content rounded-window-bottom">
195   - <div class="times-div">
196   - <script type="text/javascript">
197   -suiteTableInitFunctions.push('tableData_bpms自动化测试');
198   -function tableData_bpms自动化测试() {
  24 + <div class="top-banner-root">
  25 + <span class="top-banner-title-font">Test results</span>
  26 + <br/>
  27 + <span class="top-banner-font-1">1 suite</span>
  28 + </div> <!-- top-banner-root -->
  29 + <div class="navigator-root">
  30 + <div class="navigator-suite-header">
  31 + <span>All suites</span>
  32 + <a href="#" title="Collapse/expand all the suites" class="collapse-all-link">
  33 + <img src="collapseall.gif" class="collapse-all-icon">
  34 + </img> <!-- collapse-all-icon -->
  35 + </a> <!-- collapse-all-link -->
  36 + </div> <!-- navigator-suite-header -->
  37 + <div class="suite">
  38 + <div class="rounded-window">
  39 + <div class="suite-header light-rounded-window-top">
  40 + <a href="#" panel-name="suite-新增市场商品" class="navigator-link">
  41 + <span class="suite-name border-passed">新增市场商品</span>
  42 + </a> <!-- navigator-link -->
  43 + </div> <!-- suite-header light-rounded-window-top -->
  44 + <div class="navigator-suite-content">
  45 + <div class="suite-section-title">
  46 + <span>Info</span>
  47 + </div> <!-- suite-section-title -->
  48 + <div class="suite-section-content">
  49 + <ul>
  50 + <li>
  51 + <a href="#" panel-name="test-xml-新增市场商品" class="navigator-link ">
  52 + <span>D:\workspace\demo\suites\addMarketGoods.xml</span>
  53 + </a> <!-- navigator-link -->
  54 + </li>
  55 + <li>
  56 + <a href="#" panel-name="testlist-新增市场商品" class="navigator-link ">
  57 + <span class="test-stats">1 test</span>
  58 + </a> <!-- navigator-link -->
  59 + </li>
  60 + <li>
  61 + <a href="#" panel-name="group-新增市场商品" class="navigator-link ">
  62 + <span>0 groups</span>
  63 + </a> <!-- navigator-link -->
  64 + </li>
  65 + <li>
  66 + <a href="#" panel-name="times-新增市场商品" class="navigator-link ">
  67 + <span>Times</span>
  68 + </a> <!-- navigator-link -->
  69 + </li>
  70 + <li>
  71 + <a href="#" panel-name="reporter-新增市场商品" class="navigator-link ">
  72 + <span>Reporter output</span>
  73 + </a> <!-- navigator-link -->
  74 + </li>
  75 + <li>
  76 + <a href="#" panel-name="ignored-methods-新增市场商品" class="navigator-link ">
  77 + <span>Ignored methods</span>
  78 + </a> <!-- navigator-link -->
  79 + </li>
  80 + <li>
  81 + <a href="#" panel-name="chronological-新增市场商品" class="navigator-link ">
  82 + <span>Chronological view</span>
  83 + </a> <!-- navigator-link -->
  84 + </li>
  85 + </ul>
  86 + </div> <!-- suite-section-content -->
  87 + <div class="result-section">
  88 + <div class="suite-section-title">
  89 + <span>Results</span>
  90 + </div> <!-- suite-section-title -->
  91 + <div class="suite-section-content">
  92 + <ul>
  93 + <li>
  94 + <span class="method-stats">3 methods, 3 passed</span>
  95 + </li>
  96 + <li>
  97 + <span class="method-list-title passed">Passed methods</span>
  98 + <span class="show-or-hide-methods passed">
  99 + <a href="#" panel-name="suite-新增市场商品" class="hide-methods passed suite-新增市场商品"> (hide)</a> <!-- hide-methods passed suite-新增市场商品 -->
  100 + <a href="#" panel-name="suite-新增市场商品" class="show-methods passed suite-新增市场商品"> (show)</a> <!-- show-methods passed suite-新增市场商品 -->
  101 + </span>
  102 + <div class="method-list-content passed suite-新增市场商品">
  103 + <span>
  104 + <img src="passed.png" width="3%"/>
  105 + <a href="#" panel-name="suite-新增市场商品" title="com.essa.testSuite.TestAddMarketGoods" class="method navigator-link" hash-for-method="addMarketGoods">addMarketGoods</a> <!-- method navigator-link -->
  106 + </span>
  107 + <br/>
  108 + <span>
  109 + <img src="passed.png" width="3%"/>
  110 + <a href="#" panel-name="suite-新增市场商品" title="com.essa.testSuite.TestAddMarketGoods" class="method navigator-link" hash-for-method="auditMarketGoods">auditMarketGoods</a> <!-- method navigator-link -->
  111 + </span>
  112 + <br/>
  113 + <span>
  114 + <img src="passed.png" width="3%"/>
  115 + <a href="#" panel-name="suite-新增市场商品" title="com.essa.testSuite.TestAddMarketGoods" class="method navigator-link" hash-for-method="toMarketGoodsRelesePage">toMarketGoodsRelesePage</a> <!-- method navigator-link -->
  116 + </span>
  117 + <br/>
  118 + </div> <!-- method-list-content passed suite-新增市场商品 -->
  119 + </li>
  120 + </ul>
  121 + </div> <!-- suite-section-content -->
  122 + </div> <!-- result-section -->
  123 + </div> <!-- navigator-suite-content -->
  124 + </div> <!-- rounded-window -->
  125 + </div> <!-- suite -->
  126 + </div> <!-- navigator-root -->
  127 + <div class="wrapper">
  128 + <div class="main-panel-root">
  129 + <div panel-name="suite-新增市场商品" class="panel 新增市场商品">
  130 + <div class="suite-新增市场商品-class-passed">
  131 + <div class="main-panel-header rounded-window-top">
  132 + <img src="passed.png"/>
  133 + <span class="class-name">com.essa.testSuite.TestAddMarketGoods</span>
  134 + </div> <!-- main-panel-header rounded-window-top -->
  135 + <div class="main-panel-content rounded-window-bottom">
  136 + <div class="method">
  137 + <div class="method-content">
  138 + <a name="addMarketGoods">
  139 + </a> <!-- addMarketGoods -->
  140 + <span class="method-name">addMarketGoods</span>
  141 + </div> <!-- method-content -->
  142 + </div> <!-- method -->
  143 + <div class="method">
  144 + <div class="method-content">
  145 + <a name="auditMarketGoods">
  146 + </a> <!-- auditMarketGoods -->
  147 + <span class="method-name">auditMarketGoods</span>
  148 + </div> <!-- method-content -->
  149 + </div> <!-- method -->
  150 + <div class="method">
  151 + <div class="method-content">
  152 + <a name="toMarketGoodsRelesePage">
  153 + </a> <!-- toMarketGoodsRelesePage -->
  154 + <span class="method-name">toMarketGoodsRelesePage</span>
  155 + </div> <!-- method-content -->
  156 + </div> <!-- method -->
  157 + </div> <!-- main-panel-content rounded-window-bottom -->
  158 + </div> <!-- suite-新增市场商品-class-passed -->
  159 + </div> <!-- panel 新增市场商品 -->
  160 + <div panel-name="test-xml-新增市场商品" class="panel">
  161 + <div class="main-panel-header rounded-window-top">
  162 + <span class="header-content">D:\workspace\demo\suites\addMarketGoods.xml</span>
  163 + </div> <!-- main-panel-header rounded-window-top -->
  164 + <div class="main-panel-content rounded-window-bottom">
  165 + <pre>
  166 +&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
  167 +&lt;!DOCTYPE suite SYSTEM &quot;http://testng.org/testng-1.0.dtd&quot;&gt;
  168 +&lt;suite name=&quot;新增市场商品&quot; guice-stage=&quot;DEVELOPMENT&quot;&gt;
  169 + &lt;test thread-count=&quot;5&quot; name=&quot;addMarketGoods&quot;&gt;
  170 + &lt;classes&gt;
  171 + &lt;class name=&quot;com.essa.testSuite.TestAddMarketGoods&quot;&gt;
  172 + &lt;methods&gt;
  173 + &lt;include name=&quot;toMarketGoodsRelesePage&quot;/&gt;
  174 + &lt;include name=&quot;addMarketGoods&quot;/&gt;
  175 + &lt;include name=&quot;auditMarketGoods&quot;/&gt;
  176 + &lt;/methods&gt;
  177 + &lt;/class&gt; &lt;!-- com.essa.testSuite.TestAddMarketGoods --&gt;
  178 + &lt;/classes&gt;
  179 + &lt;/test&gt; &lt;!-- addMarketGoods --&gt;
  180 +&lt;/suite&gt; &lt;!-- 新增市场商品 --&gt;
  181 + </pre>
  182 + </div> <!-- main-panel-content rounded-window-bottom -->
  183 + </div> <!-- panel -->
  184 + <div panel-name="testlist-新增市场商品" class="panel">
  185 + <div class="main-panel-header rounded-window-top">
  186 + <span class="header-content">Tests for 新增市场商品</span>
  187 + </div> <!-- main-panel-header rounded-window-top -->
  188 + <div class="main-panel-content rounded-window-bottom">
  189 + <ul>
  190 + <li>
  191 + <span class="test-name">addMarketGoods (1 class)</span>
  192 + </li>
  193 + </ul>
  194 + </div> <!-- main-panel-content rounded-window-bottom -->
  195 + </div> <!-- panel -->
  196 + <div panel-name="group-新增市场商品" class="panel">
  197 + <div class="main-panel-header rounded-window-top">
  198 + <span class="header-content">Groups for 新增市场商品</span>
  199 + </div> <!-- main-panel-header rounded-window-top -->
  200 + <div class="main-panel-content rounded-window-bottom">
  201 + </div> <!-- main-panel-content rounded-window-bottom -->
  202 + </div> <!-- panel -->
  203 + <div panel-name="times-新增市场商品" class="panel">
  204 + <div class="main-panel-header rounded-window-top">
  205 + <span class="header-content">Times for 新增市场商品</span>
  206 + </div> <!-- main-panel-header rounded-window-top -->
  207 + <div class="main-panel-content rounded-window-bottom">
  208 + <div class="times-div">
  209 + <script type="text/javascript">
  210 +suiteTableInitFunctions.push('tableData_新增市场商品');
  211 +function tableData_新增市场商品() {
199 212 var data = new google.visualization.DataTable();
200 213 data.addColumn('number', 'Number');
201 214 data.addColumn('string', 'Method');
202 215 data.addColumn('string', 'Class');
203 216 data.addColumn('number', 'Time (ms)');
204   -data.addRows(2);
  217 +data.addRows(3);
205 218 data.setCell(0, 0, 0)
206   -data.setCell(0, 1, 'login')
207   -data.setCell(0, 2, 'com.essa.testSuite.Test_Login')
208   -data.setCell(0, 3, 9690);
  219 +data.setCell(0, 1, 'addMarketGoods')
  220 +data.setCell(0, 2, 'com.essa.testSuite.TestAddMarketGoods')
  221 +data.setCell(0, 3, 37865);
209 222 data.setCell(1, 0, 1)
210   -data.setCell(1, 1, 'login')
211   -data.setCell(1, 2, 'com.essa.testSuite.Test_Login')
212   -data.setCell(1, 3, 9110);
213   -window.suiteTableData['bpms自动化测试']= { tableData: data, tableDiv: 'times-div-bpms自动化测试'}
  223 +data.setCell(1, 1, 'auditMarketGoods')
  224 +data.setCell(1, 2, 'com.essa.testSuite.TestAddMarketGoods')
  225 +data.setCell(1, 3, 16655);
  226 +data.setCell(2, 0, 2)
  227 +data.setCell(2, 1, 'toMarketGoodsRelesePage')
  228 +data.setCell(2, 2, 'com.essa.testSuite.TestAddMarketGoods')
  229 +data.setCell(2, 3, 6275);
  230 +window.suiteTableData['新增市场商品']= { tableData: data, tableDiv: 'times-div-新增市场商品'}
214 231 return data;
215 232 }
216   - </script>
217   - <span class="suite-total-time">Total running time: 18 seconds</span>
218   - <div id="times-div-bpms自动化测试">
219   - </div> <!-- times-div-bpms自动化测试 -->
220   - </div> <!-- times-div -->
221   - </div> <!-- main-panel-content rounded-window-bottom -->
222   - </div> <!-- panel -->
223   - <div panel-name="reporter-bpms自动化测试" class="panel">
224   - <div class="main-panel-header rounded-window-top">
225   - <span class="header-content">Reporter output for bpms自动化测试</span>
226   - </div> <!-- main-panel-header rounded-window-top -->
227   - <div class="main-panel-content rounded-window-bottom">
228   - </div> <!-- main-panel-content rounded-window-bottom -->
229   - </div> <!-- panel -->
230   - <div panel-name="ignored-methods-bpms自动化测试" class="panel">
231   - <div class="main-panel-header rounded-window-top">
232   - <span class="header-content">0 ignored methods</span>
233   - </div> <!-- main-panel-header rounded-window-top -->
234   - <div class="main-panel-content rounded-window-bottom">
235   - </div> <!-- main-panel-content rounded-window-bottom -->
236   - </div> <!-- panel -->
237   - <div panel-name="chronological-bpms自动化测试" class="panel">
238   - <div class="main-panel-header rounded-window-top">
239   - <span class="header-content">Methods in chronological order</span>
240   - </div> <!-- main-panel-header rounded-window-top -->
241   - <div class="main-panel-content rounded-window-bottom">
242   - <div class="chronological-class">
243   - <div class="chronological-class-name">com.essa.testSuite.Test_Login</div> <!-- chronological-class-name -->
244   - <div class="configuration-class before">
245   - <span class="method-name">setUp</span>
246   - <span class="method-start">0 ms</span>
247   - </div> <!-- configuration-class before -->
248   - <div class="test-method">
249   - <span class="method-name">login(admin, essa123)</span>
250   - <span class="method-start">14793 ms</span>
251   - </div> <!-- test-method -->
252   - <div class="test-method">
253   - <span class="method-name">login(linrong, essa123)</span>
254   - <span class="method-start">24487 ms</span>
255   - </div> <!-- test-method -->
256   - <div class="configuration-class after">
257   - <span class="method-name">tearDown</span>
258   - <span class="method-start">33604 ms</span>
259   - </div> <!-- configuration-class after -->
260   - </div> <!-- main-panel-content rounded-window-bottom -->
261   - </div> <!-- panel -->
262   - </div> <!-- main-panel-root -->
263   - </div> <!-- wrapper -->
  233 + </script>
  234 + <span class="suite-total-time">Total running time: 1 minutes</span>
  235 + <div id="times-div-新增市场商品">
  236 + </div> <!-- times-div-新增市场商品 -->
  237 + </div> <!-- times-div -->
  238 + </div> <!-- main-panel-content rounded-window-bottom -->
  239 + </div> <!-- panel -->
  240 + <div panel-name="reporter-新增市场商品" class="panel">
  241 + <div class="main-panel-header rounded-window-top">
  242 + <span class="header-content">Reporter output for 新增市场商品</span>
  243 + </div> <!-- main-panel-header rounded-window-top -->
  244 + <div class="main-panel-content rounded-window-bottom">
  245 + </div> <!-- main-panel-content rounded-window-bottom -->
  246 + </div> <!-- panel -->
  247 + <div panel-name="ignored-methods-新增市场商品" class="panel">
  248 + <div class="main-panel-header rounded-window-top">
  249 + <span class="header-content">0 ignored methods</span>
  250 + </div> <!-- main-panel-header rounded-window-top -->
  251 + <div class="main-panel-content rounded-window-bottom">
  252 + </div> <!-- main-panel-content rounded-window-bottom -->
  253 + </div> <!-- panel -->
  254 + <div panel-name="chronological-新增市场商品" class="panel">
  255 + <div class="main-panel-header rounded-window-top">
  256 + <span class="header-content">Methods in chronological order</span>
  257 + </div> <!-- main-panel-header rounded-window-top -->
  258 + <div class="main-panel-content rounded-window-bottom">
  259 + <div class="chronological-class">
  260 + <div class="chronological-class-name">com.essa.testSuite.TestAddMarketGoods</div> <!-- chronological-class-name -->
  261 + <div class="configuration-class before">
  262 + <span class="method-name">setUp</span>
  263 + <span class="method-start">0 ms</span>
  264 + </div> <!-- configuration-class before -->
  265 + <div class="test-method">
  266 + <span class="method-name">toMarketGoodsRelesePage</span>
  267 + <span class="method-start">9401 ms</span>
  268 + </div> <!-- test-method -->
  269 + <div class="test-method">
  270 + <span class="method-name">addMarketGoods</span>
  271 + <span class="method-start">15678 ms</span>
  272 + </div> <!-- test-method -->
  273 + <div class="test-method">
  274 + <span class="method-name">auditMarketGoods</span>
  275 + <span class="method-start">53544 ms</span>
  276 + </div> <!-- test-method -->
  277 + <div class="configuration-class after">
  278 + <span class="method-name">tearDown</span>
  279 + <span class="method-start">70199 ms</span>
  280 + </div> <!-- configuration-class after -->
  281 + </div> <!-- main-panel-content rounded-window-bottom -->
  282 + </div> <!-- panel -->
  283 + </div> <!-- main-panel-root -->
  284 + </div> <!-- wrapper -->
264 285 </body>
265 286 </html>
... ...
test-output/jquery-1.7.1.min.js
1   -/*! jQuery v1.7.1 jquery.com | jquery.org/license */
2   -(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cv(a){if(!ck[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cl||(cl=c.createElement("iframe"),cl.frameBorder=cl.width=cl.height=0),b.appendChild(cl);if(!cm||!cl.createElement)cm=(cl.contentWindow||cl.contentDocument).document,cm.write((c.compatMode==="CSS1Compat"?"<!doctype html>":"")+"<html><body>"),cm.close();d=cm.createElement(a),cm.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cl)}ck[a]=e}return ck[a]}function cu(a,b){var c={};f.each(cq.concat.apply([],cq.slice(0,b)),function(){c[this]=a});return c}function ct(){cr=b}function cs(){setTimeout(ct,0);return cr=f.now()}function cj(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ci(){try{return new a.XMLHttpRequest}catch(b){}}function cc(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h=="string"&&(e[h.toLowerCase()]=a.converters[h]);l=k,k=d[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=e[m]||e["* "+k];if(!n){p=b;for(o in e){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=e[j[1]+" "+k];if(p){o=e[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&f.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function cb(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function ca(a,b,c,d){if(f.isArray(b))f.each(b,function(b,e){c||bE.test(a)?d(a,e):ca(a+"["+(typeof e=="object"||f.isArray(e)?b:"")+"]",e,c,d)});else if(!c&&b!=null&&typeof b=="object")for(var e in b)ca(a+"["+e+"]",b[e],c,d);else d(a,b)}function b_(a,c){var d,e,g=f.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((g[d]?a:e||(e={}))[d]=c[d]);e&&f.extend(!0,a,e)}function b$(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bT,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l=="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=b$(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=b$(a,c,d,e,"*",g));return l}function bZ(a){return function(b,c){typeof b!="string"&&(c=b,b="*");if(f.isFunction(c)){var d=b.toLowerCase().split(bP),e=0,g=d.length,h,i,j;for(;e<g;e++)h=d[e],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bC(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=b==="width"?bx:by,g=0,h=e.length;if(d>0){if(c!=="border")for(;g<h;g++)c||(d-=parseFloat(f.css(a,"padding"+e[g]))||0),c==="margin"?d+=parseFloat(f.css(a,c+e[g]))||0:d-=parseFloat(f.css(a,"border"+e[g]+"Width"))||0;return d+"px"}d=bz(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0;if(c)for(;g<h;g++)d+=parseFloat(f.css(a,"padding"+e[g]))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+e[g]+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+e[g]))||0);return d+"px"}function bp(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bf,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bo(a){var b=c.createElement("div");bh.appendChild(b),b.innerHTML=a.outerHTML;return b.firstChild}function bn(a){var b=(a.nodeName||"").toLowerCase();b==="input"?bm(a):b!=="script"&&typeof a.getElementsByTagName!="undefined"&&f.grep(a.getElementsByTagName("input"),bm)}function bm(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bl(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bk(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bj(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c,d,e,g=f._data(a),h=f._data(b,g),i=g.events;if(i){delete h.handle,h.events={};for(c in i)for(d=0,e=i[c].length;d<e;d++)f.event.add(b,c+(i[c][d].namespace?".":"")+i[c][d].namespace,i[c][d],i[c][d].data)}h.data&&(h.data=f.extend({},h.data))}}function bi(a,b){return f.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function U(a){var b=V.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function T(a,b,c){b=b||0;if(f.isFunction(b))return f.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return f.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=f.grep(a,function(a){return a.nodeType===1});if(O.test(b))return f.filter(b,d,!c);b=f.filter(b,d)}return f.grep(a,function(a,d){return f.inArray(a,b)>=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c<d;c++)b[a[c]]=!0;return b}var c=a.document,d=a.navigator,e=a.location,f=function(){function J(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(J,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){d=i[c],f=a[c];if(i===f)continue;l&&f&&(e.isPlainObject(f)||(g=e.isArray(f)))?(g?(g=!1,h=d&&e.isArray(d)?d:[]):h=d&&e.isPlainObject(d)?d:{},i[c]=e.extend(l,h,f)):f!==b&&(i[c]=f)}return i},e.extend({noConflict:function(b){a.$===e&&(a.$=g),b&&a.jQuery===e&&(a.jQuery=f);return e},isReady:!1,readyWait:1,holdReady:function(a){a?e.readyWait++:e.ready(!0)},ready:function(a){if(a===!0&&!--e.readyWait||a!==!0&&!e.isReady){if(!c.body)return setTimeout(e.ready,1);e.isReady=!0;if(a!==!0&&--e.readyWait>0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g<h;)if(c.apply(a[g++],d)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(;g<h;)if(c.call(a[g],g,a[g++])===!1)break;return a},trim:G?function(a){return a==null?"":G.call(a)}:function(a){return a==null?"":(a+"").replace(k,"").replace(l,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var d=e.type(a);a.length==null||d==="string"||d==="function"||d==="regexp"||e.isWindow(a)?E.call(c,a):e.merge(c,a)}return c},inArray:function(a,b,c){var d;if(b){if(H)return H.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length=="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,c,d){var f,g,h=[],i=0,j=a.length,k=a instanceof e||j!==b&&typeof j=="number"&&(j>0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i<j;i++)f=c(a[i],i,d),f!=null&&(h[h.length]=f);else for(g in a)f=c(a[g],g,d),f!=null&&(h[h.length]=f);return h.concat.apply([],h)},guid:1,proxy:function(a,c){if(typeof c=="string"){var d=a[c];c=a,a=d}if(!e.isFunction(a))return b;var f=F.call(arguments,2),g=function(){return a.apply(c,f.concat(F.call(arguments)))};g.guid=a.guid=a.guid||g.guid||e.guid++;return g},access:function(a,c,d,f,g,h){var i=a.length;if(typeof c=="object"){for(var j in c)e.access(a,j,c[j],f,g,d);return a}if(d!==b){f=!h&&f&&e.isFunction(d);for(var k=0;k<i;k++)g(a[k],c,f?d.call(a[k],k,g(a[k],c)):d,h);return a}return i?g(a[0],c):b},now:function(){return(new Date).getTime()},uaMatch:function(a){a=a.toLowerCase();var b=r.exec(a)||s.exec(a)||t.exec(a)||a.indexOf("compatible")<0&&u.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}e.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,f){f&&f instanceof e&&!(f instanceof a)&&(f=a(f));return e.fn.init.call(this,d,f,b)},a.fn.init.prototype=a.fn;var b=a(c);return a},browser:{}}),e.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){I["[object "+b+"]"]=b.toLowerCase()}),z=e.uaMatch(y),z.browser&&(e.browser[z.browser]=!0,e.browser.version=z.version),e.browser.webkit&&(e.browser.safari=!0),j.test(" ")&&(k=/^[\s\xA0]+/,l=/[\s\xA0]+$/),h=e(c),c.addEventListener?B=function(){c.removeEventListener("DOMContentLoaded",B,!1),e.ready()}:c.attachEvent&&(B=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",B),e.ready())});return e}(),g={};f.Callbacks=function(a){a=a?g[a]||h(a):{};var c=[],d=[],e,i,j,k,l,m=function(b){var d,e,g,h,i;for(d=0,e=b.length;d<e;d++)g=b[d],h=f.type(g),h==="array"?m(g):h==="function"&&(!a.unique||!o.has(g))&&c.push(g)},n=function(b,f){f=f||[],e=!a.memory||[b,f],i=!0,l=j||0,j=0,k=c.length;for(;c&&l<k;l++)if(c[l].apply(b,f)===!1&&a.stopOnFalse){e=!0;break}i=!1,c&&(a.once?e===!0?o.disable():c=[]:d&&d.length&&(e=d.shift(),o.fireWith(e[0],e[1])))},o={add:function(){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(e[0],e[1]))}return this},remove:function(){if(c){var b=arguments,d=0,e=b.length;for(;d<e;d++)for(var f=0;f<c.length;f++)if(b[d]===c[f]){i&&f<=k&&(k--,f<=l&&l--),c.splice(f--,1);if(a.unique)break}}return this},has:function(a){if(c){var b=0,d=c.length;for(;b<d;b++)if(a===c[b])return!0}return!1},empty:function(){c=[];return this},disable:function(){c=d=e=b;return this},disabled:function(){return!c},lock:function(){d=b,(!e||e===!0)&&o.disable();return this},locked:function(){return!d},fireWith:function(b,c){d&&(i?a.once||d.push([b,c]):(!a.once||!e)&&n(b,c));return this},fire:function(){o.fireWith(this,arguments);return this},fired:function(){return!!e}};return o};var i=[].slice;f.extend({Deferred:function(a){var b=f.Callbacks("once memory"),c=f.Callbacks("once memory"),d=f.Callbacks("memory"),e="pending",g={resolve:b,reject:c,notify:d},h={done:b.add,fail:c.add,progress:d.add,state:function(){return e},isResolved:b.fired,isRejected:c.fired,then:function(a,b,c){i.done(a).fail(b).progress(c);return this},always:function(){i.done.apply(i,arguments).fail.apply(i,arguments);return this},pipe:function(a,b,c){return f.Deferred(function(d){f.each({done:[a,"resolve"],fail:[b,"reject"],progress:[c,"notify"]},function(a,b){var c=b[0],e=b[1],g;f.isFunction(c)?i[a](function(){g=c.apply(this,arguments),g&&f.isFunction(g.promise)?g.promise().then(d.resolve,d.reject,d.notify):d[e+"With"](this===i?d:this,[g])}):i[a](d[e])})}).promise()},promise:function(a){if(a==null)a=h;else for(var b in h)a[b]=h[b];return a}},i=h.promise({}),j;for(j in g)i[j]=g[j].fire,i[j+"With"]=g[j].fireWith;i.done(function(){e="resolved"},c.disable,d.lock).fail(function(){e="rejected"},b.disable,d.lock),a&&a.call(i,i);return i},when:function(a){function m(a){return function(b){e[a]=arguments.length>1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c<d;c++)b[c]&&b[c].promise&&f.isFunction(b[c].promise)?b[c].promise().then(l(c),j.reject,m(c)):--g;g||j.resolveWith(j,b)}else j!==a&&j.resolveWith(j,d?[a]:[]);return k}}),f.support=function(){var b,d,e,g,h,i,j,k,l,m,n,o,p,q=c.createElement("div"),r=c.documentElement;q.setAttribute("className","t"),q.innerHTML=" <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>",d=q.getElementsByTagName("*"),e=q.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=q.getElementsByTagName("input")[0],b={leadingWhitespace:q.firstChild.nodeType===3,tbody:!q.getElementsByTagName("tbody").length,htmlSerialize:!!q.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:q.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete q.test}catch(s){b.deleteExpando=!1}!q.addEventListener&&q.attachEvent&&q.fireEvent&&(q.attachEvent("onclick",function(){b.noCloneEvent=!1}),q.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),q.appendChild(i),k=c.createDocumentFragment(),k.appendChild(q.lastChild),b.checkClone=k.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,k.removeChild(i),k.appendChild(q),q.innerHTML="",a.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",q.style.width="2px",q.appendChild(j),b.reliableMarginRight=(parseInt((a.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(q.attachEvent)for(o in{submit:1,change:1,focusin:1})n="on"+o,p=n in q,p||(q.setAttribute(n,"return;"),p=typeof q[n]=="function"),b[o+"Bubbles"]=p;k.removeChild(q),k=g=h=j=q=i=null,f(function(){var a,d,e,g,h,i,j,k,m,n,o,r=c.getElementsByTagName("body")[0];!r||(j=1,k="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",m="visibility:hidden;border:0;",n="style='"+k+"border:5px solid #000;padding:0;'",o="<div "+n+"><div></div></div>"+"<table "+n+" cellpadding='0' cellspacing='0'>"+"<tr><td></td></tr></table>",a=c.createElement("div"),a.style.cssText=m+"width:0;height:0;position:static;top:0;margin-top:"+j+"px",r.insertBefore(a,r.firstChild),q=c.createElement("div"),a.appendChild(q),q.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>",l=q.getElementsByTagName("td"),p=l[0].offsetHeight===0,l[0].style.display="",l[1].style.display="none",b.reliableHiddenOffsets=p&&l[0].offsetHeight===0,q.innerHTML="",q.style.width=q.style.paddingLeft="1px",f.boxModel=b.boxModel=q.offsetWidth===2,typeof q.style.zoom!="undefined"&&(q.style.display="inline",q.style.zoom=1,b.inlineBlockNeedsLayout=q.offsetWidth===2,q.style.display="",q.innerHTML="<div style='width:4px;'></div>",b.shrinkWrapBlocks=q.offsetWidth!==2),q.style.cssText=k+m,q.innerHTML=o,d=q.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,i={doesNotAddBorder:e.offsetTop!==5,doesAddBorderForTableAndCells:h.offsetTop===5},e.style.position="fixed",e.style.top="20px",i.fixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",i.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,i.doesNotIncludeMarginInBodyOffset=r.offsetTop!==j,r.removeChild(a),q=a=null,f.extend(b,i))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e<g;e++)delete d[b[e]];if(!(c?m:f.isEmptyObject)(d))return}}if(!c){delete j[k].data;if(!m(j[k]))return}f.support.deleteExpando||!j.setInterval?delete j[k]:j[k]=null,i&&(f.support.deleteExpando?delete a[h]:a.removeAttribute?a.removeAttribute(h):a[h]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d,e,g,h=null;if(typeof a=="undefined"){if(this.length){h=f.data(this[0]);if(this[0].nodeType===1&&!f._data(this[0],"parsedAttrs")){e=this[0].attributes;for(var i=0,j=e.length;i<j;i++)g=e[i].name,g.indexOf("data-")===0&&(g=f.camelCase(g.substring(5)),l(this[0],g,h[g]));f._data(this[0],"parsedAttrs",!0)}}return h}if(typeof a=="object")return this.each(function(){f.data(this,a)});d=a.split("."),d[1]=d[1]?"."+d[1]:"";if(c===b){h=this.triggerHandler("getData"+d[1]+"!",[d[0]]),h===b&&this.length&&(h=f.data(this[0],a),h=l(this[0],a,h));return h===b&&d[1]?this.data(d[0]):h}return this.each(function(){var b=f(this),e=[d[0],c];b.triggerHandler("setData"+d[1]+"!",e),f.data(this,a,c),b.triggerHandler("changeData"+d[1]+"!",e)})},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,b){a&&(b=(b||"fx")+"mark",f._data(a,b,(f._data(a,b)||0)+1))},_unmark:function(a,b,c){a!==!0&&(c=b,b=a,a=!1);if(b){c=c||"fx";var d=c+"mark",e=a?0:(f._data(b,d)||1)-1;e?f._data(b,d,e):(f.removeData(b,d,!0),n(b,c,"mark"))}},queue:function(a,b,c){var d;if(a){b=(b||"fx")+"queue",d=f._data(a,b),c&&(!d||f.isArray(c)?d=f._data(a,b,f.makeArray(c)):d.push(c));return d||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e={};d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),f._data(a,b+".run",e),d.call(a,function(){f.dequeue(a,b)},e)),c.length||(f.removeData(a,b+"queue "+b+".run",!0),n(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){typeof a!="string"&&(c=a,a="fx");if(c===b)return f.queue(this[0],a);return this.each(function(){var b=f.queue(this,a,c);a==="fx"&&b[0]!=="inprogress"&&f.dequeue(this,a)})},dequeue:function(a){return this.each(function(){f.dequeue(this,a)})},delay:function(a,b){a=f.fx?f.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){function m(){--h||d.resolveWith(e,[e])}typeof a!="string"&&(c=a,a=b),a=a||"fx";var d=f.Deferred(),e=this,g=e.length,h=1,i=a+"defer",j=a+"queue",k=a+"mark",l;while(g--)if(l=f.data(e[g],i,b,!0)||(f.data(e[g],j,b,!0)||f.data(e[g],k,b,!0))&&f.data(e[g],i,f.Callbacks("once memory"),!0))h++,l.add(m);m();return d.promise()}});var o=/[\n\t\r]/g,p=/\s+/,q=/\r/g,r=/^(?:button|input)$/i,s=/^(?:button|input|object|select|textarea)$/i,t=/^a(?:rea)?$/i,u=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,v=f.support.getSetAttribute,w,x,y;f.fn.extend({attr:function(a,b){return f.access(this,a,b,!0,f.attr)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,a,b,!0,f.prop)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(p);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{g=" "+e.className+" ";for(h=0,i=b.length;h<i;h++)~g.indexOf(" "+b[h]+" ")||(g+=b[h]+" ");e.className=f.trim(g)}}}return this},removeClass:function(a){var c,d,e,g,h,i,j;if(f.isFunction(a))return this.each(function(b){f(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(p);for(d=0,e=this.length;d<e;d++){g=this[d];if(g.nodeType===1&&g.className)if(a){h=(" "+g.className+" ").replace(o," ");for(i=0,j=c.length;i<j;i++)h=h.replace(" "+c[i]+" "," ");g.className=f.trim(h)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";if(f.isFunction(a))return this.each(function(c){f(this).toggleClass(a.call(this,c,this.className,b),b)});return this.each(function(){if(c==="string"){var e,g=0,h=f(this),i=b,j=a.split(p);while(e=j[g++])i=d?i:!h.hasClass(e),h[i?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&f._data(this,"__className__",this.className),this.className=this.className||a===!1?"":f._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(o," ").indexOf(b)>-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c<d;c++){e=i[c];if(e.selected&&(f.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!f.nodeName(e.parentNode,"optgroup"))){b=f(e).val();if(j)return b;h.push(b)}}if(j&&!h.length&&i.length)return f(i[g]).val();return h},set:function(a,b){var c=f.makeArray(b);f(a).find("option").each(function(){this.selected=f.inArray(f(this).val(),c)>=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;h<g;h++)e=d[h],e&&(c=f.propFix[e]||e,f.attr(a,e,""),a.removeAttribute(v?e:c),u.test(e)&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(r.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},value:{get:function(a,b){if(w&&f.nodeName(a,"button"))return w.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(w&&f.nodeName(a,"button"))return w.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,g,h,i=a.nodeType;if(!!a&&i!==3&&i!==8&&i!==2){h=i!==1||!f.isXMLDoc(a),h&&(c=f.propFix[c]||c,g=f.propHooks[c]);return d!==b?g&&"set"in g&&(e=g.set(a,d,c))!==b?e:a[c]=d:g&&"get"in g&&(e=g.get(a,c))!==null?e:a[c]}},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):s.test(a.nodeName)||t.test(a.nodeName)&&a.href?0:b}}}}),f.attrHooks.tabindex=f.propHooks.tabIndex,x={get:function(a,c){var d,e=f.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},v||(y={name:!0,id:!0},w=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&(y[c]?d.nodeValue!=="":d.specified)?d.nodeValue:b},set:function(a,b,d){var e=a.getAttributeNode(d);e||(e=c.createAttribute(d),a.setAttributeNode(e));return e.nodeValue=b+""}},f.attrHooks.tabindex.set=w.set,f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})}),f.attrHooks.contenteditable={get:w.get,set:function(a,b,c){b===""&&(b="false"),w.set(a,b,c)}}),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex);return null}})),f.support.enctype||(f.propFix.enctype="encoding"),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/\bhover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function(a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")};
3   -f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k<c.length;k++){l=A.exec(c[k])||[],m=l[1],n=(l[2]||"").split(".").sort(),s=f.event.special[m]||{},m=(g?s.delegateType:s.bindType)||m,s=f.event.special[m]||{},o=f.extend({type:m,origType:l[1],data:e,handler:d,guid:d.guid,selector:g,quick:G(g),namespace:n.join(".")},p),r=j[m];if(!r){r=j[m]=[],r.delegateCount=0;if(!s.setup||s.setup.call(a,e,n,i)===!1)a.addEventListener?a.addEventListener(m,i,!1):a.attachEvent&&a.attachEvent("on"+m,i)}s.add&&(s.add.call(a,o),o.handler.guid||(o.handler.guid=d.guid)),g?r.splice(r.delegateCount++,0,o):r.push(o),f.event.global[m]=!0}a=null}},global:{},remove:function(a,b,c,d,e){var g=f.hasData(a)&&f._data(a),h,i,j,k,l,m,n,o,p,q,r,s;if(!!g&&!!(o=g.events)){b=f.trim(I(b||"")).split(" ");for(h=0;h<b.length;h++){i=A.exec(b[h])||[],j=k=i[1],l=i[2];if(!j){for(j in o)f.event.remove(a,j+b[h],c,d,!0);continue}p=f.event.special[j]||{},j=(d?p.delegateType:p.bindType)||j,r=o[j]||[],m=r.length,l=l?new RegExp("(^|\\.)"+l.split(".").sort().join("\\.(?:.*\\.)?")+"(\\.|$)"):null;for(n=0;n<r.length;n++)s=r[n],(e||k===s.origType)&&(!c||c.guid===s.guid)&&(!l||l.test(s.namespace))&&(!d||d===s.selector||d==="**"&&s.selector)&&(r.splice(n--,1),s.selector&&r.delegateCount--,p.remove&&p.remove.call(a,s));r.length===0&&m!==r.length&&((!p.teardown||p.teardown.call(a,l)===!1)&&f.removeEvent(a,j,g.handle),delete o[j])}f.isEmptyObject(o)&&(q=g.handle,q&&(q.elem=null),f.removeData(a,["events","handle"],!0))}},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,e,g){if(!e||e.nodeType!==3&&e.nodeType!==8){var h=c.type||c,i=[],j,k,l,m,n,o,p,q,r,s;if(E.test(h+f.event.triggered))return;h.indexOf("!")>=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;l<r.length&&!c.isPropagationStopped();l++)m=r[l][0],c.type=r[l][1],q=(f._data(m,"events")||{})[c.type]&&f._data(m,"handle"),q&&q.apply(m,d),q=o&&m[o],q&&f.acceptData(m)&&q.apply(m,d)===!1&&c.preventDefault();c.type=h,!g&&!c.isDefaultPrevented()&&(!p._default||p._default.apply(e.ownerDocument,d)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)&&o&&e[h]&&(h!=="focus"&&h!=="blur"||c.target.offsetWidth!==0)&&!f.isWindow(e)&&(n=e[o],n&&(e[o]=null),f.event.triggered=h,e[h](),f.event.triggered=b,n&&(e[o]=n));return c.result}},dispatch:function(c){c=f.event.fix(c||a.event);var d=(f._data(this,"events")||{})[c.type]||[],e=d.delegateCount,g=[].slice.call(arguments,0),h=!c.exclusive&&!c.namespace,i=[],j,k,l,m,n,o,p,q,r,s,t;g[0]=c,c.delegateTarget=this;if(e&&!c.target.disabled&&(!c.button||c.type!=="click")){m=f(this),m.context=this.ownerDocument||this;for(l=c.target;l!=this;l=l.parentNode||this){o={},q=[],m[0]=l;for(j=0;j<e;j++)r=d[j],s=r.selector,o[s]===b&&(o[s]=r.quick?H(l,r.quick):m.is(s)),o[s]&&q.push(r);q.length&&i.push({elem:l,matches:q})}}d.length>e&&i.push({elem:this,matches:d.slice(e)});for(j=0;j<i.length&&!c.isPropagationStopped();j++){p=i[j],c.currentTarget=p.elem;for(k=0;k<p.matches.length&&!c.isImmediatePropagationStopped();k++){r=p.matches[k];if(h||!c.namespace&&!r.namespace||c.namespace_re&&c.namespace_re.test(r.namespace))c.data=r.data,c.handleObj=r,n=((f.event.special[r.origType]||{}).handle||r.handler).apply(p.elem,g),n!==b&&(c.result=n,n===!1&&(c.preventDefault(),c.stopPropagation()))}}return c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode);return a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,d){var e,f,g,h=d.button,i=d.fromElement;a.pageX==null&&d.clientX!=null&&(e=a.target.ownerDocument||c,f=e.documentElement,g=e.body,a.pageX=d.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=d.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?d.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0);return a}},fix:function(a){if(a[f.expando])return a;var d,e,g=a,h=f.event.fixHooks[a.type]||{},i=h.props?this.props.concat(h.props):this.props;a=f.Event(g);for(d=i.length;d;)e=i[--d],a[e]=g[e];a.target||(a.target=g.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey===b&&(a.metaKey=a.ctrlKey);return h.filter?h.filter(a,g):a},special:{ready:{setup:f.bindReady},load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){f.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=f.extend(new f.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?f.event.trigger(e,null,b):f.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},f.event.handle=f.event.dispatch,f.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},f.Event=function(a,b){if(!(this instanceof f.Event))return new f.Event(a,b);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?K:J):this.type=a,b&&f.extend(this,b),this.timeStamp=a&&a.timeStamp||f.now(),this[f.expando]=!0},f.Event.prototype={preventDefault:function(){this.isDefaultPrevented=K;var a=this.originalEvent;!a||(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=K;var a=this.originalEvent;!a||(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=K,this.stopPropagation()},isDefaultPrevented:J,isPropagationStopped:J,isImmediatePropagationStopped:J},f.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){f.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c=this,d=a.relatedTarget,e=a.handleObj,g=e.selector,h;if(!d||d!==c&&!f.contains(c,d))a.type=e.origType,h=e.handler.apply(this,arguments),a.type=b;return h}}}),f.support.submitBubbles||(f.event.special.submit={setup:function(){if(f.nodeName(this,"form"))return!1;f.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=f.nodeName(c,"input")||f.nodeName(c,"button")?c.form:b;d&&!d._submit_attached&&(f.event.add(d,"submit._submit",function(a){this.parentNode&&!a.isTrigger&&f.event.simulate("submit",this.parentNode,a,!0)}),d._submit_attached=!0)})},teardown:function(){if(f.nodeName(this,"form"))return!1;f.event.remove(this,"._submit")}}),f.support.changeBubbles||(f.event.special.change={setup:function(){if(z.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")f.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),f.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1,f.event.simulate("change",this,a,!0))});return!1}f.event.add(this,"beforeactivate._change",function(a){var b=a.target;z.test(b.nodeName)&&!b._change_attached&&(f.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&f.event.simulate("change",this.parentNode,a,!0)}),b._change_attached=!0)})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){f.event.remove(this,"._change");return z.test(this.nodeName)}}),f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){var d=0,e=function(a){f.event.simulate(b,a.target,f.event.fix(a),!0)};f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.fn.extend({on:function(a,c,d,e,g){var h,i;if(typeof a=="object"){typeof c!="string"&&(d=c,c=b);for(i in a)this.on(i,c,d,a[i],g);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=J;else if(!e)return this;g===1&&(h=e,e=function(a){f().off(a);return h.apply(this,arguments)},e.guid=h.guid||(h.guid=f.guid++));return this.each(function(){f.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on.call(this,a,b,c,d,1)},off:function(a,c,d){if(a&&a.preventDefault&&a.handleObj){var e=a.handleObj;f(a.delegateTarget).off(e.namespace?e.type+"."+e.namespace:e.type,e.selector,e.handler);return this}if(typeof a=="object"){for(var g in a)this.off(g,c,a[g]);return this}if(c===!1||typeof c=="function")d=c,c=b;d===!1&&(d=J);return this.each(function(){f.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){f(this.context).on(a,this.selector,b,c);return this},die:function(a,b){f(this.context).off(a,this.selector||"**",b);return this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length==1?this.off(a,"**"):this.off(b,a,c)},trigger:function(a,b){return this.each(function(){f.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return f.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||f.guid++,d=0,e=function(c){var e=(f._data(this,"lastToggle"+a.guid)||0)%d;f._data(this,"lastToggle"+a.guid,e+1),c.preventDefault();return b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),f.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){f.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}if(j.nodeType===1){g||(j[d]=c,j.sizset=h);if(typeof b!="string"){if(j===b){k=!0;break}}else if(m.filter(b,[j]).length>0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}j.nodeType===1&&!g&&(j[d]=c,j.sizset=h);if(j.nodeName.toLowerCase()===b){k=j;break}j=j[a]}e[h]=k}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},m.matches=function(a,b){return m(a,null,null,b)},m.matchesSelector=function(a,b){return m(b,null,null,[a]).length>0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e<f;e++){h=o.order[e];if(g=o.leftMatch[h].exec(a)){i=g[1],g.splice(1,1);if(i.substr(i.length-1)!=="\\"){g[1]=(g[1]||"").replace(j,""),d=o.find[h](g,b,c);if(d!=null){a=a.replace(o.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},m.filter=function(a,c,d,e){var f,g,h,i,j,k,l,n,p,q=a,r=[],s=c,t=c&&c[0]&&m.isXML(c[0]);while(a&&c.length){for(h in o.filter)if((f=o.leftMatch[h].exec(a))!=null&&f[2]){k=o.filter[h],l=f[1],g=!1,f.splice(1,1);if(l.substr(l.length-1)==="\\")continue;s===r&&(r=[]);if(o.preFilter[h]){f=o.preFilter[h](f,s,d,r,e,t);if(!f)g=i=!0;else if(f===!0)continue}if(f)for(n=0;(j=s[n])!=null;n++)j&&(i=k(j,f,n,s),p=e^i,d&&i!=null?p?g=!0:s[n]=!1:p&&(r.push(j),g=!0));if(i!==b){d||(s=r),a=a.replace(o.match[h],"");if(!g)return[];break}}if(a===q)if(g==null)m.error(a);else break;q=a}return s},m.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)};var n=m.getText=function(a){var b,c,d=a.nodeType,e="";if(d){if(d===1||d===9){if(typeof a.textContent=="string")return a.textContent;if(typeof a.innerText=="string")return a.innerText.replace(k,"");for(a=a.firstChild;a;a=a.nextSibling)e+=n(a)}else if(d===3||d===4)return a.nodeValue}else for(b=0;c=a[b];b++)c.nodeType!==8&&(e+=n(c));return e},o=m.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b=="string",d=c&&!l.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&m.filter(b,a,!0)},">":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&m.filter(b,a,!0)}},"":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("parentNode",b,f,a,d,c)},"~":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("previousSibling",b,f,a,d,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(j,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}m.error(e)},CHILD:function(a,b){var c,e,f,g,h,i,j,k=b[1],l=a;switch(k){case"only":case"first":while(l=l.previousSibling)if(l.nodeType===1)return!1;if(k==="first")return!0;l=a;case"last":while(l=l.nextSibling)if(l.nodeType===1)return!1;return!0;case"nth":c=b[2],e=b[3];if(c===1&&e===0)return!0;f=b[0],g=a.parentNode;if(g&&(g[d]!==f||!a.nodeIndex)){i=0;for(l=g.firstChild;l;l=l.nextSibling)l.nodeType===1&&(l.nodeIndex=++i);g[d]=f}j=a.nodeIndex-e;return c===0?j===0:j%c===0&&j/c>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c<e;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var u,v;c.documentElement.compareDocumentPosition?u=function(a,b){if(a===b){h=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(u=function(a,b){if(a===b){h=!0;return 0}if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,i=b.parentNode,j=g;if(g===i)return v(a,b);if(!g)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return v(e[k],f[k]);return k===c?v(a,f[k],-1):v(e[k],b,1)},v=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h<i;h++)m(a,g[h],e,c);return m.filter(f,e)};m.attr=f.attr,m.selectors.attrMap={},f.find=m,f.expr=m.selectors,f.expr[":"]=f.expr.filters,f.unique=m.uniqueSort,f.text=m.getText,f.isXMLDoc=m.isXML,f.contains=m.contains}();var L=/Until$/,M=/^(?:parents|prevUntil|prevAll)/,N=/,/,O=/^.[^:#\[\.,]*$/,P=Array.prototype.slice,Q=f.expr.match.POS,R={children:!0,contents:!0,next:!0,prev:!0};f.fn.extend({find:function(a){var b=this,c,d;if(typeof a!="string")return f(a).filter(function(){for(c=0,d=b.length;c<d;c++)if(f.contains(b[c],this))return!0});var e=this.pushStack("","find",a),g,h,i;for(c=0,d=this.length;c<d;c++){g=e.length,f.find(a,this[c],e);if(c>0)for(h=g;h<e.length;h++)for(i=0;i<g;i++)if(e[i]===e[h]){e.splice(h--,1);break}}return e},has:function(a){var b=f(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(f.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(T(this,a,!1),"not",a)},filter:function(a){return this.pushStack(T(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?Q.test(a)?f(a,this.context).index(this[0])>=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d<a.length;d++)f(g).is(a[d])&&c.push({selector:a[d],elem:g,level:h});g=g.parentNode,h++}return c}var i=Q.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d<e;d++){g=this[d];while(g){if(i?i.index(g)>-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/<tbody/i,_=/<|&#?\w+;/,ba=/<(?:script|style)/i,bb=/<(?:script|object|embed|option|style)/i,bc=new RegExp("<(?:"+V+")","i"),bd=/checked\s*(?:[^=]|=\s*.checked.)/i,be=/\/(java|ecma)script/i,bf=/^\s*<!(?:\[CDATA\[|\-\-)/,bg={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div<div>","</div>"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f.clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function()
  1 +/*! jQuery v1.7.1 jquery.com | jquery.org/license */
  2 +(function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cv(a){if(!ck[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cl||(cl=c.createElement("iframe"),cl.frameBorder=cl.width=cl.height=0),b.appendChild(cl);if(!cm||!cl.createElement)cm=(cl.contentWindow||cl.contentDocument).document,cm.write((c.compatMode==="CSS1Compat"?"<!doctype html>":"")+"<html><body>"),cm.close();d=cm.createElement(a),cm.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cl)}ck[a]=e}return ck[a]}function cu(a,b){var c={};f.each(cq.concat.apply([],cq.slice(0,b)),function(){c[this]=a});return c}function ct(){cr=b}function cs(){setTimeout(ct,0);return cr=f.now()}function cj(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ci(){try{return new a.XMLHttpRequest}catch(b){}}function cc(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h=="string"&&(e[h.toLowerCase()]=a.converters[h]);l=k,k=d[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=e[m]||e["* "+k];if(!n){p=b;for(o in e){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=e[j[1]+" "+k];if(p){o=e[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&f.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function cb(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function ca(a,b,c,d){if(f.isArray(b))f.each(b,function(b,e){c||bE.test(a)?d(a,e):ca(a+"["+(typeof e=="object"||f.isArray(e)?b:"")+"]",e,c,d)});else if(!c&&b!=null&&typeof b=="object")for(var e in b)ca(a+"["+e+"]",b[e],c,d);else d(a,b)}function b_(a,c){var d,e,g=f.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((g[d]?a:e||(e={}))[d]=c[d]);e&&f.extend(!0,a,e)}function b$(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bT,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l=="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=b$(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=b$(a,c,d,e,"*",g));return l}function bZ(a){return function(b,c){typeof b!="string"&&(c=b,b="*");if(f.isFunction(c)){var d=b.toLowerCase().split(bP),e=0,g=d.length,h,i,j;for(;e<g;e++)h=d[e],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bC(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=b==="width"?bx:by,g=0,h=e.length;if(d>0){if(c!=="border")for(;g<h;g++)c||(d-=parseFloat(f.css(a,"padding"+e[g]))||0),c==="margin"?d+=parseFloat(f.css(a,c+e[g]))||0:d-=parseFloat(f.css(a,"border"+e[g]+"Width"))||0;return d+"px"}d=bz(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0;if(c)for(;g<h;g++)d+=parseFloat(f.css(a,"padding"+e[g]))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+e[g]+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+e[g]))||0);return d+"px"}function bp(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bf,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bo(a){var b=c.createElement("div");bh.appendChild(b),b.innerHTML=a.outerHTML;return b.firstChild}function bn(a){var b=(a.nodeName||"").toLowerCase();b==="input"?bm(a):b!=="script"&&typeof a.getElementsByTagName!="undefined"&&f.grep(a.getElementsByTagName("input"),bm)}function bm(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bl(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bk(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bj(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c,d,e,g=f._data(a),h=f._data(b,g),i=g.events;if(i){delete h.handle,h.events={};for(c in i)for(d=0,e=i[c].length;d<e;d++)f.event.add(b,c+(i[c][d].namespace?".":"")+i[c][d].namespace,i[c][d],i[c][d].data)}h.data&&(h.data=f.extend({},h.data))}}function bi(a,b){return f.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function U(a){var b=V.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function T(a,b,c){b=b||0;if(f.isFunction(b))return f.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return f.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=f.grep(a,function(a){return a.nodeType===1});if(O.test(b))return f.filter(b,d,!c);b=f.filter(b,d)}return f.grep(a,function(a,d){return f.inArray(a,b)>=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c<d;c++)b[a[c]]=!0;return b}var c=a.document,d=a.navigator,e=a.location,f=function(){function J(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(J,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){d=i[c],f=a[c];if(i===f)continue;l&&f&&(e.isPlainObject(f)||(g=e.isArray(f)))?(g?(g=!1,h=d&&e.isArray(d)?d:[]):h=d&&e.isPlainObject(d)?d:{},i[c]=e.extend(l,h,f)):f!==b&&(i[c]=f)}return i},e.extend({noConflict:function(b){a.$===e&&(a.$=g),b&&a.jQuery===e&&(a.jQuery=f);return e},isReady:!1,readyWait:1,holdReady:function(a){a?e.readyWait++:e.ready(!0)},ready:function(a){if(a===!0&&!--e.readyWait||a!==!0&&!e.isReady){if(!c.body)return setTimeout(e.ready,1);e.isReady=!0;if(a!==!0&&--e.readyWait>0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g<h;)if(c.apply(a[g++],d)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(;g<h;)if(c.call(a[g],g,a[g++])===!1)break;return a},trim:G?function(a){return a==null?"":G.call(a)}:function(a){return a==null?"":(a+"").replace(k,"").replace(l,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var d=e.type(a);a.length==null||d==="string"||d==="function"||d==="regexp"||e.isWindow(a)?E.call(c,a):e.merge(c,a)}return c},inArray:function(a,b,c){var d;if(b){if(H)return H.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length=="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,c,d){var f,g,h=[],i=0,j=a.length,k=a instanceof e||j!==b&&typeof j=="number"&&(j>0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i<j;i++)f=c(a[i],i,d),f!=null&&(h[h.length]=f);else for(g in a)f=c(a[g],g,d),f!=null&&(h[h.length]=f);return h.concat.apply([],h)},guid:1,proxy:function(a,c){if(typeof c=="string"){var d=a[c];c=a,a=d}if(!e.isFunction(a))return b;var f=F.call(arguments,2),g=function(){return a.apply(c,f.concat(F.call(arguments)))};g.guid=a.guid=a.guid||g.guid||e.guid++;return g},access:function(a,c,d,f,g,h){var i=a.length;if(typeof c=="object"){for(var j in c)e.access(a,j,c[j],f,g,d);return a}if(d!==b){f=!h&&f&&e.isFunction(d);for(var k=0;k<i;k++)g(a[k],c,f?d.call(a[k],k,g(a[k],c)):d,h);return a}return i?g(a[0],c):b},now:function(){return(new Date).getTime()},uaMatch:function(a){a=a.toLowerCase();var b=r.exec(a)||s.exec(a)||t.exec(a)||a.indexOf("compatible")<0&&u.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}e.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,f){f&&f instanceof e&&!(f instanceof a)&&(f=a(f));return e.fn.init.call(this,d,f,b)},a.fn.init.prototype=a.fn;var b=a(c);return a},browser:{}}),e.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){I["[object "+b+"]"]=b.toLowerCase()}),z=e.uaMatch(y),z.browser&&(e.browser[z.browser]=!0,e.browser.version=z.version),e.browser.webkit&&(e.browser.safari=!0),j.test(" ")&&(k=/^[\s\xA0]+/,l=/[\s\xA0]+$/),h=e(c),c.addEventListener?B=function(){c.removeEventListener("DOMContentLoaded",B,!1),e.ready()}:c.attachEvent&&(B=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",B),e.ready())});return e}(),g={};f.Callbacks=function(a){a=a?g[a]||h(a):{};var c=[],d=[],e,i,j,k,l,m=function(b){var d,e,g,h,i;for(d=0,e=b.length;d<e;d++)g=b[d],h=f.type(g),h==="array"?m(g):h==="function"&&(!a.unique||!o.has(g))&&c.push(g)},n=function(b,f){f=f||[],e=!a.memory||[b,f],i=!0,l=j||0,j=0,k=c.length;for(;c&&l<k;l++)if(c[l].apply(b,f)===!1&&a.stopOnFalse){e=!0;break}i=!1,c&&(a.once?e===!0?o.disable():c=[]:d&&d.length&&(e=d.shift(),o.fireWith(e[0],e[1])))},o={add:function(){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(e[0],e[1]))}return this},remove:function(){if(c){var b=arguments,d=0,e=b.length;for(;d<e;d++)for(var f=0;f<c.length;f++)if(b[d]===c[f]){i&&f<=k&&(k--,f<=l&&l--),c.splice(f--,1);if(a.unique)break}}return this},has:function(a){if(c){var b=0,d=c.length;for(;b<d;b++)if(a===c[b])return!0}return!1},empty:function(){c=[];return this},disable:function(){c=d=e=b;return this},disabled:function(){return!c},lock:function(){d=b,(!e||e===!0)&&o.disable();return this},locked:function(){return!d},fireWith:function(b,c){d&&(i?a.once||d.push([b,c]):(!a.once||!e)&&n(b,c));return this},fire:function(){o.fireWith(this,arguments);return this},fired:function(){return!!e}};return o};var i=[].slice;f.extend({Deferred:function(a){var b=f.Callbacks("once memory"),c=f.Callbacks("once memory"),d=f.Callbacks("memory"),e="pending",g={resolve:b,reject:c,notify:d},h={done:b.add,fail:c.add,progress:d.add,state:function(){return e},isResolved:b.fired,isRejected:c.fired,then:function(a,b,c){i.done(a).fail(b).progress(c);return this},always:function(){i.done.apply(i,arguments).fail.apply(i,arguments);return this},pipe:function(a,b,c){return f.Deferred(function(d){f.each({done:[a,"resolve"],fail:[b,"reject"],progress:[c,"notify"]},function(a,b){var c=b[0],e=b[1],g;f.isFunction(c)?i[a](function(){g=c.apply(this,arguments),g&&f.isFunction(g.promise)?g.promise().then(d.resolve,d.reject,d.notify):d[e+"With"](this===i?d:this,[g])}):i[a](d[e])})}).promise()},promise:function(a){if(a==null)a=h;else for(var b in h)a[b]=h[b];return a}},i=h.promise({}),j;for(j in g)i[j]=g[j].fire,i[j+"With"]=g[j].fireWith;i.done(function(){e="resolved"},c.disable,d.lock).fail(function(){e="rejected"},b.disable,d.lock),a&&a.call(i,i);return i},when:function(a){function m(a){return function(b){e[a]=arguments.length>1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c<d;c++)b[c]&&b[c].promise&&f.isFunction(b[c].promise)?b[c].promise().then(l(c),j.reject,m(c)):--g;g||j.resolveWith(j,b)}else j!==a&&j.resolveWith(j,d?[a]:[]);return k}}),f.support=function(){var b,d,e,g,h,i,j,k,l,m,n,o,p,q=c.createElement("div"),r=c.documentElement;q.setAttribute("className","t"),q.innerHTML=" <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>",d=q.getElementsByTagName("*"),e=q.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=q.getElementsByTagName("input")[0],b={leadingWhitespace:q.firstChild.nodeType===3,tbody:!q.getElementsByTagName("tbody").length,htmlSerialize:!!q.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:q.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete q.test}catch(s){b.deleteExpando=!1}!q.addEventListener&&q.attachEvent&&q.fireEvent&&(q.attachEvent("onclick",function(){b.noCloneEvent=!1}),q.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),q.appendChild(i),k=c.createDocumentFragment(),k.appendChild(q.lastChild),b.checkClone=k.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,k.removeChild(i),k.appendChild(q),q.innerHTML="",a.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",q.style.width="2px",q.appendChild(j),b.reliableMarginRight=(parseInt((a.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(q.attachEvent)for(o in{submit:1,change:1,focusin:1})n="on"+o,p=n in q,p||(q.setAttribute(n,"return;"),p=typeof q[n]=="function"),b[o+"Bubbles"]=p;k.removeChild(q),k=g=h=j=q=i=null,f(function(){var a,d,e,g,h,i,j,k,m,n,o,r=c.getElementsByTagName("body")[0];!r||(j=1,k="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",m="visibility:hidden;border:0;",n="style='"+k+"border:5px solid #000;padding:0;'",o="<div "+n+"><div></div></div>"+"<table "+n+" cellpadding='0' cellspacing='0'>"+"<tr><td></td></tr></table>",a=c.createElement("div"),a.style.cssText=m+"width:0;height:0;position:static;top:0;margin-top:"+j+"px",r.insertBefore(a,r.firstChild),q=c.createElement("div"),a.appendChild(q),q.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>",l=q.getElementsByTagName("td"),p=l[0].offsetHeight===0,l[0].style.display="",l[1].style.display="none",b.reliableHiddenOffsets=p&&l[0].offsetHeight===0,q.innerHTML="",q.style.width=q.style.paddingLeft="1px",f.boxModel=b.boxModel=q.offsetWidth===2,typeof q.style.zoom!="undefined"&&(q.style.display="inline",q.style.zoom=1,b.inlineBlockNeedsLayout=q.offsetWidth===2,q.style.display="",q.innerHTML="<div style='width:4px;'></div>",b.shrinkWrapBlocks=q.offsetWidth!==2),q.style.cssText=k+m,q.innerHTML=o,d=q.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,i={doesNotAddBorder:e.offsetTop!==5,doesAddBorderForTableAndCells:h.offsetTop===5},e.style.position="fixed",e.style.top="20px",i.fixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",i.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,i.doesNotIncludeMarginInBodyOffset=r.offsetTop!==j,r.removeChild(a),q=a=null,f.extend(b,i))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e<g;e++)delete d[b[e]];if(!(c?m:f.isEmptyObject)(d))return}}if(!c){delete j[k].data;if(!m(j[k]))return}f.support.deleteExpando||!j.setInterval?delete j[k]:j[k]=null,i&&(f.support.deleteExpando?delete a[h]:a.removeAttribute?a.removeAttribute(h):a[h]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d,e,g,h=null;if(typeof a=="undefined"){if(this.length){h=f.data(this[0]);if(this[0].nodeType===1&&!f._data(this[0],"parsedAttrs")){e=this[0].attributes;for(var i=0,j=e.length;i<j;i++)g=e[i].name,g.indexOf("data-")===0&&(g=f.camelCase(g.substring(5)),l(this[0],g,h[g]));f._data(this[0],"parsedAttrs",!0)}}return h}if(typeof a=="object")return this.each(function(){f.data(this,a)});d=a.split("."),d[1]=d[1]?"."+d[1]:"";if(c===b){h=this.triggerHandler("getData"+d[1]+"!",[d[0]]),h===b&&this.length&&(h=f.data(this[0],a),h=l(this[0],a,h));return h===b&&d[1]?this.data(d[0]):h}return this.each(function(){var b=f(this),e=[d[0],c];b.triggerHandler("setData"+d[1]+"!",e),f.data(this,a,c),b.triggerHandler("changeData"+d[1]+"!",e)})},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,b){a&&(b=(b||"fx")+"mark",f._data(a,b,(f._data(a,b)||0)+1))},_unmark:function(a,b,c){a!==!0&&(c=b,b=a,a=!1);if(b){c=c||"fx";var d=c+"mark",e=a?0:(f._data(b,d)||1)-1;e?f._data(b,d,e):(f.removeData(b,d,!0),n(b,c,"mark"))}},queue:function(a,b,c){var d;if(a){b=(b||"fx")+"queue",d=f._data(a,b),c&&(!d||f.isArray(c)?d=f._data(a,b,f.makeArray(c)):d.push(c));return d||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e={};d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),f._data(a,b+".run",e),d.call(a,function(){f.dequeue(a,b)},e)),c.length||(f.removeData(a,b+"queue "+b+".run",!0),n(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){typeof a!="string"&&(c=a,a="fx");if(c===b)return f.queue(this[0],a);return this.each(function(){var b=f.queue(this,a,c);a==="fx"&&b[0]!=="inprogress"&&f.dequeue(this,a)})},dequeue:function(a){return this.each(function(){f.dequeue(this,a)})},delay:function(a,b){a=f.fx?f.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){function m(){--h||d.resolveWith(e,[e])}typeof a!="string"&&(c=a,a=b),a=a||"fx";var d=f.Deferred(),e=this,g=e.length,h=1,i=a+"defer",j=a+"queue",k=a+"mark",l;while(g--)if(l=f.data(e[g],i,b,!0)||(f.data(e[g],j,b,!0)||f.data(e[g],k,b,!0))&&f.data(e[g],i,f.Callbacks("once memory"),!0))h++,l.add(m);m();return d.promise()}});var o=/[\n\t\r]/g,p=/\s+/,q=/\r/g,r=/^(?:button|input)$/i,s=/^(?:button|input|object|select|textarea)$/i,t=/^a(?:rea)?$/i,u=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,v=f.support.getSetAttribute,w,x,y;f.fn.extend({attr:function(a,b){return f.access(this,a,b,!0,f.attr)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,a,b,!0,f.prop)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(p);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{g=" "+e.className+" ";for(h=0,i=b.length;h<i;h++)~g.indexOf(" "+b[h]+" ")||(g+=b[h]+" ");e.className=f.trim(g)}}}return this},removeClass:function(a){var c,d,e,g,h,i,j;if(f.isFunction(a))return this.each(function(b){f(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(p);for(d=0,e=this.length;d<e;d++){g=this[d];if(g.nodeType===1&&g.className)if(a){h=(" "+g.className+" ").replace(o," ");for(i=0,j=c.length;i<j;i++)h=h.replace(" "+c[i]+" "," ");g.className=f.trim(h)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";if(f.isFunction(a))return this.each(function(c){f(this).toggleClass(a.call(this,c,this.className,b),b)});return this.each(function(){if(c==="string"){var e,g=0,h=f(this),i=b,j=a.split(p);while(e=j[g++])i=d?i:!h.hasClass(e),h[i?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&f._data(this,"__className__",this.className),this.className=this.className||a===!1?"":f._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(o," ").indexOf(b)>-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c<d;c++){e=i[c];if(e.selected&&(f.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!f.nodeName(e.parentNode,"optgroup"))){b=f(e).val();if(j)return b;h.push(b)}}if(j&&!h.length&&i.length)return f(i[g]).val();return h},set:function(a,b){var c=f.makeArray(b);f(a).find("option").each(function(){this.selected=f.inArray(f(this).val(),c)>=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;h<g;h++)e=d[h],e&&(c=f.propFix[e]||e,f.attr(a,e,""),a.removeAttribute(v?e:c),u.test(e)&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(r.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},value:{get:function(a,b){if(w&&f.nodeName(a,"button"))return w.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(w&&f.nodeName(a,"button"))return w.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,g,h,i=a.nodeType;if(!!a&&i!==3&&i!==8&&i!==2){h=i!==1||!f.isXMLDoc(a),h&&(c=f.propFix[c]||c,g=f.propHooks[c]);return d!==b?g&&"set"in g&&(e=g.set(a,d,c))!==b?e:a[c]=d:g&&"get"in g&&(e=g.get(a,c))!==null?e:a[c]}},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):s.test(a.nodeName)||t.test(a.nodeName)&&a.href?0:b}}}}),f.attrHooks.tabindex=f.propHooks.tabIndex,x={get:function(a,c){var d,e=f.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},v||(y={name:!0,id:!0},w=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&(y[c]?d.nodeValue!=="":d.specified)?d.nodeValue:b},set:function(a,b,d){var e=a.getAttributeNode(d);e||(e=c.createAttribute(d),a.setAttributeNode(e));return e.nodeValue=b+""}},f.attrHooks.tabindex.set=w.set,f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})}),f.attrHooks.contenteditable={get:w.get,set:function(a,b,c){b===""&&(b="false"),w.set(a,b,c)}}),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex);return null}})),f.support.enctype||(f.propFix.enctype="encoding"),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/\bhover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function(a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")};
  3 +f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k<c.length;k++){l=A.exec(c[k])||[],m=l[1],n=(l[2]||"").split(".").sort(),s=f.event.special[m]||{},m=(g?s.delegateType:s.bindType)||m,s=f.event.special[m]||{},o=f.extend({type:m,origType:l[1],data:e,handler:d,guid:d.guid,selector:g,quick:G(g),namespace:n.join(".")},p),r=j[m];if(!r){r=j[m]=[],r.delegateCount=0;if(!s.setup||s.setup.call(a,e,n,i)===!1)a.addEventListener?a.addEventListener(m,i,!1):a.attachEvent&&a.attachEvent("on"+m,i)}s.add&&(s.add.call(a,o),o.handler.guid||(o.handler.guid=d.guid)),g?r.splice(r.delegateCount++,0,o):r.push(o),f.event.global[m]=!0}a=null}},global:{},remove:function(a,b,c,d,e){var g=f.hasData(a)&&f._data(a),h,i,j,k,l,m,n,o,p,q,r,s;if(!!g&&!!(o=g.events)){b=f.trim(I(b||"")).split(" ");for(h=0;h<b.length;h++){i=A.exec(b[h])||[],j=k=i[1],l=i[2];if(!j){for(j in o)f.event.remove(a,j+b[h],c,d,!0);continue}p=f.event.special[j]||{},j=(d?p.delegateType:p.bindType)||j,r=o[j]||[],m=r.length,l=l?new RegExp("(^|\\.)"+l.split(".").sort().join("\\.(?:.*\\.)?")+"(\\.|$)"):null;for(n=0;n<r.length;n++)s=r[n],(e||k===s.origType)&&(!c||c.guid===s.guid)&&(!l||l.test(s.namespace))&&(!d||d===s.selector||d==="**"&&s.selector)&&(r.splice(n--,1),s.selector&&r.delegateCount--,p.remove&&p.remove.call(a,s));r.length===0&&m!==r.length&&((!p.teardown||p.teardown.call(a,l)===!1)&&f.removeEvent(a,j,g.handle),delete o[j])}f.isEmptyObject(o)&&(q=g.handle,q&&(q.elem=null),f.removeData(a,["events","handle"],!0))}},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,e,g){if(!e||e.nodeType!==3&&e.nodeType!==8){var h=c.type||c,i=[],j,k,l,m,n,o,p,q,r,s;if(E.test(h+f.event.triggered))return;h.indexOf("!")>=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;l<r.length&&!c.isPropagationStopped();l++)m=r[l][0],c.type=r[l][1],q=(f._data(m,"events")||{})[c.type]&&f._data(m,"handle"),q&&q.apply(m,d),q=o&&m[o],q&&f.acceptData(m)&&q.apply(m,d)===!1&&c.preventDefault();c.type=h,!g&&!c.isDefaultPrevented()&&(!p._default||p._default.apply(e.ownerDocument,d)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)&&o&&e[h]&&(h!=="focus"&&h!=="blur"||c.target.offsetWidth!==0)&&!f.isWindow(e)&&(n=e[o],n&&(e[o]=null),f.event.triggered=h,e[h](),f.event.triggered=b,n&&(e[o]=n));return c.result}},dispatch:function(c){c=f.event.fix(c||a.event);var d=(f._data(this,"events")||{})[c.type]||[],e=d.delegateCount,g=[].slice.call(arguments,0),h=!c.exclusive&&!c.namespace,i=[],j,k,l,m,n,o,p,q,r,s,t;g[0]=c,c.delegateTarget=this;if(e&&!c.target.disabled&&(!c.button||c.type!=="click")){m=f(this),m.context=this.ownerDocument||this;for(l=c.target;l!=this;l=l.parentNode||this){o={},q=[],m[0]=l;for(j=0;j<e;j++)r=d[j],s=r.selector,o[s]===b&&(o[s]=r.quick?H(l,r.quick):m.is(s)),o[s]&&q.push(r);q.length&&i.push({elem:l,matches:q})}}d.length>e&&i.push({elem:this,matches:d.slice(e)});for(j=0;j<i.length&&!c.isPropagationStopped();j++){p=i[j],c.currentTarget=p.elem;for(k=0;k<p.matches.length&&!c.isImmediatePropagationStopped();k++){r=p.matches[k];if(h||!c.namespace&&!r.namespace||c.namespace_re&&c.namespace_re.test(r.namespace))c.data=r.data,c.handleObj=r,n=((f.event.special[r.origType]||{}).handle||r.handler).apply(p.elem,g),n!==b&&(c.result=n,n===!1&&(c.preventDefault(),c.stopPropagation()))}}return c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode);return a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,d){var e,f,g,h=d.button,i=d.fromElement;a.pageX==null&&d.clientX!=null&&(e=a.target.ownerDocument||c,f=e.documentElement,g=e.body,a.pageX=d.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=d.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?d.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0);return a}},fix:function(a){if(a[f.expando])return a;var d,e,g=a,h=f.event.fixHooks[a.type]||{},i=h.props?this.props.concat(h.props):this.props;a=f.Event(g);for(d=i.length;d;)e=i[--d],a[e]=g[e];a.target||(a.target=g.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey===b&&(a.metaKey=a.ctrlKey);return h.filter?h.filter(a,g):a},special:{ready:{setup:f.bindReady},load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){f.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=f.extend(new f.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?f.event.trigger(e,null,b):f.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},f.event.handle=f.event.dispatch,f.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},f.Event=function(a,b){if(!(this instanceof f.Event))return new f.Event(a,b);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?K:J):this.type=a,b&&f.extend(this,b),this.timeStamp=a&&a.timeStamp||f.now(),this[f.expando]=!0},f.Event.prototype={preventDefault:function(){this.isDefaultPrevented=K;var a=this.originalEvent;!a||(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=K;var a=this.originalEvent;!a||(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=K,this.stopPropagation()},isDefaultPrevented:J,isPropagationStopped:J,isImmediatePropagationStopped:J},f.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){f.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c=this,d=a.relatedTarget,e=a.handleObj,g=e.selector,h;if(!d||d!==c&&!f.contains(c,d))a.type=e.origType,h=e.handler.apply(this,arguments),a.type=b;return h}}}),f.support.submitBubbles||(f.event.special.submit={setup:function(){if(f.nodeName(this,"form"))return!1;f.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=f.nodeName(c,"input")||f.nodeName(c,"button")?c.form:b;d&&!d._submit_attached&&(f.event.add(d,"submit._submit",function(a){this.parentNode&&!a.isTrigger&&f.event.simulate("submit",this.parentNode,a,!0)}),d._submit_attached=!0)})},teardown:function(){if(f.nodeName(this,"form"))return!1;f.event.remove(this,"._submit")}}),f.support.changeBubbles||(f.event.special.change={setup:function(){if(z.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")f.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),f.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1,f.event.simulate("change",this,a,!0))});return!1}f.event.add(this,"beforeactivate._change",function(a){var b=a.target;z.test(b.nodeName)&&!b._change_attached&&(f.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&f.event.simulate("change",this.parentNode,a,!0)}),b._change_attached=!0)})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){f.event.remove(this,"._change");return z.test(this.nodeName)}}),f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){var d=0,e=function(a){f.event.simulate(b,a.target,f.event.fix(a),!0)};f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.fn.extend({on:function(a,c,d,e,g){var h,i;if(typeof a=="object"){typeof c!="string"&&(d=c,c=b);for(i in a)this.on(i,c,d,a[i],g);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=J;else if(!e)return this;g===1&&(h=e,e=function(a){f().off(a);return h.apply(this,arguments)},e.guid=h.guid||(h.guid=f.guid++));return this.each(function(){f.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on.call(this,a,b,c,d,1)},off:function(a,c,d){if(a&&a.preventDefault&&a.handleObj){var e=a.handleObj;f(a.delegateTarget).off(e.namespace?e.type+"."+e.namespace:e.type,e.selector,e.handler);return this}if(typeof a=="object"){for(var g in a)this.off(g,c,a[g]);return this}if(c===!1||typeof c=="function")d=c,c=b;d===!1&&(d=J);return this.each(function(){f.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){f(this.context).on(a,this.selector,b,c);return this},die:function(a,b){f(this.context).off(a,this.selector||"**",b);return this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length==1?this.off(a,"**"):this.off(b,a,c)},trigger:function(a,b){return this.each(function(){f.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return f.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||f.guid++,d=0,e=function(c){var e=(f._data(this,"lastToggle"+a.guid)||0)%d;f._data(this,"lastToggle"+a.guid,e+1),c.preventDefault();return b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),f.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){f.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}if(j.nodeType===1){g||(j[d]=c,j.sizset=h);if(typeof b!="string"){if(j===b){k=!0;break}}else if(m.filter(b,[j]).length>0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}j.nodeType===1&&!g&&(j[d]=c,j.sizset=h);if(j.nodeName.toLowerCase()===b){k=j;break}j=j[a]}e[h]=k}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},m.matches=function(a,b){return m(a,null,null,b)},m.matchesSelector=function(a,b){return m(b,null,null,[a]).length>0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e<f;e++){h=o.order[e];if(g=o.leftMatch[h].exec(a)){i=g[1],g.splice(1,1);if(i.substr(i.length-1)!=="\\"){g[1]=(g[1]||"").replace(j,""),d=o.find[h](g,b,c);if(d!=null){a=a.replace(o.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},m.filter=function(a,c,d,e){var f,g,h,i,j,k,l,n,p,q=a,r=[],s=c,t=c&&c[0]&&m.isXML(c[0]);while(a&&c.length){for(h in o.filter)if((f=o.leftMatch[h].exec(a))!=null&&f[2]){k=o.filter[h],l=f[1],g=!1,f.splice(1,1);if(l.substr(l.length-1)==="\\")continue;s===r&&(r=[]);if(o.preFilter[h]){f=o.preFilter[h](f,s,d,r,e,t);if(!f)g=i=!0;else if(f===!0)continue}if(f)for(n=0;(j=s[n])!=null;n++)j&&(i=k(j,f,n,s),p=e^i,d&&i!=null?p?g=!0:s[n]=!1:p&&(r.push(j),g=!0));if(i!==b){d||(s=r),a=a.replace(o.match[h],"");if(!g)return[];break}}if(a===q)if(g==null)m.error(a);else break;q=a}return s},m.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)};var n=m.getText=function(a){var b,c,d=a.nodeType,e="";if(d){if(d===1||d===9){if(typeof a.textContent=="string")return a.textContent;if(typeof a.innerText=="string")return a.innerText.replace(k,"");for(a=a.firstChild;a;a=a.nextSibling)e+=n(a)}else if(d===3||d===4)return a.nodeValue}else for(b=0;c=a[b];b++)c.nodeType!==8&&(e+=n(c));return e},o=m.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b=="string",d=c&&!l.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&m.filter(b,a,!0)},">":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&m.filter(b,a,!0)}},"":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("parentNode",b,f,a,d,c)},"~":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("previousSibling",b,f,a,d,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(j,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}m.error(e)},CHILD:function(a,b){var c,e,f,g,h,i,j,k=b[1],l=a;switch(k){case"only":case"first":while(l=l.previousSibling)if(l.nodeType===1)return!1;if(k==="first")return!0;l=a;case"last":while(l=l.nextSibling)if(l.nodeType===1)return!1;return!0;case"nth":c=b[2],e=b[3];if(c===1&&e===0)return!0;f=b[0],g=a.parentNode;if(g&&(g[d]!==f||!a.nodeIndex)){i=0;for(l=g.firstChild;l;l=l.nextSibling)l.nodeType===1&&(l.nodeIndex=++i);g[d]=f}j=a.nodeIndex-e;return c===0?j===0:j%c===0&&j/c>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c<e;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var u,v;c.documentElement.compareDocumentPosition?u=function(a,b){if(a===b){h=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(u=function(a,b){if(a===b){h=!0;return 0}if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,i=b.parentNode,j=g;if(g===i)return v(a,b);if(!g)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return v(e[k],f[k]);return k===c?v(a,f[k],-1):v(e[k],b,1)},v=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h<i;h++)m(a,g[h],e,c);return m.filter(f,e)};m.attr=f.attr,m.selectors.attrMap={},f.find=m,f.expr=m.selectors,f.expr[":"]=f.expr.filters,f.unique=m.uniqueSort,f.text=m.getText,f.isXMLDoc=m.isXML,f.contains=m.contains}();var L=/Until$/,M=/^(?:parents|prevUntil|prevAll)/,N=/,/,O=/^.[^:#\[\.,]*$/,P=Array.prototype.slice,Q=f.expr.match.POS,R={children:!0,contents:!0,next:!0,prev:!0};f.fn.extend({find:function(a){var b=this,c,d;if(typeof a!="string")return f(a).filter(function(){for(c=0,d=b.length;c<d;c++)if(f.contains(b[c],this))return!0});var e=this.pushStack("","find",a),g,h,i;for(c=0,d=this.length;c<d;c++){g=e.length,f.find(a,this[c],e);if(c>0)for(h=g;h<e.length;h++)for(i=0;i<g;i++)if(e[i]===e[h]){e.splice(h--,1);break}}return e},has:function(a){var b=f(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(f.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(T(this,a,!1),"not",a)},filter:function(a){return this.pushStack(T(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?Q.test(a)?f(a,this.context).index(this[0])>=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d<a.length;d++)f(g).is(a[d])&&c.push({selector:a[d],elem:g,level:h});g=g.parentNode,h++}return c}var i=Q.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d<e;d++){g=this[d];while(g){if(i?i.index(g)>-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/<tbody/i,_=/<|&#?\w+;/,ba=/<(?:script|style)/i,bb=/<(?:script|object|embed|option|style)/i,bc=new RegExp("<(?:"+V+")","i"),bd=/checked\s*(?:[^=]|=\s*.checked.)/i,be=/\/(java|ecma)script/i,bf=/^\s*<!(?:\[CDATA\[|\-\-)/,bg={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div<div>","</div>"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f.clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function()
4 4 {for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1></$2>");try{for(var c=0,d=this.length;c<d;c++)this[c].nodeType===1&&(f.cleanData(this[c].getElementsByTagName("*")),this[c].innerHTML=a)}catch(e){this.empty().append(a)}}else f.isFunction(a)?this.each(function(b){var c=f(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(f.isFunction(a))return this.each(function(b){var c=f(this),d=c.html();c.replaceWith(a.call(this,b,d))});typeof a!="string"&&(a=f(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;f(this).remove(),b?f(b).before(a):f(c).append(a)})}return this.length?this.pushStack(f(f.isFunction(a)?a():a),"replaceWith",a):this},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){var e,g,h,i,j=a[0],k=[];if(!f.support.checkClone&&arguments.length===3&&typeof j=="string"&&bd.test(j))return this.each(function(){f(this).domManip(a,c,d,!0)});if(f.isFunction(j))return this.each(function(e){var g=f(this);a[0]=j.call(this,e,c?g.html():b),g.domManip(a,c,d)});if(this[0]){i=j&&j.parentNode,f.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?e={fragment:i}:e=f.buildFragment(a,this,k),h=e.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&f.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)d.call(c?bi(this[l],g):this[l],e.cacheable||m>1&&l<n?f.clone(h,!0,!0):h)}k.length&&f.each(k,bp)}return this}}),f.buildFragment=function(a,b,d){var e,g,h,i,j=a[0];b&&b[0]&&(i=b[0].ownerDocument||b[0]),i.createDocumentFragment||(i=c),a.length===1&&typeof j=="string"&&j.length<512&&i===c&&j.charAt(0)==="<"&&!bb.test(j)&&(f.support.checkClone||!bd.test(j))&&(f.support.html5Clone||!bc.test(j))&&(g=!0,h=f.fragments[j],h&&h!==1&&(e=h)),e||(e=i.createDocumentFragment(),f.clean(a,i,e,d)),g&&(f.fragments[j]=h?e:1);return{fragment:e,cacheable:g}},f.fragments={},f.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){f.fn[a]=function(c){var d=[],e=f(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&e.length===1){e[b](this[0]);return this}for(var h=0,i=e.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||!bc.test("<"+a.nodeName)?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1></$2>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=bg[l]||bg._default,n=m[0],o=b.createElement("div");b===c?bh.appendChild(o):U(b).appendChild(o),o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]==="<table>"&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i<r;i++)bn(k[i]);else bn(k);k.nodeType?h.push(k):h=f.merge(h,k)}if(d){g=function(a){return!a.type||be.test(a.type)};for(j=0;h[j];j++)if(e&&f.nodeName(h[j],"script")&&(!h[j].type||h[j].type.toLowerCase()==="text/javascript"))e.push(h[j].parentNode?h[j].parentNode.removeChild(h[j]):h[j]);else{if(h[j].nodeType===1){var s=f.grep(h[j].getElementsByTagName("script"),g);h.splice.apply(h,[j+1,0].concat(s))}d.appendChild(h[j])}}return h},cleanData:function(a){var b,c,d=f.cache,e=f.event.special,g=f.support.deleteExpando;for(var h=0,i;(i=a[h])!=null;h++){if(i.nodeName&&f.noData[i.nodeName.toLowerCase()])continue;c=i[f.expando];if(c){b=d[c];if(b&&b.events){for(var j in b.events)e[j]?f.event.remove(i,j):f.removeEvent(i,j,b.handle);b.handle&&(b.handle.elem=null)}g?delete i[f.expando]:i.removeAttribute&&i.removeAttribute(f.expando),delete d[c]}}}});var bq=/alpha\([^)]*\)/i,br=/opacity=([^)]*)/,bs=/([A-Z]|^ms)/g,bt=/^-?\d+(?:px)?$/i,bu=/^-?\d/,bv=/^([\-+])=([\-+.\de]+)/,bw={position:"absolute",visibility:"hidden",display:"block"},bx=["Left","Right"],by=["Top","Bottom"],bz,bA,bB;f.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return f.access(this,a,c,!0,function(a,c,d){return d!==b?f.style(a,c,d):f.css(a,c)})},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bz(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d,h==="string"&&(g=bv.exec(d))&&(d=+(g[1]+1)*+g[2]+parseFloat(f.css(a,c)),h="number");if(d==null||h==="number"&&isNaN(d))return;h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(bz)return bz(a,c)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]}}),f.curCSS=f.css,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){var e;if(c){if(a.offsetWidth!==0)return bC(a,b,d);f.swap(a,bw,function(){e=bC(a,b,d)});return e}},set:function(a,b){if(!bt.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return br.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bq,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bq.test(g)?g.replace(bq,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bz(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bA=function(a,b){var c,d,e;b=b.replace(bs,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b)));return c}),c.documentElement.currentStyle&&(bB=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f===null&&g&&(e=g[b])&&(f=e),!bt.test(f)&&bu.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f||0,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),bz=bA||bB,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bD=/%20/g,bE=/\[\]$/,bF=/\r?\n/g,bG=/#.*$/,bH=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bI=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bJ=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bK=/^(?:GET|HEAD)$/,bL=/^\/\//,bM=/\?/,bN=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bO=/^(?:select|textarea)/i,bP=/\s+/,bQ=/([?&])_=[^&]*/,bR=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bS=f.fn.load,bT={},bU={},bV,bW,bX=["*/"]+["*"];try{bV=e.href}catch(bY){bV=c.createElement("a"),bV.href="",bV=bV.href}bW=bR.exec(bV.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bS)return bS.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("<div>").append(c.replace(bN,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bO.test(this.nodeName)||bI.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bF,"\r\n")}}):{name:b.name,value:c.replace(bF,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b_(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b_(a,b);return a},ajaxSettings:{url:bV,isLocal:bJ.test(bW[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bX},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bZ(bT),ajaxTransport:bZ(bU),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?cb(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cc(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bH.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bG,"").replace(bL,bW[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bP),d.crossDomain==null&&(r=bR.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bW[1]&&r[2]==bW[2]&&(r[3]||(r[1]==="http:"?80:443))==(bW[3]||(bW[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),b$(bT,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bK.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bM.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bQ,"$1_="+x);d.url=y+(y===d.url?(bM.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bX+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=b$(bU,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)ca(g,a[g],c,e);return d.join("&").replace(bD,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cd=f.now(),ce=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cd++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ce.test(b.url)||e&&ce.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ce,l),b.url===j&&(e&&(k=k.replace(ce,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cf=a.ActiveXObject?function(){for(var a in ch)ch[a](0,1)}:!1,cg=0,ch;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ci()||cj()}:ci,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cf&&delete ch[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cg,cf&&(ch||(ch={},f(a).unload(cf)),ch[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var ck={},cl,cm,cn=/^(?:toggle|show|hide)$/,co=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cp,cq=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cr;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cu("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)d=this[g],d.style&&(e=d.style.display,!f._data(d,"olddisplay")&&e==="none"&&(e=d.style.display=""),e===""&&f.css(d,"display")==="none"&&f._data(d,"olddisplay",cv(d.nodeName)));for(g=0;g<h;g++){d=this[g];if(d.style){e=d.style.display;if(e===""||e==="none")d.style.display=f._data(d,"olddisplay")||""}}return this},hide:function(a,b,c){if(a||a===0)return this.animate(cu("hide",3),a,b,c);var d,e,g=0,h=this.length;for(;g<h;g++)d=this[g],d.style&&(e=f.css(d,"display"),e!=="none"&&!f._data(d,"olddisplay")&&f._data(d,"olddisplay",e));for(g=0;g<h;g++)this[g].style&&(this[g].style.display="none");return this},_toggle:f.fn.toggle,toggle:function(a,b,c){var d=typeof a=="boolean";f.isFunction(a)&&f.isFunction(b)?this._toggle.apply(this,arguments):a==null||d?this.each(function(){var b=d?a:f(this).is(":hidden");f(this)[b?"show":"hide"]()}):this.animate(cu("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){function g(){e.queue===!1&&f._mark(this);var b=f.extend({},e),c=this.nodeType===1,d=c&&f(this).is(":hidden"),g,h,i,j,k,l,m,n,o;b.animatedProperties={};for(i in a){g=f.camelCase(i),i!==g&&(a[g]=a[i],delete a[i]),h=a[g],f.isArray(h)?(b.animatedProperties[g]=h[1],h=a[g]=h[0]):b.animatedProperties[g]=b.specialEasing&&b.specialEasing[g]||b.easing||"swing";if(h==="hide"&&d||h==="show"&&!d)return b.complete.call(this);c&&(g==="height"||g==="width")&&(b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY],f.css(this,"display")==="inline"&&f.css(this,"float")==="none"&&(!f.support.inlineBlockNeedsLayout||cv(this.nodeName)==="inline"?this.style.display="inline-block":this.style.zoom=1))}b.overflow!=null&&(this.style.overflow="hidden");for(i in a)j=new f.fx(this,b,i),h=a[i],cn.test(h)?(o=f._data(this,"toggle"+i)||(h==="toggle"?d?"show":"hide":0),o?(f._data(this,"toggle"+i,o==="show"?"hide":"show"),j[o]()):j[h]()):(k=co.exec(h),l=j.cur(),k?(m=parseFloat(k[2]),n=k[3]||(f.cssNumber[i]?"":"px"),n!=="px"&&(f.style(this,i,(m||1)+n),l=(m||1)/j.cur()*l,f.style(this,i,l+n)),k[1]&&(m=(k[1]==="-="?-1:1)*m+l),j.custom(l,m,n)):j.custom(l,h,""));return!0}var e=f.speed(b,c,d);if(f.isEmptyObject(a))return this.each(e.complete,[!1]);a=f.extend({},a);return e.queue===!1?this.each(g):this.queue(e.queue,g)},stop:function(a,c,d){typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]);return this.each(function(){function h(a,b,c){var e=b[c];f.removeData(a,c,!0),e.stop(d)}var b,c=!1,e=f.timers,g=f._data(this);d||f._unmark(!0,this);if(a==null)for(b in g)g[b]&&g[b].stop&&b.indexOf(".run")===b.length-4&&h(this,g,b);else g[b=a+".run"]&&g[b].stop&&h(this,g,b);for(b=e.length;b--;)e[b].elem===this&&(a==null||e[b].queue===a)&&(d?e[b](!0):e[b].saveState(),c=!0,e.splice(b,1));(!d||!c)&&f.dequeue(this,a)})}}),f.each({slideDown:cu("show",1),slideUp:cu("hide",1),slideToggle:cu("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){f.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),f.extend({speed:function(a,b,c){var d=a&&typeof a=="object"?f.extend({},a):{complete:c||!c&&b||f.isFunction(a)&&a,duration:a,easing:c&&b||b&&!f.isFunction(b)&&b};d.duration=f.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in f.fx.speeds?f.fx.speeds[d.duration]:f.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";d.old=d.complete,d.complete=function(a){f.isFunction(d.old)&&d.old.call(this),d.queue?f.dequeue(this,d.queue):a!==!1&&f._unmark(this)};return d},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig=b.orig||{}}}),f.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(f.fx.step[this.prop]||f.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=f.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,c,d){function h(a){return e.step(a)}var e=this,g=f.fx;this.startTime=cr||cs(),this.end=c,this.now=this.start=a,this.pos=this.state=0,this.unit=d||this.unit||(f.cssNumber[this.prop]?"":"px"),h.queue=this.options.queue,h.elem=this.elem,h.saveState=function(){e.options.hide&&f._data(e.elem,"fxshow"+e.prop)===b&&f._data(e.elem,"fxshow"+e.prop,e.start)},h()&&f.timers.push(h)&&!cp&&(cp=setInterval(g.tick,g.interval))},show:function(){var a=f._data(this.elem,"fxshow"+this.prop);this.options.orig[this.prop]=a||f.style(this.elem,this.prop),this.options.show=!0,a!==b?this.custom(this.cur(),a):this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),f(this.elem).show()},hide:function(){this.options.orig[this.prop]=f._data(this.elem,"fxshow"+this.prop)||f.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b,c,d,e=cr||cs(),g=!0,h=this.elem,i=this.options;if(a||e>=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||f.fx.stop()},interval:13,stop:function(){clearInterval(cp),cp=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){f.style(a.elem,"opacity",a.now)},_default:function(a){a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=a.now+a.unit:a.elem[a.prop]=a.now}}}),f.each(["width","height"],function(a,b){f.fx.step[b]=function(a){f.style(a.elem,b,Math.max(0,a.now)+a.unit)}}),f.expr&&f.expr.filters&&(f.expr.filters.animated=function(a){return f.grep(f.timers,function(b){return a===b.elem}).length});var cw=/^t(?:able|d|h)$/i,cx=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?f.fn.offset=function(a){var b=this[0],c;if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);try{c=b.getBoundingClientRect()}catch(d){}var e=b.ownerDocument,g=e.documentElement;if(!c||!f.contains(g,b))return c?{top:c.top,left:c.left}:{top:0,left:0};var h=e.body,i=cy(e),j=g.clientTop||h.clientTop||0,k=g.clientLeft||h.clientLeft||0,l=i.pageYOffset||f.support.boxModel&&g.scrollTop||h.scrollTop,m=i.pageXOffset||f.support.boxModel&&g.scrollLeft||h.scrollLeft,n=c.top+l-j,o=c.left+m-k;return{top:n,left:o}}:f.fn.offset=function(a){var b=this[0];if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);var c,d=b.offsetParent,e=b,g=b.ownerDocument,h=g.documentElement,i=g.body,j=g.defaultView,k=j?j.getComputedStyle(b,null):b.currentStyle,l=b.offsetTop,m=b.offsetLeft;while((b=b.parentNode)&&b!==i&&b!==h){if(f.support.fixedPosition&&k.position==="fixed")break;c=j?j.getComputedStyle(b,null):b.currentStyle,l-=b.scrollTop,m-=b.scrollLeft,b===d&&(l+=b.offsetTop,m+=b.offsetLeft,f.support.doesNotAddBorder&&(!f.support.doesAddBorderForTableAndCells||!cw.test(b.nodeName))&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),e=d,d=b.offsetParent),f.support.subtractsBorderForOverflowNotVisible&&c.overflow!=="visible"&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),k=c}if(k.position==="relative"||k.position==="static")l+=i.offsetTop,m+=i.offsetLeft;f.support.fixedPosition&&k.position==="fixed"&&(l+=Math.max(h.scrollTop,i.scrollTop),m+=Math.max(h.scrollLeft,i.scrollLeft));return{top:l,left:m}},f.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cy(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cy(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,d,"padding")):this[d]():null},f.fn["outer"+c]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,d,a?"margin":"border")):this[d]():null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNumeric(j)?j:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window);
5 5 \ No newline at end of file
... ...
test-output/junitreports/TEST-com.essa.testSuite.Test_Login.xml
1   -<?xml version="1.0" encoding="UTF-8"?>
  1 +<?xml version="1.0" encoding="UTF-8"?>
2 2 <!-- Generated by org.testng.reporters.JUnitReportReporter -->
3   -<testsuite skipped="0" hostname="DESKTOP-NIGE62D" name="com.essa.testSuite.Test_Login" tests="2" failures="0" timestamp="10 四月 2018 10:27:19 GMT" time="18.800" errors="0">
4   - <testcase name="login" time="9.690" classname="com.essa.testSuite.Test_Login"/>
5   - <testcase name="login" time="9.110" classname="com.essa.testSuite.Test_Login"/>
6   -</testsuite> <!-- com.essa.testSuite.Test_Login -->
  3 +<testsuite hostname="A4O1M5DMPNJ0AZF" failures="0" tests="2" name="com.essa.testSuite.Test_Login" time="5.211" errors="0" timestamp="13 8月 2018 02:10:12 GMT" skipped="0">
  4 + <testcase classname="com.essa.testSuite.Test_Login" name="login" time="2.333"/>
  5 + <testcase classname="com.essa.testSuite.Test_Login" name="login" time="2.878"/>
  6 +</testsuite> <!-- com.essa.testSuite.Test_Login -->
... ...
test-output/old/bpms自动化测试/classes.html
... ... @@ -4,14 +4,22 @@
4 4 <th>Method name</th>
5 5 <th>Groups</th>
6 6 </tr><tr>
7   -<td>com.essa.testSuite.Test_Login</td>
  7 +<td>com.essa.testSuite.TestAddOriginalGoods</td>
8 8 <td>&nbsp;</td><td>&nbsp;</td></tr>
9 9 <tr>
10 10 <td align='center' colspan='3'>@Test</td>
11 11 </tr>
12 12 <tr>
13 13 <td>&nbsp;</td>
14   -<td>login</td>
  14 +<td>updatePic</td>
  15 +<td>&nbsp;</td></tr>
  16 +<tr>
  17 +<td>&nbsp;</td>
  18 +<td>toAddOriginalGoodsPage</td>
  19 +<td>&nbsp;</td></tr>
  20 +<tr>
  21 +<td>&nbsp;</td>
  22 +<td>auditOriginal</td>
15 23 <td>&nbsp;</td></tr>
16 24 <tr>
17 25 <td align='center' colspan='3'>@BeforeClass</td>
... ...
test-output/old/bpms自动化测试/index.html
1   -<html><head><title>Results for bpms×Ô¶¯»¯²âÊÔ</title></head>
  1 +<html><head><title>Results for bpms×Ô¶¯»¯²âÊÔ</title></head>
2 2 <frameset cols="26%,74%">
3 3 <frame src="toc.html" name="navFrame">
4 4 <frame src="main.html" name="mainFrame">
... ...
test-output/old/bpms自动化测试/main.html
1   -<html><head><title>Results for bpms×Ô¶¯»¯²âÊÔ</title></head>
  1 +<html><head><title>Results for bpms×Ô¶¯»¯²âÊÔ</title></head>
2 2 <body>Select a result on the left-hand pane.</body></html>
... ...
test-output/old/bpms自动化测试/methods-alphabetical.html
1 1 <h2>Methods run, sorted chronologically</h2><h3>&gt;&gt; means before, &lt;&lt; means after</h3><p/><br/><em>bpms×Ô¶¯»¯²âÊÔ</em><p/><small><i>(Hover the method name to see the test class name)</i></small><p/>
2 2 <table border="1">
3 3 <tr><th>Time</th><th>Delta (ms)</th><th>Suite<br>configuration</th><th>Test<br>configuration</th><th>Class<br>configuration</th><th>Groups<br>configuration</th><th>Method<br>configuration</th><th>Test<br>method</th><th>Thread</th><th>Instances</th></tr>
4   -<tr bgcolor="8f92ff"> <td>18/04/10 18:26:56</td> <td>0</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="Test_Login.login(java.lang.String, java.lang.String)[pri:0, instance:com.essa.testSuite.Test_Login@83b407]">login</td>
5   - <td>main@18955154</td> <td></td> </tr>
6   -<tr bgcolor="8f92ff"> <td>18/04/10 18:27:06</td> <td>9694</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="Test_Login.login(java.lang.String, java.lang.String)[pri:0, instance:com.essa.testSuite.Test_Login@83b407]">login</td>
7   - <td>main@18955154</td> <td></td> </tr>
8   -<tr bgcolor="8f92ff"> <td>18/04/10 18:26:41</td> <td>-14751</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;Test_Login.setUp()[pri:0, instance:com.essa.testSuite.Test_Login@83b407]">&gt;&gt;setUp</td>
9   -<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@18955154</td> <td></td> </tr>
10   -<tr bgcolor="8f92ff"> <td>18/04/10 18:27:15</td> <td>18811</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;Test_Login.tearDown()[pri:0, instance:com.essa.testSuite.Test_Login@83b407]">&lt;&lt;tearDown</td>
11   -<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@18955154</td> <td></td> </tr>
  4 +<tr bgcolor="9fedbd"> <td>18/08/17 12:49:10</td> <td>0</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="TestAddOriginalGoods.auditOriginal()[pri:0, instance:com.essa.testSuite.TestAddOriginalGoods@4a668b6e]">auditOriginal</td>
  5 + <td>main@38262958</td> <td></td> </tr>
  6 +<tr bgcolor="9fedbd"> <td>18/08/17 12:48:18</td> <td>-51906</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;TestAddOriginalGoods.setUp()[pri:0, instance:com.essa.testSuite.TestAddOriginalGoods@4a668b6e]">&gt;&gt;setUp</td>
  7 +<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@38262958</td> <td></td> </tr>
  8 +<tr bgcolor="9fedbd"> <td>18/08/17 12:49:26</td> <td>16056</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;TestAddOriginalGoods.tearDown()[pri:0, instance:com.essa.testSuite.TestAddOriginalGoods@4a668b6e]">&lt;&lt;tearDown</td>
  9 +<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@38262958</td> <td></td> </tr>
  10 +<tr bgcolor="9fedbd"> <td>18/08/17 12:48:27</td> <td>-42801</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="TestAddOriginalGoods.toAddOriginalGoodsPage()[pri:0, instance:com.essa.testSuite.TestAddOriginalGoods@4a668b6e]">toAddOriginalGoodsPage</td>
  11 + <td>main@38262958</td> <td></td> </tr>
  12 +<tr bgcolor="9fedbd"> <td>18/08/17 12:48:58</td> <td>-12574</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="TestAddOriginalGoods.updatePic()[pri:0, instance:com.essa.testSuite.TestAddOriginalGoods@4a668b6e]">updatePic</td>
  13 + <td>main@38262958</td> <td></td> </tr>
12 14 </table>
... ...
test-output/old/bpms自动化测试/methods.html
1 1 <h2>Methods run, sorted chronologically</h2><h3>&gt;&gt; means before, &lt;&lt; means after</h3><p/><br/><em>bpms×Ô¶¯»¯²âÊÔ</em><p/><small><i>(Hover the method name to see the test class name)</i></small><p/>
2 2 <table border="1">
3 3 <tr><th>Time</th><th>Delta (ms)</th><th>Suite<br>configuration</th><th>Test<br>configuration</th><th>Class<br>configuration</th><th>Groups<br>configuration</th><th>Method<br>configuration</th><th>Test<br>method</th><th>Thread</th><th>Instances</th></tr>
4   -<tr bgcolor="8f92ff"> <td>18/04/10 18:26:41</td> <td>0</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;Test_Login.setUp()[pri:0, instance:com.essa.testSuite.Test_Login@83b407]">&gt;&gt;setUp</td>
5   -<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@18955154</td> <td></td> </tr>
6   -<tr bgcolor="8f92ff"> <td>18/04/10 18:26:56</td> <td>14751</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="Test_Login.login(java.lang.String, java.lang.String)[pri:0, instance:com.essa.testSuite.Test_Login@83b407]">login</td>
7   - <td>main@18955154</td> <td></td> </tr>
8   -<tr bgcolor="8f92ff"> <td>18/04/10 18:27:06</td> <td>24445</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="Test_Login.login(java.lang.String, java.lang.String)[pri:0, instance:com.essa.testSuite.Test_Login@83b407]">login</td>
9   - <td>main@18955154</td> <td></td> </tr>
10   -<tr bgcolor="8f92ff"> <td>18/04/10 18:27:15</td> <td>33562</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;Test_Login.tearDown()[pri:0, instance:com.essa.testSuite.Test_Login@83b407]">&lt;&lt;tearDown</td>
11   -<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@18955154</td> <td></td> </tr>
  4 +<tr bgcolor="9fedbd"> <td>18/08/17 12:48:18</td> <td>0</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&gt;&gt;TestAddOriginalGoods.setUp()[pri:0, instance:com.essa.testSuite.TestAddOriginalGoods@4a668b6e]">&gt;&gt;setUp</td>
  5 +<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@38262958</td> <td></td> </tr>
  6 +<tr bgcolor="9fedbd"> <td>18/08/17 12:48:27</td> <td>9105</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="TestAddOriginalGoods.toAddOriginalGoodsPage()[pri:0, instance:com.essa.testSuite.TestAddOriginalGoods@4a668b6e]">toAddOriginalGoodsPage</td>
  7 + <td>main@38262958</td> <td></td> </tr>
  8 +<tr bgcolor="9fedbd"> <td>18/08/17 12:48:58</td> <td>39332</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="TestAddOriginalGoods.updatePic()[pri:0, instance:com.essa.testSuite.TestAddOriginalGoods@4a668b6e]">updatePic</td>
  9 + <td>main@38262958</td> <td></td> </tr>
  10 +<tr bgcolor="9fedbd"> <td>18/08/17 12:49:10</td> <td>51906</td> <td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td title="TestAddOriginalGoods.auditOriginal()[pri:0, instance:com.essa.testSuite.TestAddOriginalGoods@4a668b6e]">auditOriginal</td>
  11 + <td>main@38262958</td> <td></td> </tr>
  12 +<tr bgcolor="9fedbd"> <td>18/08/17 12:49:26</td> <td>67962</td> <td>&nbsp;</td><td>&nbsp;</td><td title="&lt;&lt;TestAddOriginalGoods.tearDown()[pri:0, instance:com.essa.testSuite.TestAddOriginalGoods@4a668b6e]">&lt;&lt;tearDown</td>
  13 +<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td> <td>main@38262958</td> <td></td> </tr>
12 14 </table>
... ...
test-output/old/bpms自动化测试/testng.xml.html
1   -<html><head><title>testng.xml for bpms自动化测试</title></head><body><tt>&lt;?xml&nbsp;version="1.0"&nbsp;encoding="UTF-8"?&gt; <br/>&lt;!DOCTYPE&nbsp;suite&nbsp;SYSTEM&nbsp;"http://testng.org/testng-1.0.dtd"&gt; <br/>&lt;suite&nbsp;guice-stage="DEVELOPMENT"&nbsp;name="bpms自动化测试"&gt; <br/>&nbsp;&nbsp;&lt;listeners&gt; <br/>&nbsp;&nbsp;&nbsp;&nbsp;&lt;listener&nbsp;class-name="com.essa.framework.ListenerSuite"/&gt; <br/>&nbsp;&nbsp;&lt;/listeners&gt; <br/>&nbsp;&nbsp;&lt;test&nbsp;thread-count="5"&nbsp;name="login"&gt; <br/>&nbsp;&nbsp;&nbsp;&nbsp;&lt;classes&gt; <br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;class&nbsp;name="com.essa.testSuite.Test_Login"/&gt; <br/>&nbsp;&nbsp;&nbsp;&nbsp;&lt;/classes&gt; <br/>&nbsp;&nbsp;&lt;/test&gt;&nbsp;&lt;!--&nbsp;login&nbsp;--&gt; <br/>&lt;/suite&gt;&nbsp;&lt;!--&nbsp;bpms自动化测试&nbsp;--&gt; <br/></tt></body></html>
2 1 \ No newline at end of file
  2 +<html><head><title>testng.xml for bpms自动化测试</title></head><body><tt>&lt;?xml&nbsp;version="1.0"&nbsp;encoding="UTF-8"?&gt; <br/>&lt;!DOCTYPE&nbsp;suite&nbsp;SYSTEM&nbsp;"http://testng.org/testng-1.0.dtd"&gt; <br/>&lt;suite&nbsp;name="bpms自动化测试"&nbsp;guice-stage="DEVELOPMENT"&gt; <br/>&nbsp;&nbsp;&lt;test&nbsp;thread-count="5"&nbsp;name="addOriginalGoods"&gt; <br/>&nbsp;&nbsp;&nbsp;&nbsp;&lt;classes&gt; <br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;class&nbsp;name="com.essa.testSuite.TestAddOriginalGoods"&gt; <br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;methods&gt; <br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;include&nbsp;name="toAddOriginalGoodsPage"/&gt; <br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;include&nbsp;name="toGoodsRelesePage"/&gt; <br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;include&nbsp;name="updatePic"/&gt; <br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;include&nbsp;name="auditOriginal"/&gt; <br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/methods&gt; <br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;/class&gt;&nbsp;&lt;!--&nbsp;com.essa.testSuite.TestAddOriginalGoods&nbsp;--&gt; <br/>&nbsp;&nbsp;&nbsp;&nbsp;&lt;/classes&gt; <br/>&nbsp;&nbsp;&lt;/test&gt;&nbsp;&lt;!--&nbsp;addOriginalGoods&nbsp;--&gt; <br/>&lt;/suite&gt;&nbsp;&lt;!--&nbsp;bpms自动化测试&nbsp;--&gt; <br/></tt></body></html>
3 3 \ No newline at end of file
... ...
test-output/old/bpms自动化测试/toc.html
... ... @@ -10,7 +10,7 @@
10 10 <tr valign='top'>
11 11 <td>1 test</td>
12 12 <td><a target='mainFrame' href='classes.html'>1 class</a></td>
13   -<td>1 method:<br/>
  13 +<td>3 methods:<br/>
14 14 &nbsp;&nbsp;<a target='mainFrame' href='methods.html'>chronological</a><br/>
15 15 &nbsp;&nbsp;<a target='mainFrame' href='methods-alphabetical.html'>alphabetical</a><br/>
16 16 &nbsp;&nbsp;<a target='mainFrame' href='methods-not-run.html'>not run (0)</a></td>
... ... @@ -22,8 +22,8 @@
22 22 </tr></table>
23 23 <table width='100%' class='test-passed'>
24 24 <tr><td>
25   -<table style='width: 100%'><tr><td valign='top'>login (2/0/0)</td><td valign='top' align='right'>
26   - <a href='login.html' target='mainFrame'>Results</a>
  25 +<table style='width: 100%'><tr><td valign='top'>addOriginalGoods (3/0/0)</td><td valign='top' align='right'>
  26 + <a href='addOriginalGoods.html' target='mainFrame'>Results</a>
27 27 </td></tr></table>
28 28 </td></tr><p/>
29 29 </table>
... ...
test-output/old/index.html
... ... @@ -4,6 +4,6 @@
4 4 </head><body>
5 5 <h2><p align='center'>Test results</p></h2>
6 6 <table border='1' width='100%' class='main-page'><tr><th>Suite</th><th>Passed</th><th>Failed</th><th>Skipped</th><th>testng.xml</th></tr>
7   -<tr align='center' class='invocation-passed'><td><em>Total</em></td><td><em>2</em></td><td><em>0</em></td><td><em>0</em></td><td>&nbsp;</td></tr>
8   -<tr align='center' class='invocation-passed'><td><a href='bpms自动化测试/index.html'>bpms自动化测试</a></td>
9   -<td>2</td><td>0</td><td>0</td><td><a href='bpms自动化测试/testng.xml.html'>Link</a></td></tr></table></body></html>
  7 +<tr align='center' class='invocation-passed'><td><em>Total</em></td><td><em>3</em></td><td><em>0</em></td><td><em>0</em></td><td>&nbsp;</td></tr>
  8 +<tr align='center' class='invocation-passed'><td><a href='鏂板甯傚満鍟嗗搧/index.html'>鏂板甯傚満鍟嗗搧</a></td>
  9 +<td>3</td><td>0</td><td>0</td><td><a href='鏂板甯傚満鍟嗗搧/testng.xml.html'>Link</a></td></tr></table></body></html>
... ...
test-output/testng-reports.css
1   -body {
2   - margin: 0px 0px 5px 5px;
3   -}
4   -
5   -ul {
6   - margin: 0px;
7   -}
8   -
9   -li {
10   - list-style-type: none;
11   -}
12   -
13   -a {
14   - text-decoration: none;
15   -}
16   -
17   -a:hover {
18   - text-decoration: underline;
19   -}
20   -
21   -.navigator-selected {
22   - background: #ffa500;
23   -}
24   -
25   -.wrapper {
26   - position: absolute;
27   - top: 60px;
28   - bottom: 0;
29   - left: 400px;
30   - right: 0;
31   - overflow: auto;
32   -}
33   -
34   -.navigator-root {
35   - position: absolute;
36   - top: 60px;
37   - bottom: 0;
38   - left: 0;
39   - width: 400px;
40   - overflow-y: auto;
41   -}
42   -
43   -.suite {
44   - margin: 0px 10px 10px 0px;
45   - background-color: #fff8dc;
46   -}
47   -
48   -.suite-name {
49   - padding-left: 10px;
50   - font-size: 25px;
51   - font-family: Times;
52   -}
53   -
54   -.main-panel-header {
55   - padding: 5px;
56   - background-color: #9FB4D9; //afeeee;
57   - font-family: monospace;
58   - font-size: 18px;
59   -}
60   -
61   -.main-panel-content {
62   - padding: 5px;
63   - margin-bottom: 10px;
64   - background-color: #DEE8FC; //d0ffff;
65   -}
66   -
67   -.rounded-window {
68   - border-radius: 10px;
69   - border-style: solid;
70   - border-width: 1px;
71   -}
72   -
73   -.rounded-window-top {
74   - border-top-right-radius: 10px 10px;
75   - border-top-left-radius: 10px 10px;
76   - border-style: solid;
77   - border-width: 1px;
78   - overflow: auto;
79   -}
80   -
81   -.light-rounded-window-top {
82   - border-top-right-radius: 10px 10px;
83   - border-top-left-radius: 10px 10px;
84   -}
85   -
86   -.rounded-window-bottom {
87   - border-style: solid;
88   - border-width: 0px 1px 1px 1px;
89   - border-bottom-right-radius: 10px 10px;
90   - border-bottom-left-radius: 10px 10px;
91   - overflow: auto;
92   -}
93   -
94   -.method-name {
95   - font-size: 12px;
96   - font-family: monospace;
97   -}
98   -
99   -.method-content {
100   - border-style: solid;
101   - border-width: 0px 0px 1px 0px;
102   - margin-bottom: 10;
103   - padding-bottom: 5px;
104   - width: 80%;
105   -}
106   -
107   -.parameters {
108   - font-size: 14px;
109   - font-family: monospace;
110   -}
111   -
112   -.stack-trace {
113   - white-space: pre;
114   - font-family: monospace;
115   - font-size: 12px;
116   - font-weight: bold;
117   - margin-top: 0px;
118   - margin-left: 20px;
119   -}
120   -
121   -.testng-xml {
122   - font-family: monospace;
123   -}
124   -
125   -.method-list-content {
126   - margin-left: 10px;
127   -}
128   -
129   -.navigator-suite-content {
130   - margin-left: 10px;
131   - font: 12px 'Lucida Grande';
132   -}
133   -
134   -.suite-section-title {
135   - margin-top: 10px;
136   - width: 80%;
137   - border-style: solid;
138   - border-width: 1px 0px 0px 0px;
139   - font-family: Times;
140   - font-size: 18px;
141   - font-weight: bold;
142   -}
143   -
144   -.suite-section-content {
145   - list-style-image: url(bullet_point.png);
146   -}
147   -
148   -.top-banner-root {
149   - position: absolute;
150   - top: 0;
151   - height: 45px;
152   - left: 0;
153   - right: 0;
154   - padding: 5px;
155   - margin: 0px 0px 5px 0px;
156   - background-color: #0066ff;
157   - font-family: Times;
158   - color: #fff;
159   - text-align: center;
160   -}
161   -
162   -.top-banner-title-font {
163   - font-size: 25px;
164   -}
165   -
166   -.test-name {
167   - font-family: 'Lucida Grande';
168   - font-size: 16px;
169   -}
170   -
171   -.suite-icon {
172   - padding: 5px;
173   - float: right;
174   - height: 20;
175   -}
176   -
177   -.test-group {
178   - font: 20px 'Lucida Grande';
179   - margin: 5px 5px 10px 5px;
180   - border-width: 0px 0px 1px 0px;
181   - border-style: solid;
182   - padding: 5px;
183   -}
184   -
185   -.test-group-name {
186   - font-weight: bold;
187   -}
188   -
189   -.method-in-group {
190   - font-size: 16px;
191   - margin-left: 80px;
192   -}
193   -
194   -table.google-visualization-table-table {
195   - width: 100%;
196   -}
197   -
198   -.reporter-method-name {
199   - font-size: 14px;
200   - font-family: monospace;
201   -}
202   -
203   -.reporter-method-output-div {
204   - padding: 5px;
205   - margin: 0px 0px 5px 20px;
206   - font-size: 12px;
207   - font-family: monospace;
208   - border-width: 0px 0px 0px 1px;
209   - border-style: solid;
210   -}
211   -
212   -.ignored-class-div {
213   - font-size: 14px;
214   - font-family: monospace;
215   -}
216   -
217   -.ignored-methods-div {
218   - padding: 5px;
219   - margin: 0px 0px 5px 20px;
220   - font-size: 12px;
221   - font-family: monospace;
222   - border-width: 0px 0px 0px 1px;
223   - border-style: solid;
224   -}
225   -
226   -.border-failed {
227   - border-top-left-radius: 10px 10px;
228   - border-bottom-left-radius: 10px 10px;
229   - border-style: solid;
230   - border-width: 0px 0px 0px 10px;
231   - border-color: #f00;
232   -}
233   -
234   -.border-skipped {
235   - border-top-left-radius: 10px 10px;
236   - border-bottom-left-radius: 10px 10px;
237   - border-style: solid;
238   - border-width: 0px 0px 0px 10px;
239   - border-color: #edc600;
240   -}
241   -
242   -.border-passed {
243   - border-top-left-radius: 10px 10px;
244   - border-bottom-left-radius: 10px 10px;
245   - border-style: solid;
246   - border-width: 0px 0px 0px 10px;
247   - border-color: #19f52d;
248   -}
249   -
250   -.times-div {
251   - text-align: center;
252   - padding: 5px;
253   -}
254   -
255   -.suite-total-time {
256   - font: 16px 'Lucida Grande';
257   -}
258   -
259   -.configuration-suite {
260   - margin-left: 20px;
261   -}
262   -
263   -.configuration-test {
264   - margin-left: 40px;
265   -}
266   -
267   -.configuration-class {
268   - margin-left: 60px;
269   -}
270   -
271   -.configuration-method {
272   - margin-left: 80px;
273   -}
274   -
275   -.test-method {
276   - margin-left: 100px;
277   -}
278   -
279   -.chronological-class {
280   - background-color: #0ccff;
281   - border-style: solid;
282   - border-width: 0px 0px 1px 1px;
283   -}
284   -
285   -.method-start {
286   - float: right;
287   -}
288   -
289   -.chronological-class-name {
290   - padding: 0px 0px 0px 5px;
291   - color: #008;
292   -}
293   -
294   -.after, .before, .test-method {
295   - font-family: monospace;
296   - font-size: 14px;
297   -}
298   -
299   -.navigator-suite-header {
300   - font-size: 22px;
301   - margin: 0px 10px 5px 0px;
302   - background-color: #deb887;
303   - text-align: center;
304   -}
305   -
306   -.collapse-all-icon {
307   - padding: 5px;
308   - float: right;
309   -}
  1 +body {
  2 + margin: 0px 0px 5px 5px;
  3 +}
  4 +
  5 +ul {
  6 + margin: 0px;
  7 +}
  8 +
  9 +li {
  10 + list-style-type: none;
  11 +}
  12 +
  13 +a {
  14 + text-decoration: none;
  15 +}
  16 +
  17 +a:hover {
  18 + text-decoration: underline;
  19 +}
  20 +
  21 +.navigator-selected {
  22 + background: #ffa500;
  23 +}
  24 +
  25 +.wrapper {
  26 + position: absolute;
  27 + top: 60px;
  28 + bottom: 0;
  29 + left: 400px;
  30 + right: 0;
  31 + overflow: auto;
  32 +}
  33 +
  34 +.navigator-root {
  35 + position: absolute;
  36 + top: 60px;
  37 + bottom: 0;
  38 + left: 0;
  39 + width: 400px;
  40 + overflow-y: auto;
  41 +}
  42 +
  43 +.suite {
  44 + margin: 0px 10px 10px 0px;
  45 + background-color: #fff8dc;
  46 +}
  47 +
  48 +.suite-name {
  49 + padding-left: 10px;
  50 + font-size: 25px;
  51 + font-family: Times;
  52 +}
  53 +
  54 +.main-panel-header {
  55 + padding: 5px;
  56 + background-color: #9FB4D9; //afeeee;
  57 + font-family: monospace;
  58 + font-size: 18px;
  59 +}
  60 +
  61 +.main-panel-content {
  62 + padding: 5px;
  63 + margin-bottom: 10px;
  64 + background-color: #DEE8FC; //d0ffff;
  65 +}
  66 +
  67 +.rounded-window {
  68 + border-radius: 10px;
  69 + border-style: solid;
  70 + border-width: 1px;
  71 +}
  72 +
  73 +.rounded-window-top {
  74 + border-top-right-radius: 10px 10px;
  75 + border-top-left-radius: 10px 10px;
  76 + border-style: solid;
  77 + border-width: 1px;
  78 + overflow: auto;
  79 +}
  80 +
  81 +.light-rounded-window-top {
  82 + border-top-right-radius: 10px 10px;
  83 + border-top-left-radius: 10px 10px;
  84 +}
  85 +
  86 +.rounded-window-bottom {
  87 + border-style: solid;
  88 + border-width: 0px 1px 1px 1px;
  89 + border-bottom-right-radius: 10px 10px;
  90 + border-bottom-left-radius: 10px 10px;
  91 + overflow: auto;
  92 +}
  93 +
  94 +.method-name {
  95 + font-size: 12px;
  96 + font-family: monospace;
  97 +}
  98 +
  99 +.method-content {
  100 + border-style: solid;
  101 + border-width: 0px 0px 1px 0px;
  102 + margin-bottom: 10;
  103 + padding-bottom: 5px;
  104 + width: 80%;
  105 +}
  106 +
  107 +.parameters {
  108 + font-size: 14px;
  109 + font-family: monospace;
  110 +}
  111 +
  112 +.stack-trace {
  113 + white-space: pre;
  114 + font-family: monospace;
  115 + font-size: 12px;
  116 + font-weight: bold;
  117 + margin-top: 0px;
  118 + margin-left: 20px;
  119 +}
  120 +
  121 +.testng-xml {
  122 + font-family: monospace;
  123 +}
  124 +
  125 +.method-list-content {
  126 + margin-left: 10px;
  127 +}
  128 +
  129 +.navigator-suite-content {
  130 + margin-left: 10px;
  131 + font: 12px 'Lucida Grande';
  132 +}
  133 +
  134 +.suite-section-title {
  135 + margin-top: 10px;
  136 + width: 80%;
  137 + border-style: solid;
  138 + border-width: 1px 0px 0px 0px;
  139 + font-family: Times;
  140 + font-size: 18px;
  141 + font-weight: bold;
  142 +}
  143 +
  144 +.suite-section-content {
  145 + list-style-image: url(bullet_point.png);
  146 +}
  147 +
  148 +.top-banner-root {
  149 + position: absolute;
  150 + top: 0;
  151 + height: 45px;
  152 + left: 0;
  153 + right: 0;
  154 + padding: 5px;
  155 + margin: 0px 0px 5px 0px;
  156 + background-color: #0066ff;
  157 + font-family: Times;
  158 + color: #fff;
  159 + text-align: center;
  160 +}
  161 +
  162 +.top-banner-title-font {
  163 + font-size: 25px;
  164 +}
  165 +
  166 +.test-name {
  167 + font-family: 'Lucida Grande';
  168 + font-size: 16px;
  169 +}
  170 +
  171 +.suite-icon {
  172 + padding: 5px;
  173 + float: right;
  174 + height: 20;
  175 +}
  176 +
  177 +.test-group {
  178 + font: 20px 'Lucida Grande';
  179 + margin: 5px 5px 10px 5px;
  180 + border-width: 0px 0px 1px 0px;
  181 + border-style: solid;
  182 + padding: 5px;
  183 +}
  184 +
  185 +.test-group-name {
  186 + font-weight: bold;
  187 +}
  188 +
  189 +.method-in-group {
  190 + font-size: 16px;
  191 + margin-left: 80px;
  192 +}
  193 +
  194 +table.google-visualization-table-table {
  195 + width: 100%;
  196 +}
  197 +
  198 +.reporter-method-name {
  199 + font-size: 14px;
  200 + font-family: monospace;
  201 +}
  202 +
  203 +.reporter-method-output-div {
  204 + padding: 5px;
  205 + margin: 0px 0px 5px 20px;
  206 + font-size: 12px;
  207 + font-family: monospace;
  208 + border-width: 0px 0px 0px 1px;
  209 + border-style: solid;
  210 +}
  211 +
  212 +.ignored-class-div {
  213 + font-size: 14px;
  214 + font-family: monospace;
  215 +}
  216 +
  217 +.ignored-methods-div {
  218 + padding: 5px;
  219 + margin: 0px 0px 5px 20px;
  220 + font-size: 12px;
  221 + font-family: monospace;
  222 + border-width: 0px 0px 0px 1px;
  223 + border-style: solid;
  224 +}
  225 +
  226 +.border-failed {
  227 + border-top-left-radius: 10px 10px;
  228 + border-bottom-left-radius: 10px 10px;
  229 + border-style: solid;
  230 + border-width: 0px 0px 0px 10px;
  231 + border-color: #f00;
  232 +}
  233 +
  234 +.border-skipped {
  235 + border-top-left-radius: 10px 10px;
  236 + border-bottom-left-radius: 10px 10px;
  237 + border-style: solid;
  238 + border-width: 0px 0px 0px 10px;
  239 + border-color: #edc600;
  240 +}
  241 +
  242 +.border-passed {
  243 + border-top-left-radius: 10px 10px;
  244 + border-bottom-left-radius: 10px 10px;
  245 + border-style: solid;
  246 + border-width: 0px 0px 0px 10px;
  247 + border-color: #19f52d;
  248 +}
  249 +
  250 +.times-div {
  251 + text-align: center;
  252 + padding: 5px;
  253 +}
  254 +
  255 +.suite-total-time {
  256 + font: 16px 'Lucida Grande';
  257 +}
  258 +
  259 +.configuration-suite {
  260 + margin-left: 20px;
  261 +}
  262 +
  263 +.configuration-test {
  264 + margin-left: 40px;
  265 +}
  266 +
  267 +.configuration-class {
  268 + margin-left: 60px;
  269 +}
  270 +
  271 +.configuration-method {
  272 + margin-left: 80px;
  273 +}
  274 +
  275 +.test-method {
  276 + margin-left: 100px;
  277 +}
  278 +
  279 +.chronological-class {
  280 + background-color: #0ccff;
  281 + border-style: solid;
  282 + border-width: 0px 0px 1px 1px;
  283 +}
  284 +
  285 +.method-start {
  286 + float: right;
  287 +}
  288 +
  289 +.chronological-class-name {
  290 + padding: 0px 0px 0px 5px;
  291 + color: #008;
  292 +}
  293 +
  294 +.after, .before, .test-method {
  295 + font-family: monospace;
  296 + font-size: 14px;
  297 +}
  298 +
  299 +.navigator-suite-header {
  300 + font-size: 22px;
  301 + margin: 0px 10px 5px 0px;
  302 + background-color: #deb887;
  303 + text-align: center;
  304 +}
  305 +
  306 +.collapse-all-icon {
  307 + padding: 5px;
  308 + float: right;
  309 +}
... ...
test-output/testng-reports.js
1   -$(document).ready(function() {
2   - $('a.navigator-link').click(function() {
3   - // Extract the panel for this link
4   - var panel = getPanelName($(this));
5   -
6   - // Mark this link as currently selected
7   - $('.navigator-link').parent().removeClass('navigator-selected');
8   - $(this).parent().addClass('navigator-selected');
9   -
10   - showPanel(panel);
11   - });
12   -
13   - installMethodHandlers('failed');
14   - installMethodHandlers('skipped');
15   - installMethodHandlers('passed', true); // hide passed methods by default
16   -
17   - $('a.method').click(function() {
18   - showMethod($(this));
19   - return false;
20   - });
21   -
22   - // Hide all the panels and display the first one (do this last
23   - // to make sure the click() will invoke the listeners)
24   - $('.panel').hide();
25   - $('.navigator-link').first().click();
26   -
27   - // Collapse/expand the suites
28   - $('a.collapse-all-link').click(function() {
29   - var contents = $('.navigator-suite-content');
30   - if (contents.css('display') == 'none') {
31   - contents.show();
32   - } else {
33   - contents.hide();
34   - }
35   - });
36   -});
37   -
38   -// The handlers that take care of showing/hiding the methods
39   -function installMethodHandlers(name, hide) {
40   - function getContent(t) {
41   - return $('.method-list-content.' + name + "." + t.attr('panel-name'));
42   - }
43   -
44   - function getHideLink(t, name) {
45   - var s = 'a.hide-methods.' + name + "." + t.attr('panel-name');
46   - return $(s);
47   - }
48   -
49   - function getShowLink(t, name) {
50   - return $('a.show-methods.' + name + "." + t.attr('panel-name'));
51   - }
52   -
53   - function getMethodPanelClassSel(element, name) {
54   - var panelName = getPanelName(element);
55   - var sel = '.' + panelName + "-class-" + name;
56   - return $(sel);
57   - }
58   -
59   - $('a.hide-methods.' + name).click(function() {
60   - var w = getContent($(this));
61   - w.hide();
62   - getHideLink($(this), name).hide();
63   - getShowLink($(this), name).show();
64   - getMethodPanelClassSel($(this), name).hide();
65   - });
66   -
67   - $('a.show-methods.' + name).click(function() {
68   - var w = getContent($(this));
69   - w.show();
70   - getHideLink($(this), name).show();
71   - getShowLink($(this), name).hide();
72   - showPanel(getPanelName($(this)));
73   - getMethodPanelClassSel($(this), name).show();
74   - });
75   -
76   - if (hide) {
77   - $('a.hide-methods.' + name).click();
78   - } else {
79   - $('a.show-methods.' + name).click();
80   - }
81   -}
82   -
83   -function getHashForMethod(element) {
84   - return element.attr('hash-for-method');
85   -}
86   -
87   -function getPanelName(element) {
88   - return element.attr('panel-name');
89   -}
90   -
91   -function showPanel(panelName) {
92   - $('.panel').hide();
93   - var panel = $('.panel[panel-name="' + panelName + '"]');
94   - panel.show();
95   -}
96   -
97   -function showMethod(element) {
98   - var hashTag = getHashForMethod(element);
99   - var panelName = getPanelName(element);
100   - showPanel(panelName);
101   - var current = document.location.href;
102   - var base = current.substring(0, current.indexOf('#'))
103   - document.location.href = base + '#' + hashTag;
104   - var newPosition = $(document).scrollTop() - 65;
105   - $(document).scrollTop(newPosition);
106   -}
107   -
108   -function drawTable() {
109   - for (var i = 0; i < suiteTableInitFunctions.length; i++) {
110   - window[suiteTableInitFunctions[i]]();
111   - }
112   -
113   - for (var k in window.suiteTableData) {
114   - var v = window.suiteTableData[k];
115   - var div = v.tableDiv;
116   - var data = v.tableData
117   - var table = new google.visualization.Table(document.getElementById(div));
118   - table.draw(data, {
119   - showRowNumber : false
120   - });
121   - }
122   -}
  1 +$(document).ready(function() {
  2 + $('a.navigator-link').click(function() {
  3 + // Extract the panel for this link
  4 + var panel = getPanelName($(this));
  5 +
  6 + // Mark this link as currently selected
  7 + $('.navigator-link').parent().removeClass('navigator-selected');
  8 + $(this).parent().addClass('navigator-selected');
  9 +
  10 + showPanel(panel);
  11 + });
  12 +
  13 + installMethodHandlers('failed');
  14 + installMethodHandlers('skipped');
  15 + installMethodHandlers('passed', true); // hide passed methods by default
  16 +
  17 + $('a.method').click(function() {
  18 + showMethod($(this));
  19 + return false;
  20 + });
  21 +
  22 + // Hide all the panels and display the first one (do this last
  23 + // to make sure the click() will invoke the listeners)
  24 + $('.panel').hide();
  25 + $('.navigator-link').first().click();
  26 +
  27 + // Collapse/expand the suites
  28 + $('a.collapse-all-link').click(function() {
  29 + var contents = $('.navigator-suite-content');
  30 + if (contents.css('display') == 'none') {
  31 + contents.show();
  32 + } else {
  33 + contents.hide();
  34 + }
  35 + });
  36 +});
  37 +
  38 +// The handlers that take care of showing/hiding the methods
  39 +function installMethodHandlers(name, hide) {
  40 + function getContent(t) {
  41 + return $('.method-list-content.' + name + "." + t.attr('panel-name'));
  42 + }
  43 +
  44 + function getHideLink(t, name) {
  45 + var s = 'a.hide-methods.' + name + "." + t.attr('panel-name');
  46 + return $(s);
  47 + }
  48 +
  49 + function getShowLink(t, name) {
  50 + return $('a.show-methods.' + name + "." + t.attr('panel-name'));
  51 + }
  52 +
  53 + function getMethodPanelClassSel(element, name) {
  54 + var panelName = getPanelName(element);
  55 + var sel = '.' + panelName + "-class-" + name;
  56 + return $(sel);
  57 + }
  58 +
  59 + $('a.hide-methods.' + name).click(function() {
  60 + var w = getContent($(this));
  61 + w.hide();
  62 + getHideLink($(this), name).hide();
  63 + getShowLink($(this), name).show();
  64 + getMethodPanelClassSel($(this), name).hide();
  65 + });
  66 +
  67 + $('a.show-methods.' + name).click(function() {
  68 + var w = getContent($(this));
  69 + w.show();
  70 + getHideLink($(this), name).show();
  71 + getShowLink($(this), name).hide();
  72 + showPanel(getPanelName($(this)));
  73 + getMethodPanelClassSel($(this), name).show();
  74 + });
  75 +
  76 + if (hide) {
  77 + $('a.hide-methods.' + name).click();
  78 + } else {
  79 + $('a.show-methods.' + name).click();
  80 + }
  81 +}
  82 +
  83 +function getHashForMethod(element) {
  84 + return element.attr('hash-for-method');
  85 +}
  86 +
  87 +function getPanelName(element) {
  88 + return element.attr('panel-name');
  89 +}
  90 +
  91 +function showPanel(panelName) {
  92 + $('.panel').hide();
  93 + var panel = $('.panel[panel-name="' + panelName + '"]');
  94 + panel.show();
  95 +}
  96 +
  97 +function showMethod(element) {
  98 + var hashTag = getHashForMethod(element);
  99 + var panelName = getPanelName(element);
  100 + showPanel(panelName);
  101 + var current = document.location.href;
  102 + var base = current.substring(0, current.indexOf('#'))
  103 + document.location.href = base + '#' + hashTag;
  104 + var newPosition = $(document).scrollTop() - 65;
  105 + $(document).scrollTop(newPosition);
  106 +}
  107 +
  108 +function drawTable() {
  109 + for (var i = 0; i < suiteTableInitFunctions.length; i++) {
  110 + window[suiteTableInitFunctions[i]]();
  111 + }
  112 +
  113 + for (var k in window.suiteTableData) {
  114 + var v = window.suiteTableData[k];
  115 + var div = v.tableDiv;
  116 + var data = v.tableData
  117 + var table = new google.visualization.Table(document.getElementById(div));
  118 + table.draw(data, {
  119 + showRowNumber : false
  120 + });
  121 + }
  122 +}
... ...
test-output/testng-results.xml
1   -<?xml version="1.0" encoding="UTF-8"?>
2   -<testng-results skipped="0" failed="0" ignored="0" total="2" passed="2">
3   - <reporter-output>
4   - </reporter-output>
5   - <suite name="bpms自动化测试" duration-ms="35821" started-at="2018-04-10T10:26:41Z" finished-at="2018-04-10T10:27:17Z">
6   - <groups>
7   - </groups>
8   - <test name="login" duration-ms="35821" started-at="2018-04-10T10:26:41Z" finished-at="2018-04-10T10:27:17Z">
9   - <class name="com.essa.testSuite.Test_Login">
10   - <test-method status="PASS" signature="setUp()[pri:0, instance:com.essa.testSuite.Test_Login@83b407]" name="setUp" is-config="true" duration-ms="12567" started-at="2018-04-10T10:26:41Z" finished-at="2018-04-10T10:26:54Z">
11   - <reporter-output>
12   - </reporter-output>
13   - </test-method> <!-- setUp -->
14   - <test-method status="PASS" signature="login(java.lang.String, java.lang.String)[pri:0, instance:com.essa.testSuite.Test_Login@83b407]" name="login" duration-ms="9690" started-at="2018-04-10T10:26:56Z" data-provider="users" finished-at="2018-04-10T10:27:06Z">
15   - <params>
16   - <param index="0">
17   - <value>
18   - <![CDATA[admin]]>
19   - </value>
20   - </param>
21   - <param index="1">
22   - <value>
23   - <![CDATA[essa123]]>
24   - </value>
25   - </param>
26   - </params>
27   - <reporter-output>
28   - </reporter-output>
29   - </test-method> <!-- login -->
30   - <test-method status="PASS" signature="login(java.lang.String, java.lang.String)[pri:0, instance:com.essa.testSuite.Test_Login@83b407]" name="login" duration-ms="9110" started-at="2018-04-10T10:27:06Z" data-provider="users" finished-at="2018-04-10T10:27:15Z">
31   - <params>
32   - <param index="0">
33   - <value>
34   - <![CDATA[linrong]]>
35   - </value>
36   - </param>
37   - <param index="1">
38   - <value>
39   - <![CDATA[essa123]]>
40   - </value>
41   - </param>
42   - </params>
43   - <reporter-output>
44   - </reporter-output>
45   - </test-method> <!-- login -->
46   - <test-method status="PASS" signature="tearDown()[pri:0, instance:com.essa.testSuite.Test_Login@83b407]" name="tearDown" is-config="true" duration-ms="2199" started-at="2018-04-10T10:27:15Z" finished-at="2018-04-10T10:27:17Z">
47   - <reporter-output>
48   - </reporter-output>
49   - </test-method> <!-- tearDown -->
50   - </class> <!-- com.essa.testSuite.Test_Login -->
51   - </test> <!-- login -->
52   - </suite> <!-- bpms自动化测试 -->
53   -</testng-results>
  1 +<?xml version="1.0" encoding="UTF-8"?>
  2 +<testng-results ignored="0" total="3" passed="3" failed="0" skipped="0">
  3 + <reporter-output>
  4 + </reporter-output>
  5 + <suite started-at="2018-08-24T02:59:34Z" name="新增市场商品" finished-at="2018-08-24T03:00:45Z" duration-ms="71013">
  6 + <groups>
  7 + </groups>
  8 + <test started-at="2018-08-24T02:59:34Z" name="addMarketGoods" finished-at="2018-08-24T03:00:45Z" duration-ms="71013">
  9 + <class name="com.essa.testSuite.TestAddMarketGoods">
  10 + <test-method is-config="true" signature="setUp()[pri:0, instance:com.essa.testSuite.TestAddMarketGoods@656d9a07]" started-at="2018-08-24T02:59:34Z" name="setUp" finished-at="2018-08-24T02:59:43Z" duration-ms="9388" status="PASS">
  11 + <reporter-output>
  12 + </reporter-output>
  13 + </test-method> <!-- setUp -->
  14 + <test-method signature="toMarketGoodsRelesePage()[pri:0, instance:com.essa.testSuite.TestAddMarketGoods@656d9a07]" started-at="2018-08-24T02:59:43Z" name="toMarketGoodsRelesePage" finished-at="2018-08-24T02:59:50Z" duration-ms="6275" status="PASS">
  15 + <reporter-output>
  16 + </reporter-output>
  17 + </test-method> <!-- toMarketGoodsRelesePage -->
  18 + <test-method signature="addMarketGoods()[pri:0, instance:com.essa.testSuite.TestAddMarketGoods@656d9a07]" started-at="2018-08-24T02:59:50Z" name="addMarketGoods" finished-at="2018-08-24T03:00:28Z" duration-ms="37865" status="PASS">
  19 + <reporter-output>
  20 + </reporter-output>
  21 + </test-method> <!-- addMarketGoods -->
  22 + <test-method signature="auditMarketGoods()[pri:0, instance:com.essa.testSuite.TestAddMarketGoods@656d9a07]" started-at="2018-08-24T03:00:28Z" name="auditMarketGoods" finished-at="2018-08-24T03:00:44Z" duration-ms="16655" status="PASS">
  23 + <reporter-output>
  24 + </reporter-output>
  25 + </test-method> <!-- auditMarketGoods -->
  26 + <test-method is-config="true" signature="tearDown()[pri:0, instance:com.essa.testSuite.TestAddMarketGoods@656d9a07]" started-at="2018-08-24T03:00:44Z" name="tearDown" finished-at="2018-08-24T03:00:45Z" duration-ms="800" status="PASS">
  27 + <reporter-output>
  28 + </reporter-output>
  29 + </test-method> <!-- tearDown -->
  30 + </class> <!-- com.essa.testSuite.TestAddMarketGoods -->
  31 + </test> <!-- addMarketGoods -->
  32 + </suite> <!-- 新增市场商品 -->
  33 +</testng-results>
... ...